summaryrefslogtreecommitdiff
path: root/lib/VNDB/Util/FormHTML.pm
blob: 041d5a14bbcced1758c62b6db8c7621e21205a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260

package VNDB::Util::FormHTML;

use strict;
use warnings;
use TUWF ':html';
use Exporter 'import';
use POSIX 'strftime';
use VNDB::Func;

our @EXPORT = qw| htmlFormError htmlFormPart htmlForm |;


# Displays friendly error message when form validation failed
# Argument is the return value of formValidate, and an optional
# argument indicating whether we should create a special mainbox
# for the errors.
sub htmlFormError {
  my($self, $frm, $mainbox) = @_;
  return if !$frm->{_err};
  if($mainbox) {
    div class => 'mainbox';
     h1 mt '_formerr_title';
  }
  div class => 'warning';
   h2 mt '_formerr_subtitle';
   ul;
    for my $e (@{$frm->{_err}}) {
      if(!ref $e) {
        li; lit mt '_formerr_e_'.$e; end;
        next;
      }
      my($field, $type, $rule) = @$e;
      li mt '_formerr_required', $field if $type eq 'required';
      li mt '_formerr_minlength', $field, $rule if $type eq 'minlength';
      li mt '_formerr_maxlength', $field, $rule if $type eq 'maxlength';
      li mt '_formerr_enum', $field, join ', ', @$rule if $type eq 'enum';
      li mt '_formerr_wrongboard', $rule if $type eq 'wrongboard';
      li $rule->[1] if $type eq 'func' || $type eq 'regex';
      li mt "_formerr_tpl_$rule", $field if $type eq 'template';
      if($type eq 'tagexists') {
        li; lit mt '_formerr_tagexists', "/g$rule->{id}", $rule->{name}; end;
      }
      if($type eq 'traitexists') {
        li; lit mt '_formerr_traitexists', "/i$rule->{id}", $rule->{name}; end;
      }
    }
   end;
  end 'div';
  end if $mainbox;
}


# Generates a form part.
# A form part is a arrayref, with the first element being the type of the part,
# and all other elements forming a hash with options specific to that type.
# Type      Options
#  hidden    short, (value)
#  input     short, name, (width, pre, post)
#  passwd    short, name
#  static    content, (label, nolabel)
#  check     name, short, (value)
#  select    name, short, options, (width, multi, size)
#  radio     name, short, options
#  text      name, short, (rows, cols)
#  date      name, short
#  part      title
# TODO: Find a way to write this function in a readable way...
sub htmlFormPart {
  my($self, $frm, $fp) = @_;
  my($type, %o) = @$fp;
  local $_ = $type;

  if(/hidden/) {
    Tr class => 'hidden';
     td colspan => 2;
      input type => 'hidden', id => $o{short}, name => $o{short}, value => $o{value}||$frm->{$o{short}}||'';
     end;
    end;
    return
  }

  if(/part/) {
    Tr class => 'newpart';
     td colspan => 2, $o{title};
    end;
    return;
  }

  if(/check/) {
    Tr class => 'newfield';
     td class => 'label';
      lit ' ';
     end;
     td class => 'field';
      input type => 'checkbox', name => $o{short}, id => $o{short}, tabindex => 10,
        value => $o{value}||1, ($frm->{$o{short}}||0) eq ($o{value}||1) ? ( checked => 'checked' ) : ();
      label for => $o{short};
       lit $o{name};
      end;
     end;
    end;
    return;
  }

  Tr $o{name}||$o{label} ? (class => 'newfield') : ();
   if(!$o{nolabel}) {
     td class => 'label';
      if($o{short} && $o{name}) {
        label for => $o{short};
         lit $o{name};
        end;
      } elsif($o{label}) {
        txt $o{label};
      } else {
        lit ' ';
      }
     end;
   }
   td class => 'field', $o{nolabel} ? (colspan => 2) : ();
    if(/input/) {
      lit $o{pre} if $o{pre};
      input type => 'text', class => 'text', name => $o{short}, id => $o{short}, tabindex => 10,
        value => $frm->{$o{short}}||'', $o{width} ? (style => "width: $o{width}px") : ();
      lit $o{post} if $o{post};
    }
    if(/passwd/) {
      input type => 'password', class => 'text', name => $o{short}, id => $o{short}, tabindex => 10,
        value => $frm->{$o{short}}||'';
    }
    if(/static/) {
      lit ref $o{content} eq 'CODE' ? $o{content}->($self, \%o) : $o{content};
    }
    if(/select/) {
      my $l='';
      Select name => $o{short}, id => $o{short}, tabindex => 10,
        $o{width} ? (style => "width: $o{width}px") : (), $o{multi} ? (multiple => 'multiple', size => $o{size}||5) : ();
       for my $p (@{$o{options}}) {
         if($p->[2] && $l ne $p->[2]) {
           end if $l;
           $l = $p->[2];
           optgroup label => $l;
         }
         my $sel = defined $frm->{$o{short}} && ($frm->{$o{short}} eq $p->[0] || ref($frm->{$o{short}}) eq 'ARRAY' && grep $_ eq $p->[0], @{$frm->{$o{short}}});
         option value => $p->[0], $sel ? (selected => 'selected') : (), $p->[1];
       }
       end if $l;
      end;
    }
    if(/radio/) {
      for my $p (@{$o{options}}) {
        input type => 'radio', id => "$o{short}_$p->[0]", name => $o{short}, value => $p->[0], tabindex => 10,
          defined $frm->{$o{short}} && $frm->{$o{short}} eq $p->[0] ? (checked => 'checked') : ();
        label for => "$o{short}_$p->[0]", $p->[1];
      }
    }
    if(/date/) {
      input type => 'hidden', id => $o{short}, name => $o{short}, value => $frm->{$o{short}}||'', class => 'dateinput';
    }
    if(/text/) {
      textarea name => $o{short}, id => $o{short}, rows => $o{rows}||5, cols => $o{cols}||60, tabindex => 10, $frm->{$o{short}}||'';
    }
   end;
  end 'tr';
}


# Generates a form, first argument is a hashref with global options, keys:
#   frm       => the $frm as returned by formValidate,
#   action    => The location the form should POST to (also used as form id)
#   method    => post/get
#   upload    => 1/0, adds an enctype.
#   nosubmit  => 1/0, hides the submit button
#   editsum   => 1/0, adds an edit summary field before the submit button
#   continue  => 2/1/0, replace submit button with continue buttons
# The other arguments are a list of subforms in the form
# of (subform-name => [form parts]). Each subform is shown as a
# (JavaScript-powered) tab, and has it's own 'mainbox'. This function
# automatically calls htmlFormError and adds a 'formcode' field.
sub htmlForm {
  my($self, $options, @subs) = @_;
  form action => '/nospam?'.$options->{action}, method => $options->{method}||'post', 'accept-charset' => 'utf-8',
    $options->{upload} ? (enctype => 'multipart/form-data') : ();

  div class => 'hidden';
   input type => 'hidden', name => 'formcode', value => $self->authGetCode($options->{action});
  end;

  $self->htmlFormError($options->{frm}, 1);

  # tabs
  if(@subs > 2) {
    ul class => 'maintabs notfirst', id => 'jt_select';
     for (0..$#subs/2) {
       li class => 'left';
        a href => "#$subs[$_*2]", id => "jt_sel_$subs[$_*2]", $subs[$_*2+1][0];
       end;
     }
     li class => 'left';
      a href => '#all', id => 'jt_sel_all', mt '_form_tab_all';
     end;
    end 'ul';
  }

  # form subs
  while(my($short, $parts) = (shift(@subs), shift(@subs))) {
    last if !$short || !$parts;
    my $name = shift @$parts;
    div class => 'mainbox', id => 'jt_box_'.$short;
     h1 $name;
     fieldset;
      legend $name;
      table class => 'formtable';
       $self->htmlFormPart($options->{frm}, $_) for @$parts;
      end;
     end;
    end 'div';
  }

  # db mod / edit summary / submit button
  if(!$options->{nosubmit}) {
    div class => 'mainbox';
     fieldset class => 'submit';
      if($options->{editsum}) {
        # hidden / locked checkbox
        if($self->authCan('dbmod')) {
          input type => 'checkbox', name => 'ihid', id => 'ihid', value => 1,
            tabindex => 10, $options->{frm}{ihid} ? (checked => 'checked') : ();
          label for => 'ihid', mt '_form_ihid';
          input type => 'checkbox', name => 'ilock', id => 'ilock', value => 1,
            tabindex => 10, $options->{frm}{ilock} ? (checked => 'checked') : ();
          label for => 'ilock', mt '_form_ilock';
          br; txt mt('_form_hidlock_note'); br;
        }

        # edit summary
        h2;
         txt mt '_form_editsum';
         b class => 'standout', ' ('.mt('_inenglish').')';
        end;
        textarea name => 'editsum', id => 'editsum', rows => 4, cols => 50, tabindex => 10, $options->{frm}{editsum}||'';
        br;
      }
      if(!$options->{continue}) {
        input type => 'submit', value => mt('_form_submit'), class => 'submit', tabindex => 10;
      } else {
        input type => 'submit', value => mt('_form_continue'), class => 'submit', tabindex => 10;
        input type => 'submit', name => 'continue_ign', value => mt('_form_continue_ign'),
          class => 'submit', style => 'width: auto', tabindex => 10 if $options->{continue} == 2;
      }
     end;
    end 'div';
  }

  end 'form';
}


1;