1 package SL::Controller::RequirementSpecTextBlock;
 
   5 use parent qw(SL::Controller::Base);
 
  10 use SL::DB::RequirementSpec;
 
  11 use SL::DB::RequirementSpecPredefinedText;
 
  12 use SL::DB::RequirementSpecTextBlock;
 
  13 use SL::Helper::Flash;
 
  14 use SL::Locale::String;
 
  16 use Rose::Object::MakeMethods::Generic
 
  18   scalar                  => [ qw(requirement_spec text_block) ],
 
  19   'scalar --get_set_init' => [ qw(predefined_texts) ],
 
  22 __PACKAGE__->run_before('load_requirement_spec_text_block', only => [qw(ajax_edit ajax_update ajax_delete ajax_flag dragged_and_dropped)]);
 
  28 sub action_ajax_list {
 
  32   my $current_where = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type});
 
  35   if ($::form->{clicked_type} =~ m/^text-blocks-(front|back)/) {
 
  36     $new_where = $1 eq 'front' ? 0 : 1;
 
  39     $new_where = $self->output_position_from_id($::form->{clicked_id});
 
  42   # $::lxdebug->message(0, "cur $current_where new $new_where");
 
  44   my $js = SL::ClientJS->new;
 
  46   if (!defined($current_where) || ($new_where != $current_where)) {
 
  47     my $text_blocks = SL::DB::Manager::RequirementSpecTextBlock->get_all_sorted(where => [ output_position => $new_where, requirement_spec_id => $::form->{requirement_spec_id} ]);
 
  48     my $html        = $self->render('requirement_spec_text_block/ajax_list', { output => 0 }, TEXT_BLOCKS => $text_blocks, output_position => $new_where);
 
  50     $js->html('#column-content', $html)
 
  51        ->val('#current_content_type', 'text-blocks-' . (0 == $new_where ? 'front' : 'back'))
 
  52        ->val('#current_content_id',   $::form->{clicked_id});
 
  61   my $js            = SL::ClientJS->new;
 
  63   my $current_where = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type}) // -1;
 
  64   my $new_where     = $self->output_position_from_id($::form->{id})                                                  // $::form->{output_position};
 
  66   if ($new_where != $current_where) {
 
  67     my $text_blocks = SL::DB::Manager::RequirementSpecTextBlock->get_all_sorted(where => [ output_position => $new_where, requirement_spec_id => $::form->{requirement_spec_id} ]);
 
  68     my $html        = $self->render('requirement_spec_text_block/ajax_list', { output => 0 }, TEXT_BLOCKS => $text_blocks, output_position => $new_where);
 
  70     $js->html('#column-content', $html);
 
  73   $self->text_block(SL::DB::RequirementSpecTextBlock->new(
 
  74     requirement_spec_id => $::form->{requirement_spec_id},
 
  75     output_position     => $::form->{output_position},
 
  78   my $id_base = join('_', 'new_text_block', Time::HiRes::gettimeofday(), int rand 1000000000000);
 
  79   my $html    = $self->render('requirement_spec_text_block/_form', { output => 0 }, id_base => $id_base, insert_after => $::form->{id});
 
  81   $js->action($::form->{id} ? 'insertAfter' : 'appendTo', $html, '#text-block-' . ($::form->{id} || 'list'))
 
  82      ->focus('#' . $id_base . '_title')
 
  86 sub action_ajax_edit {
 
  89   my $js = SL::ClientJS->new;
 
  91   my $current_where = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type}) // -1;
 
  92   if ($self->text_block->output_position != $current_where) {
 
  93     my $text_blocks = $self->text_block->get_full_list;
 
  94     my $html        = $self->render('requirement_spec_text_block/ajax_list', { output => 0 }, TEXT_BLOCKS => $text_blocks, output_position => $self->text_block->output_position);
 
  96     $js->html('#column-content', $html)
 
  97        ->val('#current_content_type', 'text-block')
 
  98        ->val('#current_content_id',   $self->text_block->id);
 
 101   my $html = $self->render('requirement_spec_text_block/_form', { output => 0 });
 
 103   $js->hide('#text-block-' . $self->text_block->id)
 
 104      ->remove('#edit_text_block_' . $self->text_block->id . '_form')
 
 105      ->insertAfter($html, '#text-block-' . $self->text_block->id)
 
 106      ->jstree->select_node('#tree', '#tb-' . $self->text_block->id)
 
 107      ->focus('#edit_text_block_' . $self->text_block->id . '_title')
 
 111 sub action_ajax_create {
 
 112   my ($self, %params) = @_;
 
 114   my $attributes   = $::form->{ $::form->{form_prefix} } || die "Missing attributes";
 
 115   my $insert_after = delete $attributes->{insert_after};
 
 117   my @errors = $self->text_block(SL::DB::RequirementSpecTextBlock->new(%{ $attributes }))->validate;
 
 118   return SL::ClientJS->new->error(@errors)->render($self) if @errors;
 
 120   $self->text_block->save;
 
 121   $self->text_block->add_to_list(position => 'after', reference => $insert_after) if $insert_after;
 
 123   my $html = $self->render('requirement_spec_text_block/_text_block', { output => 0 }, text_block => $self->text_block);
 
 124   my $node = $self->presenter->requirement_spec_text_block_jstree_data($self->text_block);
 
 127     ->replaceWith('#' . $::form->{form_prefix} . '_form', $html)
 
 128     ->jstree->create_node('#tree', $insert_after ? ('#tb-' . $insert_after, 'after') : ('#tb-' . ($attributes->{output_position} == 0 ? 'front' : 'back'), 'last'), $node)
 
 132 sub action_ajax_update {
 
 133   my ($self, %params) = @_;
 
 135   my $prefix     = $::form->{form_prefix} || 'text_block';
 
 136   my $attributes = $::form->{$prefix}     || {};
 
 138   foreach (qw(requirement_spec_id output_position position)) {
 
 139     delete $attributes->{$_} if !defined $attributes->{$_};
 
 142   my @errors = $self->text_block->assign_attributes(%{ $attributes })->validate;
 
 143   return SL::ClientJS->new->error(@errors)->render($self) if @errors;
 
 145   $self->text_block->save;
 
 147   my $html = $self->render('requirement_spec_text_block/_text_block', { output => 0 }, text_block => $self->text_block);
 
 150     ->remove('#' . $prefix . '_form')
 
 151     ->replaceWith('#text-block-' . $self->text_block->id, $html)
 
 152     ->jstree->rename_node('#tree', '#tb-' . $self->text_block->id, $self->text_block->title)
 
 156 sub action_ajax_delete {
 
 159   my $js = SL::ClientJS->new;
 
 161   my $current_where = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type}) // -1;
 
 162   if ($self->text_block->output_position == $current_where) {
 
 163     $js->remove('#edit_text_block_' . $self->text_block->id . '_form')
 
 164        ->remove('#text-block-' . $self->text_block->id);
 
 166     $js->show('#text-block-list-empty') if 1 == scalar @{ $self->text_block->get_full_list };
 
 169   $self->text_block->delete;
 
 171   $js->jstree->delete_node('#tree', '#tb-' . $self->text_block->id)
 
 175 sub action_ajax_flag {
 
 178   $self->text_block->update_attributes(is_flagged => !$self->text_block->is_flagged);
 
 180   my $current_where = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type});
 
 183    ->action_if($current_where == $self->text_block->output_position, 'toggleClass', '#text-block-' . $self->text_block->id, 'flagged')
 
 184    ->toggleClass('#tb-' . $self->text_block->id, 'flagged')
 
 188 sub action_dragged_and_dropped {
 
 191   my $position           = $::form->{position} =~ m/^ (?: before | after | last ) $/x ? $::form->{position}                                                      : die "Unknown 'position' parameter";
 
 192   my $dropped_text_block = $position           =~ m/^ (?: before | after ) $/x        ? SL::DB::RequirementSpecTextBlock->new(id => $::form->{dropped_id})->load : undef;
 
 194   my $dropped_type       = $position ne 'last' ? undef : $::form->{dropped_type} =~ m/^ text-blocks- (?:front|back) $/x ? $::form->{dropped_type} : die "Unknown 'dropped_type' parameter";
 
 195   my $old_where          = $self->text_block->output_position;
 
 197   $self->text_block->db->do_transaction(sub {
 
 199     $self->text_block->remove_from_list;
 
 200     $self->text_block->output_position($position =~ m/before|after/ ? $dropped_text_block->output_position : $::form->{dropped_type} eq 'text-blocks-front' ? 0 : 1);
 
 201     $self->text_block->add_to_list(position => $position, reference => $dropped_text_block ? $dropped_text_block->id : undef);
 
 204   # $::lxdebug->dump(0, "form", $::form);
 
 206   return $self->render(\'', { type => 'json' }) if $::form->{current_content_type} !~ m/^text-block/;
 
 208   my $current_where = $self->output_position_from_id($::form->{current_content_id}, $::form->{current_content_type}) // -1;
 
 209   my $new_where     = $self->text_block->output_position;
 
 210   my $id            = $self->text_block->id;
 
 211   my $js            = SL::ClientJS->new;
 
 213   # $::lxdebug->message(0, "old $old_where current $current_where new $new_where current_CID " . $::form->{current_content_id} . ' selfid ' . $self->text_block->id);
 
 214   if (($old_where != $new_where) && ($::form->{current_content_id} == $self->text_block->id)) {
 
 215     # The currently selected text block is dragged to the opposite
 
 216     # text block location. Re-render the whole content column.
 
 217     my $text_blocks = SL::DB::Manager::RequirementSpecTextBlock->get_all_sorted(where => [ output_position => $new_where ]);
 
 218     my $html        = $self->render('requirement_spec_text_block/ajax_list', { output => 0 }, TEXT_BLOCKS => $text_blocks, output_position => $new_where);
 
 220     $js->val('#current_content_type', 'text-blocks-' . ($new_where == 0 ? 'front' : 'back'))
 
 221        ->html('#column-content', $html);
 
 224     if ($old_where == $current_where) {
 
 225       $js->remove('#text-block-' . $self->text_block->id);
 
 227       if (0 == scalar(@{ SL::DB::Manager::RequirementSpecTextBlock->get_all(where => [ requirement_spec_id => $self->text_block->requirement_spec_id, output_position => $current_where ]) })) {
 
 228         $js->show('#text-block-list-empty');
 
 232     if ($new_where == $current_where) {
 
 233       $js->hide('#text-block-list-empty');
 
 235       my $html             = "" . $self->render('requirement_spec_text_block/_text_block', { output => 0 }, text_block => $self->text_block);
 
 237       my $prior_text_block = $self->text_block->get_previous_in_list;
 
 239       if ($prior_text_block) {
 
 240         $js->insertAfter($html, '#text-block-' . $prior_text_block->id);
 
 242         $js->prependTo($html, '#text-block-list');
 
 254 sub load_requirement_spec {
 
 256   $self->requirement_spec(SL::DB::RequirementSpec->new(id => $::form->{requirement_spec_id})->load || die "No such requirement spec");
 
 259 sub load_requirement_spec_text_block {
 
 261   $self->text_block(SL::DB::RequirementSpecTextBlock->new(id => $::form->{id})->load || die "No such requirement spec text block");
 
 268 sub output_position_from_id {
 
 269   my ($self, $id, $type, %params) = @_;
 
 272     return $1 eq 'front' ? 0 : 1 if $type =~ m/-(front|back)$/;
 
 273     return undef                 if $type !~ m/text-block/;
 
 276   my $text_block = $id ? SL::DB::Manager::RequirementSpecTextBlock->find_by(id => $id) : undef;
 
 278   return $text_block ? $text_block->output_position : undef;
 
 281 sub init_predefined_texts {
 
 282   return SL::DB::Manager::RequirementSpecPredefinedText->get_all_sorted;