X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FLayout%2FActionBar%2FAction.pm;h=90eb8498ca002d589825735c1057cb0d1db8be81;hb=96ddb9322d73a00236a566e9764094c29ff80297;hp=8b83295c5467bb10a35a878c9a5261b4076889cb;hpb=dd1ab30b7c2a6bec318dd75100e54c9bfa400e77;p=kivitendo-erp.git diff --git a/SL/Layout/ActionBar/Action.pm b/SL/Layout/ActionBar/Action.pm index 8b83295c5..90eb8498c 100644 --- a/SL/Layout/ActionBar/Action.pm +++ b/SL/Layout/ActionBar/Action.pm @@ -19,76 +19,204 @@ sub script { sprintf q|$('#%s').data('action', %s);|, $_[0]->id, JSON->new->allow_blessed->convert_blessed->encode($_[0]->params); } -# static constructors - -sub from_descriptor { - my ($class, $descriptor) = @_; - require SL::Layout::ActionBar::Separator; - require SL::Layout::ActionBar::ComboBox; - - return { - separator => SL::Layout::ActionBar::Separator->new, - combobox => SL::Layout::ActionBar::ComboBox->new, - }->{$descriptor} or die 'unknown descriptor'; -} - -# TODO: this necessary? -sub simple { +# this is mostly so that outside consumer don't need to load subclasses themselves +sub from_params { my ($class, $data) = @_; - my ($text, %params) = @$data; - - if ($params{submit}) { - require SL::Layout::ActionBar::Submit; - return SL::Layout::ActionBar::Submit->new(text => $text, params => \%params); - } + require SL::Layout::ActionBar::Submit; - if ($params{function}) { - require SL::Layout::ActionBar::ScriptButton; - return SL::Layout::ActionBar::ScriptButton->new(text => $text, params => \%params); - } - - if ($params{actions}) { - require SL::Layout::ActionBar::ComboBox; - return SL::Layout::ActionBar::ComboBox->new(text => $text, %params); - } + my ($text, %params) = @$data; + return if exists($params{only_if}) && !$params{only_if}; + return if exists($params{not_if}) && $params{not_if}; + return SL::Layout::ActionBar::Submit->new(text => $text, params => \%params); } +sub callable { 0 } + # shortcut for presenter sub p { SL::Presenter->get } +sub init_params { + +{} +} + # unique id to tie div and javascript together sub init_id { + $_[0]->params->{id} // $_[0]->p->name_to_id('action[]') } - 1; __END__ -=head 1 +=encoding utf-8 + +=head1 NAME + +SL::Layout::ActionBar::Action - base class for action bar actions + +=head1 DESCRIPTION + +This base class for actions can be used to implement elements that can be +added to L. + +Elements can be interactive or simply used for layout. Most of the actual +semantics are handled in the corresponding javascript C, so +this is only used to generate the DOM elements and to provide information for +request time logic decisions. + + +=head1 SYNOPSIS + + # implement: + package SL::Layout::ActionBar::Custom; + use parent qw(SL::Layout::ActionBar::Action); + + # unsugared use + SL::Layout::ActionBar::Custom->new( + text => t8('Description'), + params => { + key => $attr, + key => $attr, + ... + }, + ); + + # parse sugared version: + SL::Layout::ActionBar::Custom->from_params( + t8('Description'), + key => $attr, + key => $attr, + ... + ); + +=head1 INTERFACE + +=over 4 + +=item * C + +Needs to be implemented. Should render only the bare minimum necessary to +identify the element at run time. + +=item * C