X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FTemplate%2FPlugin%2FL.pm;h=f776af85ca35404591d9ca3141ec811be70a8b83;hb=927ead507db9b154a18dc5d62fb89feb34aeb76c;hp=d1ecdbd8c6d239e909cb0a07cccefc7e6e1040ed;hpb=6f2893dcf199d5e5147cc2020c2ab6984f4274dc;p=kivitendo-erp.git diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index d1ecdbd8c..f776af85c 100644 --- a/SL/Template/Plugin/L.pm +++ b/SL/Template/Plugin/L.pm @@ -2,6 +2,8 @@ package SL::Template::Plugin::L; use base qw( Template::Plugin ); use Template::Plugin; +use List::MoreUtils qw(apply); +use List::Util qw(max); use strict; @@ -24,10 +26,16 @@ sub _hashify { } sub new { - my $class = shift; - my $context = shift; + my ($class, $context, @args) = @_; - return bless { }, $class; + return bless { + CONTEXT => $context, + }, $class; +} + +sub _context { + die 'not an accessor' if @_ > 1; + return $_[0]->{CONTEXT}; } sub name_to_id { @@ -47,7 +55,7 @@ sub attributes { my @result = (); while (my ($name, $value) = each %options) { next unless $name; - $value ||= ''; + $value = '' if !defined($value); push @result, _H($name) . '="' . _H($value) . '"'; } @@ -60,7 +68,7 @@ sub html_tag { my $content = shift; my $attributes = $self->attributes(@_); - return "<${tag}${attributes}/>" unless $content; + return "<${tag}${attributes}/>" unless defined($content); return "<${tag}${attributes}>${content}"; } @@ -71,10 +79,21 @@ sub select_tag { my %attributes = _hashify(@_); $attributes{id} ||= $self->name_to_id($name); + $options_str = $self->options_for_select($options_str) if ref $options_str; return $self->html_tag('select', $options_str, %attributes, name => $name); } +sub textarea_tag { + my ($self, $name, $content, @slurp) = @_; + my %attributes = _hashify(@slurp); + + $attributes{id} ||= $self->name_to_id($name); + $content = $content ? _H($content) : ''; + + return $self->html_tag('textarea', $content, %attributes, name => $name); +} + sub checkbox_tag { my $self = shift; my $name = shift; @@ -96,11 +115,30 @@ sub checkbox_tag { return $code; } +sub radio_button_tag { + my $self = shift; + my $name = shift; + my %attributes = _hashify(@_); + + $attributes{value} = 1 unless defined $attributes{value}; + $attributes{id} ||= $self->name_to_id($name . "_" . $attributes{value}); + my $label = delete $attributes{label}; + + if ($attributes{checked}) { + $attributes{checked} = 'checked'; + } else { + delete $attributes{checked}; + } + + my $code = $self->html_tag('input', undef, %attributes, name => $name, type => 'radio'); + $code .= $self->html_tag('label', $label, for => $attributes{id}) if $label; + + return $code; +} + sub input_tag { - my $self = shift; - my $name = shift; - my $value = shift; - my %attributes = _hashify(@_); + my ($self, $name, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); $attributes{id} ||= $self->name_to_id($name); $attributes{type} ||= 'text'; @@ -108,32 +146,88 @@ sub input_tag { return $self->html_tag('input', undef, %attributes, name => $name, value => $value); } +sub hidden_tag { + return shift->input_tag(@_, type => 'hidden'); +} + +sub div_tag { + my ($self, $content, @slurp) = @_; + return $self->html_tag('div', $content, @slurp); +} + +sub ul_tag { + my ($self, $content, @slurp) = @_; + return $self->html_tag('ul', $content, @slurp); +} + +sub li_tag { + my ($self, $content, @slurp) = @_; + return $self->html_tag('li', $content, @slurp); +} + +sub link { + my ($self, $href, $content, @slurp) = @_; + my %params = _hashify(@slurp); + + $href ||= '#'; + + return $self->html_tag('a', $content, %params, href => $href); +} + +sub submit_tag { + my ($self, $name, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); + + $attributes{onclick} = "if (confirm('" . delete($attributes{confirm}) . "')) return true; else return false;" if $attributes{confirm}; + + return $self->input_tag($name, $value, %attributes, type => 'submit', class => 'submit'); +} + +sub button_tag { + my ($self, $onclick, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); + + return $self->input_tag(undef, $value, %attributes, type => 'button', onclick => $onclick); +} + sub options_for_select { - my $self = shift; - my $collection = shift; - my %options = _hashify(@_); + my $self = shift; + my $collection = shift; + my %options = _hashify(@_); - my $value_key = $options{value} || 'id'; - my $title_key = $options{title} || $value_key; + my $value_key = $options{value} || 'id'; + my $title_key = $options{title} || $value_key; - my @elements = (); - push @elements, [ undef, $options{empty_title} || '' ] if $options{with_empty}; + my $value_sub = $options{value_sub}; + my $title_sub = $options{title_sub}; - if ($collection && (ref $collection eq 'ARRAY')) { - foreach my $element (@{ $collection }) { - my @result = !ref $element ? ( $element, $element ) - : ref $element eq 'ARRAY' ? ( $element->[0], $element->[1] ) - : ref $element eq 'HASH' ? ( $element->{$value_key}, $element->{$title_key} ) - : ( $element->$value_key, $element->$title_key ); + my $value_title_sub = $options{value_title_sub}; - push @elements, \@result; - } - } + my %selected = map { ( $_ => 1 ) } @{ ref($options{default}) eq 'ARRAY' ? $options{default} : $options{default} ? [ $options{default} ] : [] }; + + my $access = sub { + my ($element, $index, $key, $sub) = @_; + my $ref = ref $element; + return $sub ? $sub->($element) + : !$ref ? $element + : $ref eq 'ARRAY' ? $element->[$index] + : $ref eq 'HASH' ? $element->{$key} + : $element->$key; + }; + + my @elements = (); + push @elements, [ undef, $options{empty_title} || '' ] if $options{with_empty}; + push @elements, map [ + $value_title_sub ? $value_title_sub->($_) : ( + $access->($_, 0, $value_key, $value_sub), + $access->($_, 1, $title_key, $title_sub), + ) + ], @{ $collection } if $collection && ref $collection eq 'ARRAY'; my $code = ''; foreach my $result (@elements) { my %attributes = ( value => $result->[0] ); - $attributes{selected} = 'selected' if $options{default} && ($options{default} eq ($result->[0] || '')); + $attributes{selected} = 'selected' if $selected{ $result->[0] || '' }; $code .= $self->html_tag('option', _H($result->[1]), %attributes); } @@ -146,15 +240,35 @@ sub javascript { return $self->html_tag('script', $data, type => 'text/javascript'); } +sub stylesheet_tag { + my $self = shift; + my $code = ''; + + foreach my $file (@_) { + $file .= '.css' unless $file =~ m/\.css$/; + $file = "css/${file}" unless $file =~ m|/|; + + $code .= qq||; + } + + return $code; +} + sub date_tag { my ($self, $name, $value, @slurp) = @_; my %params = _hashify(@slurp); my $name_e = _H($name); my $seq = _tag_id(); + my $datefmt = apply { + s/d+/\%d/gi; + s/m+/\%m/gi; + s/y+/\%Y/gi; + } $::myconfig{"dateformat"}; $params{cal_align} ||= 'BR'; $self->input_tag($name, $value, + id => $name_e, size => 11, title => _H($::myconfig{dateformat}), onBlur => 'check_right_date_format(this)', @@ -167,8 +281,94 @@ sub date_tag { %params, ) . $self->javascript( - "Calendar.setup({ inputField: '$name_e', ifFormat: '$::myconfig{jsc_dateformat}', align: '$params{cal_align}', button: 'trigger$seq' });" + "Calendar.setup({ inputField: '$name_e', ifFormat: '$datefmt', align: '$params{cal_align}', button: 'trigger$seq' });" ) : ''); + +sub javascript_tag { + my $self = shift; + my $code = ''; + + foreach my $file (@_) { + $file .= '.js' unless $file =~ m/\.js$/; + $file = "js/${file}" unless $file =~ m|/|; + + $code .= qq||; + } + + return $code; +} + +sub tabbed { + my ($self, $tabs, @slurp) = @_; + my %params = _hashify(@slurp); + my $id = 'tab_' . _tag_id(); + + $params{selected} *= 1; + + die 'L.tabbed needs an arrayred of tabs for first argument' + unless ref $tabs eq 'ARRAY'; + + my (@header, @blocks); + for my $i (0..$#$tabs) { + my $tab = $tabs->[$i]; + + next if $tab eq ''; + + my $selected = $params{selected} == $i; + my $tab_id = _tag_id(); + push @header, $self->li_tag( + $self->link('', $tab->{name}, rel => $tab_id), + ($selected ? (class => 'selected') : ()) + ); + push @blocks, $self->div_tag($tab->{data}, + id => $tab_id, class => 'tabcontent'); + } + + return '' unless @header; + return $self->ul_tag( + join('', @header), id => $id, class => 'shadetabs' + ) . + $self->div_tag( + join('', @blocks), class => 'tabcontentstyle' + ) . + $self->javascript( + qq|var $id = new ddtabcontent("$id");$id.setpersist(true);| . + qq|$id.setselectedClassTarget("link");$id.init();| + ); +} + +sub tab { + my ($self, $name, $src, @slurp) = @_; + my %params = _hashify(@slurp); + + $params{method} ||= 'process'; + + return () if defined $params{if} && !$params{if}; + + my $data; + if ($params{method} eq 'raw') { + $data = $src; + } elsif ($params{method} eq 'process') { + $data = $self->_context->process($src, %{ $params{args} || {} }); + } else { + die "unknown tag method '$params{method}'"; + } + + return () unless $data; + + return +{ name => $name, data => $data }; +} + +sub areainput_tag { + my ($self, $name, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); + + my $rows = delete $attributes{rows} || 1; + my $min = delete $attributes{min_rows} || 1; + + return $rows > 1 + ? $self->textarea_tag($name, $value, %attributes, rows => max $rows, $min) + : $self->input_tag($name, $value, %attributes); } 1; @@ -233,8 +433,10 @@ Creates a HTML 'select' tag named C<$name> with the contents C<$options_string> and with arbitrary HTML attributes from C<%attributes>. The tag's C defaults to C. -The $options_string is usually created by the C -function. +The C<$options_string> is usually created by the +L function. If C<$options_string> is an array +reference then it will be passed to L +automatically. =item C @@ -242,6 +444,29 @@ Creates a HTML 'input type=text' tag named C<$name> with the value C<$value> and with arbitrary HTML attributes from C<%attributes>. The tag's C defaults to C. +=item C + +Creates a HTML 'input type=hidden' tag named C<$name> with the value +C<$value> and with arbitrary HTML attributes from C<%attributes>. The +tag's C defaults to C. + +=item C + +Creates a HTML 'input type=submit class=submit' tag named C<$name> with the +value C<$value> and with arbitrary HTML attributes from C<%attributes>. The +tag's C defaults to C. + +If C<$attributes{confirm}> is set then a JavaScript popup dialog will +be added via the C handler asking the question given with +C<$attributes{confirm}>. If request is only submitted if the user +clicks the dialog's ok/yes button. + +=item C + +Creates a HTML 'textarea' tag named C<$name> with the content +C<$value> and with arbitrary HTML attributes from C<%attributes>. The +tag's C defaults to C. + =item C Creates a HTML 'input type=checkbox' tag named C<$name> with arbitrary @@ -252,7 +477,37 @@ If C<%attributes> contains a key C