X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/f5db53cd06c51ef10fea5aabfbee74f7f2b6d96f..7328cbd6ab400a613f6c160beffbdb3abb44c8ad:/SL/Template/Plugin/L.pm diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index 068fc1a48..b78ebb015 100644 --- a/SL/Template/Plugin/L.pm +++ b/SL/Template/Plugin/L.pm @@ -61,6 +61,7 @@ sub attributes { my @result = (); while (my ($name, $value) = each %options) { next unless $name; + next if $name eq 'disabled' && !$value; $value = '' if !defined($value); push @result, _H($name) . '="' . _H($value) . '"'; } @@ -206,7 +207,7 @@ sub options_for_select { my $value_title_sub = $options{value_title_sub}; - my %selected = map { ( $_ => 1 ) } @{ ref($options{default}) eq 'ARRAY' ? $options{default} : $options{default} ? [ $options{default} ] : [] }; + my %selected = map { ( $_ => 1 ) } @{ ref($options{default}) eq 'ARRAY' ? $options{default} : defined($options{default}) ? [ $options{default} ] : [] }; my $access = sub { my ($element, $index, $key, $sub) = @_; @@ -230,7 +231,7 @@ sub options_for_select { my $code = ''; foreach my $result (@elements) { my %attributes = ( value => $result->[0] ); - $attributes{selected} = 'selected' if $selected{ $result->[0] || '' }; + $attributes{selected} = 'selected' if $selected{ defined($result->[0]) ? $result->[0] : '' }; $code .= $self->html_tag('option', _H($result->[1]), %attributes); } @@ -286,6 +287,7 @@ sub date_tag { $self->javascript( "Calendar.setup({ inputField: '$name_e', ifFormat: '$datefmt', align: '$params{cal_align}', button: 'trigger$seq' });" ) : ''); +} sub javascript_tag { my $self = shift; @@ -394,6 +396,76 @@ 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; @@ -589,6 +661,83 @@ translation of 'Selected'. =back +=item C + +Makes the children of the DOM element C<$selector> (a jQuery selector) +sortable with the I library. The children can be +dragged & dropped around. After dropping an element an URL can be +postet to with the element IDs of the sorted children. + +If this is used then the JavaScript file C must be +included manually as well as it isn't loaded via C<$::form-gt;header>. + +C<%params> can contain the following entries: + +=over 2 + +=item C + +The URL to POST an AJAX request to after a dragged element has been +dropped. The AJAX request's return value is ignored. If given then +C<$params{with}> must be given as well. + +=item C + +A string that is interpreted as the prefix of the children's ID. Upon +POSTing the result each child whose ID starts with C<$params{with}> is +considered. The prefix and the following "_" is removed from the +ID. The remaining parts of the IDs of those children are posted as a +single array parameter. The array parameter's name is either +C<$params{as}> or, missing that, C<$params{with}>. + +=item C + +Sets the POST parameter name for AJAX request after dropping an +element (see C<$params{with}>). + +=item C + +An optional jQuery selector specifying which part of the child element +is dragable. If the parameter is not given then it defaults to +C<.dragdrop> matching DOM elements with the class C. If the +parameter is set and empty then the whole child element is dragable, +and clicks through to underlying elements like inputs or links might +not work. + +=item C + +If trueish then the children will not be recolored. The default is to +recolor the children by setting the class C on odd and +C on even entries. + +=back + +Example: + + + + + + + + + + + + +
ThisThat
stuffmore stuff
stuffmore stuff
stuffmore stuff
+ + [% L.sortable_element('#thing_list tbody', + url => 'controller.pl?action=SystemThings/reorder', + with => 'thingy', + as => 'thing_ids', + recolor_rows => 1) %] + +After dropping e.g. the third element at the top of the list a POST +request would be made to the C action of the C +controller with a single parameter called C -- an array +containing the values C<[ 6, 2, 15 ]>. + =item C Dumps the Argument using L into a EpreE block.