]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/Controller/RequirementSpecTextBlock.pm
Pflichtenheftitems & -textblöcke: Tooltips im Baum mit Inhaltsauszug anzeigen gefixt
[kivitendo-erp.git] / SL / Controller / RequirementSpecTextBlock.pm
index f52cbc8a16c693debbfe8c812599dfbc15762a59..02a27a537037f68f8457c406fa8f67d1972646d5 100644 (file)
@@ -18,10 +18,12 @@ use SL::DB::RequirementSpecTextBlock;
 use SL::Helper::Flash;
 use SL::Locale::String;
 
+use constant SORTABLE_PICTURE_LIST => 'kivi.requirement_spec.make_text_block_picture_lists_sortable';
+
 use Rose::Object::MakeMethods::Generic
 (
-  scalar                  => [ qw(text_block picture) ],
-  'scalar --get_set_init' => [ qw(predefined_texts js) ],
+  scalar                  => [ qw(text_block) ],
+  'scalar --get_set_init' => [ qw(predefined_texts js picture) ],
 );
 
 __PACKAGE__->run_before('load_requirement_spec_text_block', only => [qw(ajax_edit ajax_update ajax_delete ajax_flag dragged_and_dropped ajax_copy ajax_add_picture)]);
@@ -48,7 +50,9 @@ sub action_ajax_list {
 
   $self->show_list(output_position => $new_where, id => $::form->{clicked_id}, set_type => 1) if ($new_where != ($current_where // -1));
 
-  $self->render($self->js);
+  $self->js
+    ->run(SORTABLE_PICTURE_LIST())
+    ->render($self);
 }
 
 sub action_ajax_add {
@@ -102,9 +106,11 @@ sub action_ajax_create {
   $self->invalidate_version
     ->hide('#text-block-list-empty')
     ->replaceWith('#' . $::form->{form_prefix} . '_form', $html)
+    ->run(SORTABLE_PICTURE_LIST())
     ->jstree->create_node('#tree', $insert_after ? ('#tb-' . $insert_after, 'after') : ('#tb-' . ($attributes->{output_position} == 0 ? 'front' : 'back'), 'last'), $node)
     ->jstree->select_node('#tree', '#tb-' . $self->text_block->id);
   $self->add_new_text_block_form(output_position => $self->text_block->output_position, insert_after_id => $self->text_block->id, requirement_spec_id => $self->text_block->requirement_spec_id)
+    ->reinit_widgets
     ->render($self);
 }
 
@@ -128,7 +134,11 @@ sub action_ajax_update {
   $self->invalidate_version
     ->remove('#' . $prefix . '_form')
     ->replaceWith('#text-block-' . $self->text_block->id, $html)
+    ->run(SORTABLE_PICTURE_LIST())
     ->jstree->rename_node('#tree', '#tb-' . $self->text_block->id, $self->text_block->title)
+    ->prop('#tb-' . $self->text_block->id . ' a', 'title', $self->text_block->content_excerpt)
+    ->addClass('#tb-' . $self->text_block->id . ' a', 'tooltip')
+    ->reinit_widgets
     ->render($self);
 }
 
@@ -221,7 +231,9 @@ sub action_dragged_and_dropped {
     }
   }
 
-  $self->js->render($self);
+  $self->js
+    ->run(SORTABLE_PICTURE_LIST())
+    ->render($self);
 }
 
 sub action_ajax_copy {
@@ -234,13 +246,18 @@ sub action_ajax_copy {
 sub action_ajax_paste {
   my ($self, %params) = @_;
 
-  my $copied = SL::Clipboard->new->get_entry(qr/^RequirementSpecTextBlock$/);
+  my $copied = SL::Clipboard->new->get_entry(qr/^RequirementSpec(?:TextBlock|Picture)$/);
   if (!$copied) {
     return SL::ClientJS->new
       ->error(t8("The clipboard does not contain anything that can be pasted here."))
       ->render($self);
   }
 
+  if (ref($copied) =~ m/Picture$/) {
+    $self->load_requirement_spec_text_block;
+    return $self->paste_picture($copied);
+  }
+
   my $current_output_position = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type});
   my $new_output_position     = $::form->{id} ? $self->output_position_from_id($::form->{id}) : $::form->{output_position};
   my $front_back              = 0 == $new_output_position ? 'front' : 'back';
@@ -256,6 +273,7 @@ sub action_ajax_paste {
 
   my $node = $self->presenter->requirement_spec_text_block_jstree_data($self->text_block);
   $self->invalidate_version
+    ->run(SORTABLE_PICTURE_LIST())
     ->jstree->create_node('#tree', $::form->{id} ? ('#tb-' . $::form->{id}, 'after') : ("#tb-${front_back}", 'last'), $node)
     ->render($self);
 }
@@ -274,7 +292,6 @@ sub action_ajax_add_picture {
 sub action_ajax_edit_picture {
   my ($self) = @_;
 
-  $self->picture(SL::DB::RequirementSpecPicture->new(id => $::form->{picture_id})->load);
   $self->text_block($self->picture->text_block);
   $self->render('requirement_spec_text_block/_picture_form', { layout => 0 });
 }
@@ -304,7 +321,6 @@ sub action_ajax_update_picture {
   my ($self)     = @_;
 
   my $attributes = $::form->{ $::form->{form_prefix} } || die "Missing attributes";
-  $self->picture(SL::DB::RequirementSpecPicture->new(id => $::form->{id})->load);
 
   if (!$attributes->{picture_content}) {
     delete $attributes->{picture_content};
@@ -332,7 +348,6 @@ sub action_ajax_update_picture {
 sub action_ajax_delete_picture {
   my ($self) = @_;
 
-  $self->picture(SL::DB::RequirementSpecPicture->new(id => $::form->{id})->load);
   $self->picture->delete;
   $self->text_block(SL::DB::RequirementSpecTextBlock->new(id => $self->picture->text_block_id)->load);
 
@@ -345,10 +360,39 @@ sub action_ajax_delete_picture {
 sub action_ajax_download_picture {
   my ($self) = @_;
 
-  $self->picture(SL::DB::RequirementSpecPicture->new(id => $::form->{id})->load);
   $self->send_file(\$self->picture->{picture_content}, type => $self->picture->picture_content_type, name => $self->picture->picture_file_name);
 }
 
+sub action_ajax_copy_picture {
+  my ($self, %params) = @_;
+
+  SL::Clipboard->new->copy($self->picture);
+  SL::ClientJS->new->render($self);
+}
+
+sub action_ajax_paste_picture {
+  my ($self, %params) = @_;
+
+  my $copied = SL::Clipboard->new->get_entry(qr/^RequirementSpecPicture$/);
+  if (!$copied) {
+    return SL::ClientJS->new
+      ->error(t8("The clipboard does not contain anything that can be pasted here."))
+      ->render($self);
+  }
+
+  $self->text_block($self->picture->text_block);   # Save text block via the picture the user clicked on
+
+  $self->paste_picture($copied);
+}
+
+sub action_reorder_pictures {
+  my ($self) = @_;
+
+  SL::DB::RequirementSpecPicture->reorder_list(@{ $::form->{picture_id} || [] });
+
+  $self->render(\'', { type => 'json' });
+}
+
 #
 # filters
 #
@@ -379,6 +423,10 @@ sub init_predefined_texts {
   return SL::DB::Manager::RequirementSpecPredefinedText->get_all_sorted;
 }
 
+sub init_picture {
+  return SL::DB::RequirementSpecPicture->new(id => $::form->{picture_id} || $::form->{id})->load;
+}
+
 sub init_js {
   my ($self) = @_;
   $self->js(SL::ClientJS->new);
@@ -429,4 +477,25 @@ sub show_list {
   return $self->set_function_blocks_tab_menu_class(class => 'text-block-context-menu');
 }
 
+sub paste_picture {
+  my ($self, $copied) = @_;
+
+  if (!$self->text_block->db->do_transaction(sub {
+    1;
+    $self->picture($copied->to_object)->save;        # Create new picture from copied data and save
+    $self->text_block->add_pictures($self->picture); # Add new picture to text block
+    $self->text_block->save;
+  })) {
+    $::lxdebug->message(LXDebug::WARN(), "Error: " . $self->text_block->db->error);
+    return $self->js->error($::locale->text('Saving failed. Error message from the database: #1', $self->text_block->db->error))->render($self);
+  }
+
+  my $html = $self->render('requirement_spec_text_block/_text_block_picture', { output => 0 }, picture => $self->picture);
+
+  $self->invalidate_version
+    ->append('#text-block-' . $self->text_block->id . '-pictures', $html)
+    ->show('#text-block-' . $self->text_block->id . '-pictures')
+    ->render($self);
+}
+
 1;