X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FLayout%2FActionBar%2FAction.pm;h=4243b652ba7e79c8e5b789396258ca7b5cdb4b4c;hb=4a03aa4d5f2c201e2524bbf54ff59c9896ad416a;hp=454255c8c04eeb92e128e8c07120250b168b1bca;hpb=e0a3b19e35aed6f3f8ba84e25381a5d0e6ca61f4;p=kivitendo-erp.git diff --git a/SL/Layout/ActionBar/Action.pm b/SL/Layout/ActionBar/Action.pm index 454255c8c..4243b652b 100644 --- a/SL/Layout/ActionBar/Action.pm +++ b/SL/Layout/ActionBar/Action.pm @@ -6,7 +6,7 @@ use parent qw(Rose::Object); use SL::Presenter; use Rose::Object::MakeMethods::Generic ( - 'scalar --get_set_init' => [ qw(id) ], + 'scalar --get_set_init' => [ qw(id params text) ], ); # subclassing interface @@ -16,49 +16,36 @@ sub render { } sub script { - die 'needs to be implemented'; + 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) = @_;a - - { - separator => SL::Layout::ActionBar::Separator->new, - } 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; + require SL::Layout::ActionBar::Submit; - if ($params{submit}) { - require SL::Layout::ActionBar::Submit; - return SL::Layout::ActionBar::Submit->new(text => $text, %params); - } - - if ($params{function}) { - require SL::Layout::ActionBar::ScriptButton; - return SL::Layout::ActionBar::ScriptButton->new(text => $text, %params); - } - - if ($params{combobox}) { - - } + 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[]') } @@ -66,3 +53,25 @@ sub init_id { 1; __END__ + +=head 1 + +planned options for clickables: + +- checks => [ ... ] (done) + +a list of functions that need to return true before submitting + +- submit => [ form-selector, { params } ] (done) + +on click submit the form specified by form-selector with the additional params + +- function => function-name (done) + +on click call the specified function (is this a special case of checks?) + +- disabled => true/false/tooltip explaning why disabled (done) + +TODO: + +- runtime disable/enable