X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FTemplate%2FPlugin%2FL.pm;h=320c75ed218ca6f83a6ccdabe955f75436b4eddf;hb=bd1e1e7d4bc019cc97b60d4a946531c356c45fde;hp=19218dbb726f9e5fdd4f1428e56613acbef93970;hpb=9f75fa254b57b62156db30f809c4ee07124301a1;p=kivitendo-erp.git diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index 19218dbb7..320c75ed2 100644 --- a/SL/Template/Plugin/L.pm +++ b/SL/Template/Plugin/L.pm @@ -2,6 +2,9 @@ package SL::Template::Plugin::L; use base qw( Template::Plugin ); use Template::Plugin; +use List::MoreUtils qw(apply); +use List::Util qw(max); +use Scalar::Util qw(blessed); use strict; @@ -19,15 +22,27 @@ sub _H { return $::locale->quote_special_chars('HTML', $string); } +sub _J { + my $string = "" . shift; + $string =~ s/\"/\\\"/g; + return $string; +} + sub _hashify { return (@_ && (ref($_[0]) eq 'HASH')) ? %{ $_[0] } : @_; } sub new { - my $class = shift; - my $context = shift; + my ($class, $context, @args) = @_; + + return bless { + CONTEXT => $context, + }, $class; +} - return bless { }, $class; +sub _context { + die 'not an accessor' if @_ > 1; + return $_[0]->{CONTEXT}; } sub name_to_id { @@ -41,13 +56,14 @@ sub name_to_id { } sub attributes { - my $self = shift; - my %options = _hashify(@_); + my ($self, @slurp) = @_; + my %options = _hashify(@slurp); my @result = (); while (my ($name, $value) = each %options) { next unless $name; - $value ||= ''; + next if $name eq 'disabled' && !$value; + $value = '' if !defined($value); push @result, _H($name) . '="' . _H($value) . '"'; } @@ -55,12 +71,10 @@ sub attributes { } sub html_tag { - my $self = shift; - my $tag = shift; - my $content = shift; - my $attributes = $self->attributes(@_); + my ($self, $tag, $content, @slurp) = @_; + my $attributes = $self->attributes(@slurp); - return "<${tag}${attributes}/>" unless defined($content); + return "<${tag}${attributes}>" unless defined($content); return "<${tag}${attributes}>${content}"; } @@ -77,25 +91,25 @@ sub select_tag { } sub textarea_tag { - my $self = shift; - my $name = shift; - my $content = shift; - my %attributes = _hashify(@_); + my ($self, $name, $content, @slurp) = @_; + my %attributes = _hashify(@slurp); $attributes{id} ||= $self->name_to_id($name); - $content = $content ? '' : _H($content); + $attributes{rows} *= 1; # required by standard + $attributes{cols} *= 1; # required by standard + $content = $content ? _H($content) : ''; return $self->html_tag('textarea', $content, %attributes, name => $name); } sub checkbox_tag { - my $self = shift; - my $name = shift; - my %attributes = _hashify(@_); + my ($self, $name, @slurp) = @_; + my %attributes = _hashify(@slurp); $attributes{id} ||= $self->name_to_id($name); $attributes{value} = 1 unless defined $attributes{value}; my $label = delete $attributes{label}; + my $checkall = delete $attributes{checkall}; if ($attributes{checked}) { $attributes{checked} = 'checked'; @@ -105,6 +119,7 @@ sub checkbox_tag { my $code = $self->html_tag('input', undef, %attributes, name => $name, type => 'checkbox'); $code .= $self->html_tag('label', $label, for => $attributes{id}) if $label; + $code .= $self->javascript(qq|\$('#$attributes{id}').checkall('$checkall');|) if $checkall; return $code; } @@ -131,10 +146,8 @@ sub radio_button_tag { } 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'; @@ -146,36 +159,87 @@ 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 { - return shift->input_tag(@_, type => 'submit', class => 'submit'); + 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); + + $attributes{id} ||= $self->name_to_id($attributes{name}) if $attributes{name}; + $attributes{type} ||= 'button'; + + return $self->html_tag('input', undef, %attributes, value => $value, 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} : defined($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{ defined($result->[0]) ? $result->[0] : '' }; $code .= $self->html_tag('option', _H($result->[1]), %attributes); } @@ -188,15 +252,36 @@ 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, + my $str_value = blessed $value ? $value->to_lxoffice : $value; + + $self->input_tag($name, $str_value, id => $name_e, size => 11, title => _H($::myconfig{dateformat}), @@ -210,8 +295,43 @@ 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 customer_picker { + my ($self, $name, $value, %params) = @_; + my $name_e = _H($name); + + $self->hidden_tag($name, (ref $value && $value->can('id')) ? $value->id : '') . + $self->input_tag("$name_e\_name", (ref $value && $value->can('name')) ? $value->name : '', %params) . + $self->javascript(<[$i]; + + next if $tab eq ''; + + my $selected = $params{selected} == $i; + my $tab_id = "__tab_id_$i"; + 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); +} + +sub multiselect2side { + my ($self, $id, @slurp) = @_; + my %params = _hashify(@slurp); + + $params{labelsx} = "\"" . _J($params{labelsx} || $::locale->text('Available')) . "\""; + $params{labeldx} = "\"" . _J($params{labeldx} || $::locale->text('Selected')) . "\""; + $params{moveOptions} = 'false'; + + my $vars = join(', ', map { "${_}: " . $params{$_} } keys %params); + my $code = < + \$().ready(function() { + \$('#${id}').multiselect2side({ ${vars} }); + }); + +EOCODE + + return $code; +} + +sub sortable_element { + my ($self, $selector, @slurp) = @_; + my %params = _hashify(@slurp); + + my %attributes = ( distance => 5, + helper => <<'JAVASCRIPT' ); + function(event, ui) { + ui.children().each(function() { + $(this).width($(this).width()); + }); + return ui; + } +JAVASCRIPT + + my $stop_event = ''; + + if ($params{url} && $params{with}) { + my $as = $params{as} || $params{with}; + my $filter = ".filter(function(idx) { return this.substr(0, " . length($params{with}) . ") == '$params{with}'; })"; + $filter .= ".map(function(idx, str) { return str.replace('$params{with}_', ''); })"; + + $stop_event = <*:odd').removeClass('listrow1').removeClass('listrow0').addClass('listrow0'); + \$('${selector}>*:even').removeClass('listrow1').removeClass('listrow0').addClass('listrow1'); +JAVASCRIPT + } + + if ($stop_event) { + $attributes{stop} = < + \$(function() { + \$( "${selector}" ).sortable({ ${attr_str} }) + }); + +JAVASCRIPT + + return $code; +} + +sub online_help_tag { + my ($self, $tag, @slurp) = @_; + my %params = _hashify(@slurp); + my $cc = $::myconfig{countrycode}; + my $file = "doc/online/$cc/$tag.html"; + my $text = $params{text} || $::locale->text('Help'); + + die 'malformed help tag' unless $tag =~ /^[a-zA-Z0-9_]+$/; + return unless -f $file; + return $self->html_tag('a', $text, href => $file, target => '_blank'); +} + +sub dump { + my $self = shift; + require Data::Dumper; + return '
' . Data::Dumper::Dumper(@_) . '
'; +} + 1; __END__ @@ -300,6 +589,23 @@ 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 @@ -316,6 +622,10 @@ If C<%attributes> contains a key C