Pflichtenheftitems löschen
[kivitendo-erp.git] / SL / Controller / RequirementSpecItem.pm
1 package SL::Controller::RequirementSpecItem;
2
3 use strict;
4
5 use parent qw(SL::Controller::Base);
6
7 use List::MoreUtils qw(apply);
8 use List::Util qw(first);
9 use Time::HiRes ();
10
11 use SL::DB::RequirementSpec;
12 use SL::DB::RequirementSpecComplexity;
13 use SL::DB::RequirementSpecItem;
14 use SL::DB::RequirementSpecRisk;
15 use SL::Helper::Flash;
16 use SL::JSON;
17 use SL::Locale::String;
18
19 use Rose::Object::MakeMethods::Generic
20 (
21   scalar                  => [ qw(item visible_item visible_section) ],
22   'scalar --get_set_init' => [ qw(complexities risks) ],
23 );
24
25 __PACKAGE__->run_before('load_requirement_spec_item', only => [ qw(dragged_and_dropped ajax_update ajax_edit ajax_delete) ]);
26 __PACKAGE__->run_before('init_visible_section',       only => [ qw(dragged_and_dropped ajax_list   ajax_edit ajax_delete) ]);
27
28 #
29 # actions
30 #
31
32 sub action_ajax_list {
33   my ($self, $js) = @_;
34
35   my $js = SL::ClientJS->new;
36
37   if (!$::form->{clicked_id}) {
38     # Clicked on "sections" in the tree. Do nothing.
39     return $self->render($js);
40   }
41
42   $self->item(SL::DB::RequirementSpecItem->new(id => $::form->{clicked_id})->load->get_section);
43
44   $self->render_list($js, $self->item) if !$self->visible_section || ($self->visible_section->id != $self->item->id);
45
46   $self->render($js);
47 }
48
49 sub action_dragged_and_dropped {
50   my ($self)             = @_;
51
52   my $position           = $::form->{position} =~ m/^ (?: before | after | last ) $/x ? $::form->{position}                                             : die "Unknown 'position' parameter";
53   my $dropped_item       = $::form->{dropped_id}                                  ? SL::DB::RequirementSpecItem->new(id => $::form->{dropped_id})->load : undef;
54
55   my $visible_section_id = $self->visible_section ? $self->visible_section->id : undef;
56   my $old_parent_id      = $self->item->parent_id;
57   my $old_type           = $self->item->get_type;
58
59   $self->item->db->do_transaction(sub {
60     $self->item->remove_from_list;
61     $self->item->parent_id($position =~ m/before|after/ ? $dropped_item->parent_id : $dropped_item->id);
62     $self->item->add_to_list(position => $position, reference => $::form->{dropped_id} || undef);
63   });
64
65   my $js = SL::ClientJS->new;
66
67   $self->item(SL::DB::RequirementSpecItem->new(id => $self->item->id)->load);
68   my $new_section = $self->item->get_section;
69   my $new_type    = $self->item->get_type;
70
71   return $self->render($js) if !$visible_section_id || ($new_type eq 'section');
72
73   my $old_parent  = SL::DB::RequirementSpecItem->new(id => $old_parent_id)->load;
74   my $old_section = $old_parent->get_section;
75
76   # $::lxdebug->message(0, "old sec ID " . $old_section->id . " new " . $new_section->id . " visible $visible_section_id PARENT: old " . $old_parent->id . " new " . $self->item->parent_id . '/' . $self->item->parent->id);
77
78   if ($visible_section_id == $old_section->id) {
79     my $id_prefix = $old_type eq 'sub-function-block' ? 'sub-' : '';
80     $js->remove('#' . $id_prefix . 'function-block-' . $self->item->id);
81
82     if ($old_type eq 'sub-function-block') {
83       $self->replace_bottom($js, $old_parent) ;
84       $js->hide('#sub-function-block-container-' . $old_parent->id) if 0 == scalar(@{ $old_parent->children });
85
86     } elsif (0 == scalar(@{ $old_section->children })) {
87       $js->show('#section-list-empty');
88     }
89   }
90
91   if ($visible_section_id == $new_section->id) {
92     $js->hide('#section-list-empty');
93
94     my $id_prefix = $new_type eq 'sub-function-block' ? 'sub-' : '';
95     my $template  = apply { s/-/_/g; $_ } $new_type;
96     my $html      = "" . $self->render('requirement_spec_item/_' . $template, { output => 0 }, requirement_spec_item => $self->item);
97     my $next_item = $self->item->get_next_in_list;
98
99     if ($next_item) {
100       $js->insertBefore($html, '#' . $id_prefix . 'function-block-' . $next_item->id);
101     } else {
102       my $parent_is_section = $self->item->parent->get_type eq 'section';
103       $js->appendTo($html, $parent_is_section ? '#section-list' : '#sub-function-block-container-' . $self->item->parent_id);
104       $js->show('#sub-function-block-container-' . $self->item->parent_id) if !$parent_is_section;
105     }
106
107     $self->replace_bottom($js, $self->item->parent) if $new_type eq 'sub-function-block';
108   }
109
110   # $::lxdebug->dump(0, "js", $js->to_array);
111
112   $self->render($js);
113 }
114
115 sub action_ajax_edit {
116   my ($self, %params) = @_;
117
118   $self->item(SL::DB::RequirementSpecItem->new(id => $::form->{id})->load);
119
120   my $js = SL::ClientJS->new;
121
122   die "TODO: edit section" if $self->item->get_type =~ m/section/;
123
124   if (!$self->visible_section || ($self->visible_section->id != $self->item->get_section->id)) {
125     my $html = $self->render('requirement_spec_item/_section', { output => 0 }, requirement_spec_item => $self->item);
126     $js->html('#column-content', $html);
127   }
128
129   if ($self->item->get_type =~ m/function-block/) {
130     my $create_item = sub {
131       [ $_[0]->id, $self->presenter->truncate(join(' ', grep { $_ } ($_[1], $_[0]->fb_number, $_[0]->description))) ]
132     };
133     my @dependencies =
134       map { [ $_->fb_number . ' ' . $_->title,
135               [ map { ( $create_item->($_),
136                         map { $create_item->($_, '->') } @{ $_->sorted_children })
137                     } @{ $_->sorted_children } ] ]
138           } @{ $self->item->requirement_spec->sections };
139
140     my @selected_dependencies = map { $_->id } @{ $self->item->dependencies };
141
142     my $html                  = $self->render('requirement_spec_item/_function_block_form', { output => 0 }, DEPENDENCIES => \@dependencies, SELECTED_DEPENDENCIES => \@selected_dependencies);
143     my $id_base               = $self->item->get_type . '-' . $self->item->id;
144     my $content_top_id        = '#' . $self->item->get_type . '-content-top-' . $self->item->id;
145
146     $js->hide($content_top_id)
147        ->remove("#edit_${id_base}_form")
148        ->insertAfter($html, $content_top_id)
149        ->jstree->select_node('#tree', '#fb-' . $self->item->id)
150        ->focus("#edit_${id_base}_description")
151        ->val('#current_content_type', $self->item->get_type)
152        ->val('#current_content_id', $self->item->id)
153        ->render($self);
154   }
155 }
156
157 sub action_ajax_update {
158   my ($self, %params) = @_;
159
160   my $js         = SL::ClientJS->new;
161   my $prefix     = $::form->{form_prefix} || 'function_block';
162   my $attributes = $::form->{$prefix}     || {};
163
164   foreach (qw(requirement_spec_id parent_id position)) {
165     delete $attributes->{$_} if !defined $attributes->{$_};
166   }
167
168   my @errors = $self->item->assign_attributes(%{ $attributes })->validate;
169   return $js->error(@errors)->render($self) if @errors;
170
171   $self->item->save;
172
173   my $id_prefix    = $self->item->get_type eq 'function-block' ? '' : 'sub-';
174   my $html_top     = $self->render('requirement_spec_item/_function_block_content_top',    { output => 0 }, requirement_spec_item => $self->item, id_prefix => $id_prefix);
175   $id_prefix      .= 'function-block-content-';
176
177   my $js = SL::ClientJS->new
178     ->remove('#' . $prefix . '_form')
179     ->replaceWith('#' . $id_prefix . 'top-' . $self->item->id, $html_top)
180     ->jstree->rename_node('#tree', '#fb-' . $self->item->id, $::request->presenter->requirement_spec_item_tree_node_title($self->item));
181
182   $self->replace_bottom($js, $self->item, id_prefix => $id_prefix);
183   $self->replace_bottom($js, $self->item->parent) if $self->item->get_type eq 'sub-function-block';
184
185   $js->render($self);
186 }
187
188 sub action_ajax_delete {
189   my ($self) = @_;
190
191   my $js = SL::ClientJS->new;
192
193   $self->item->delete;
194
195   if ($self->visible_section && ($self->visible_section->id == $self->item->id)) {
196     # Currently visible section is deleted.
197
198     my $new_section = first { $_->id != $self->item->id } @{ $self->item->requirement_spec->sections };
199     if ($new_section) {
200       $self->render_list($js, $new_section);
201
202     } else {
203       my $html = $self->render('requirement_spec_item/_no_section', { output => 0 });
204       $js->html('#column-content', $html)
205          ->val('#current_content_type', '')
206          ->val('#current_content_id', '')
207     }
208
209   } elsif ($self->visible_section && ($self->visible_section->id == $self->item->get_section->id)) {
210     # Item in currently visible section is deleted.
211
212     my $type = $self->item->get_type;
213     $js->remove('#edit_function_block_' . $self->item->id . '_form')
214        ->remove('#' . $type . '-' . $self->item->id);
215
216     $self->replace_bottom($js, $self->item->parent_id) if $type eq 'sub-function-block';
217
218     if (1 == scalar @{ $self->item->get_full_list }) {
219       if ($type eq 'function-block') {
220         $js->show('#section-list-empty');
221       } elsif ($type eq 'sub-function-block') {
222         $js->hide('#sub-function-block-container-' . $self->item->parent_id);
223       }
224     }
225   }
226
227   $js->jstree->delete_node('#tree', '#fb-' . $self->item->id)
228      ->render($self);
229 }
230
231 #
232 # filters
233 #
234
235 sub load_requirement_spec {
236   my ($self) = @_;
237   $self->requirement_spec(SL::DB::RequirementSpec->new(id => $::form->{requirement_spec_id})->load || die "No such requirement spec");
238 }
239
240 sub load_requirement_spec_item {
241   my ($self) = @_;
242   $self->item(SL::DB::RequirementSpecItem->new(id => $::form->{id})->load || die "No such requirement spec item");
243 }
244
245 #
246 # helpers
247 #
248
249 sub create_random_id {
250   return join '-', Time::HiRes::gettimeofday();
251 }
252
253 sub format_exception {
254   return join "\n", (split m/\n/, $@)[0..4];
255 }
256
257 sub init_visible_section {
258   my ($self)       = @_;
259
260   my $content_id   = $::form->{current_content_id};
261   my $content_type = $::form->{current_content_type};
262
263   return undef unless $content_id;
264   return undef unless $content_type =~ m/section|function-block/;
265
266   $self->visible_item(SL::DB::Manager::RequirementSpecItem->find_by(id => $content_id));
267   return undef unless $self->visible_item;
268
269   return $self->visible_section($self->visible_item->get_section);
270 }
271
272 sub init_complexities {
273   my ($self) = @_;
274
275   return SL::DB::Manager::RequirementSpecComplexity->get_all_sorted;
276 }
277
278 sub init_risks {
279   my ($self) = @_;
280
281   return SL::DB::Manager::RequirementSpecRisk->get_all_sorted;
282 }
283
284 sub replace_bottom {
285   my ($self, $js, $item_or_id) = @_;
286
287   my $item      = (ref($item_or_id) ? $item_or_id : SL::DB::RequirementSpecItem->new(id => $item_or_id))->load;
288   my $id_prefix = $item->get_type eq 'function-block' ? '' : 'sub-';
289   my $html      = $self->render('requirement_spec_item/_function_block_content_bottom', { output => 0 }, requirement_spec_item => $item, id_prefix => $id_prefix);
290   return $js->replaceWith('#' . $id_prefix . 'function-block-content-bottom-' . $item->id, $html);
291 }
292
293 sub render_list {
294   my ($self, $js, $item) = @_;
295
296   my $html = $self->render('requirement_spec_item/_section', { output => 0 }, requirement_spec_item => $item);
297   $js->html('#column-content',      $html)
298      ->val( '#current_content_type', $item->get_type)
299      ->val( '#current_content_id',   $item->id)
300      ->jstree->select_node('#tree', '#fb-' . $item->id);
301 }
302
303 1;