X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FPresenter%2FMaterialComponents.pm;h=7b2a737e3cd07d326bd2e95ab2ad954f0ab74ce2;hb=9c5ae7ed2c9a2292fbf95c3f8d2cbdc26e9bdd7f;hp=e3f018110a4c377cd8c5f683f33d9a6dc4cf7637;hpb=76cad4416d845e3fe0e8a07e6288c785e52f134d;p=kivitendo-erp.git diff --git a/SL/Presenter/MaterialComponents.pm b/SL/Presenter/MaterialComponents.pm index e3f018110..7b2a737e3 100644 --- a/SL/Presenter/MaterialComponents.pm +++ b/SL/Presenter/MaterialComponents.pm @@ -3,13 +3,21 @@ package SL::Presenter::MaterialComponents; use strict; use SL::HTML::Restrict; +use SL::MoreCommon qw(listify); use SL::Presenter::EscapedText qw(escape); use SL::Presenter::Tag qw(html_tag); use Scalar::Util qw(blessed); +use List::UtilsBy qw(partition_by); use Exporter qw(import); our @EXPORT_OK = qw( button_tag + input_tag + date_tag + submit_tag + icon + select_tag + checkbox_tag ); our %EXPORT_TAGS = (ALL => \@EXPORT_OK); @@ -26,6 +34,8 @@ use constant LARGE => 'large'; use constant MEDIUM => 'medium'; use constant SMALL => 'small'; use constant TINY => 'tiny'; +use constant INPUT_FIELD => 'input-field'; +use constant DATEPICKER => 'datepicker'; use constant WAVES_EFFECT => 'waves-effect'; use constant WAVES_LIGHT => 'waves-light'; @@ -47,6 +57,13 @@ my %optional_classes = ( small => SMALL, tiny => TINY, }, + size => { + map { $_ => $_ } + qw(col row), + (map { "s$_" } 1..12), + (map { "m$_" } 1..12), + (map { "l$_" } 1..12), + }, ); use Carp; @@ -93,6 +110,51 @@ sub _extract_attribute_classes { @classes; } +# used to extract material classes that are passed directly as classes +sub _extract_classes { + my ($attributes, $type) = @_; + + my @classes = map { split / / } listify($attributes->{class}); + my %classes = partition_by { !!$optional_classes{$type}{$_} } @classes; + + $attributes->{class} = $classes{''}; + $classes{1}; +} + +sub _set_id_attribute { + my ($attributes, $name, $unique) = @_; + + if (!delete($attributes->{no_id}) && !$attributes->{id}) { + $attributes->{id} = name_to_id($name); + $attributes->{id} .= '_' . $attributes->{value} if $unique; + } + + %{ $attributes }; +} + +{ # This will give you an id for identifying html tags and such. + # It's guaranteed to be unique unless you exceed 10 mio calls per request. + # Do not use these id's to store information across requests. +my $_id_sequence = int rand 1e7; +sub _id { + return ( $_id_sequence = ($_id_sequence + 1) % 1e7 ); +} +} + +sub name_to_id { + my ($name) = @_; + + if (!$name) { + return "id_" . _id(); + } + + $name =~ s/\[\+?\]/ _id() /ge; # give constructs with [] or [+] unique ids + $name =~ s/[^\w_]/_/g; + $name =~ s/_+/_/g; + + return $name; +} + sub button_tag { my ($onclick, $value, %attributes) = @_; @@ -148,11 +210,101 @@ sub icon { sub input_tag { my ($name, $value, %attributes) = @_; - # todo icons - # todo label/active - # todo validate + _set_id_attribute(\%attributes, $attributes{name}); + + my $class = delete %attributes{class}; + my $icon = $attributes{icon} + ? icon(delete $attributes{icon}, class => 'prefix') + : ''; + + my $label = $attributes{label} + ? html_tag('label', delete $attributes{label}, for => $attributes{id}) + : ''; + + $attributes{type} //= 'text'; - html_tag('input', $name, $value, %attributes) . html_tag('label', for => $attributes{id}, $name); + html_tag('div', + $icon . + html_tag('input', undef, value => $value, %attributes, name => $name) . + $label, + class => [ grep $_, $class, INPUT_FIELD ], + ); +} + +sub date_tag { + my ($name, $value, %attributes) = @_; + + _set_id_attribute(\%attributes, $name); + + my $icon = $attributes{icon} + ? icon(delete $attributes{icon}, class => 'prefix') + : ''; + + my $label = $attributes{label} + ? html_tag('label', delete $attributes{label}, for => $attributes{id}) + : ''; + + $attributes{type} = 'text'; # required for materialize + + my @onchange = $attributes{onchange} ? (onChange => delete $attributes{onchange}) : (); + my @classes = (delete $attributes{class}); + + $::request->layout->add_javascripts('kivi.Validator.js'); + $::request->presenter->need_reinit_widgets($attributes{id}); + + $attributes{'data-validate'} = join(' ', "date", grep { $_ } (delete $attributes{'data-validate'})); + + html_tag('div', + $icon . + html_tag('input', + blessed($value) ? $value->to_lxoffice : $value, + size => 11, type => 'text', name => $name, + %attributes, + class => DATEPICKER, @onchange, + ) . + $label, + class => [ grep $_, @classes, INPUT_FIELD ], + ); +} + +sub select_tag { + my ($name, $collection, %attributes) = @_; + + + _set_id_attribute(\%attributes, $name); + my @size_classes = _extract_classes(\%attributes, "size"); + + + my $icon = $attributes{icon} + ? icon(delete $attributes{icon}, class => 'prefix') + : ''; + + my $label = $attributes{label} + ? html_tag('label', delete $attributes{label}, for => $attributes{id}) + : ''; + + my $select_html = SL::Presenter::Tag::select_tag($name, $collection, %attributes); + + html_tag('div', + $icon . $select_html . $label, + class => [ INPUT_FIELD, @size_classes ], + ); +} + +sub checkbox_tag { + my ($name, %attributes) = @_; + + _set_id_attribute(\%attributes, $name); + + my $label = $attributes{label} + ? html_tag('span', delete $attributes{label}) + : ''; + + my $checkbox_html = SL::Presenter::Tag::checkbox_tag($name, %attributes); + + html_tag('label', + $checkbox_html . $label, + ); } @@ -172,6 +324,25 @@ SL::Presenter::MaterialComponents - MaterialCSS Component wrapper =head1 DESCRIPTION +This is a collection of components in the style of L +intended for materialzecss. They should be useable similarly to their original +versions but be well-behaved for materialize. + +They will also recognize some materialize conventions: + +=over 4 + +=item icon> + +Most elements can be decorated with an icon by supplying the C with the name. + +=item grid classes + +Grid classes like C or C can be given as keys with any truish value or +directly as classes. + +=back + =head1 BUGS Nothing here yet.