X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FLayout%2FActionBar%2FAction.pm;fp=SL%2FLayout%2FActionBar%2FAction.pm;h=aea2e2cf04bd716341f51ff21d405344b757a36c;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/SL/Layout/ActionBar/Action.pm b/SL/Layout/ActionBar/Action.pm new file mode 100644 index 000000000..aea2e2cf0 --- /dev/null +++ b/SL/Layout/ActionBar/Action.pm @@ -0,0 +1,217 @@ +package SL::Layout::ActionBar::Action; + +use strict; +use parent qw(Rose::Object); + +use SL::Presenter::Tag qw(name_to_id); + +use Rose::Object::MakeMethods::Generic ( + 'scalar --get_set_init' => [ qw(id params text) ], +); + +# subclassing interface + +sub render { + die 'needs to be implemented'; +} + +sub script { + sprintf q|$('#%s').data('action', %s);|, $_[0]->id, JSON->new->allow_blessed->convert_blessed->encode($_[0]->params); +} + +# this is mostly so that outside consumer don't need to load subclasses themselves +sub from_params { + my ($class, $data) = @_; + + require SL::Layout::ActionBar::Submit; + + 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 init_params { + +{} +} + +# unique id to tie div and javascript together +sub init_id { + $_[0]->params->{id} // name_to_id('action[]') +} + +1; + +__END__ + +=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