%# BEGIN BPS TAGGED BLOCK {{{
%#
%# COPYRIGHT:
%#
%# This software is Copyright (c) 1996-2025 Best Practical Solutions, LLC
%#                                          <sales@bestpractical.com>
%#
%# (Except where explicitly superseded by other copyright notices)
%#
%#
%# LICENSE:
%#
%# This work is made available to you under the terms of Version 2 of
%# the GNU General Public License. A copy of that license should have
%# been provided with this software, but in any event can be snarfed
%# from www.gnu.org.
%#
%# This work is distributed in the hope that it will be useful, but
%# WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
%# General Public License for more details.
%#
%# You should have received a copy of the GNU General Public License
%# along with this program; if not, write to the Free Software
%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
%# 02110-1301 or visit their web page on the internet at
%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
%#
%#
%# CONTRIBUTION SUBMISSION POLICY:
%#
%# (The following paragraph is not intended to limit the rights granted
%# to you to modify and distribute this software under the terms of
%# the GNU General Public License and is only of importance to you if
%# you choose to contribute your changes and enhancements to the
%# community by submitting them to Best Practical Solutions, LLC.)
%#
%# By intentionally submitting any modifications, corrections or
%# derivatives to this work, or any other work intended for use with
%# Request Tracker, to Best Practical Solutions, LLC, you confirm that
%# you are the copyright holder for those contributions and you grant
%# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
%# royalty-free, perpetual, license to use, copy, create derivative
%# works based on those contributions, and sublicense and distribute
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
<div class="row mt-2">
  <div class="col-12">
    <i><&|/l&>Current watchers</&>:</i>
  </div>
</div>

<&| /Elements/LabeledValue, Label => loc('Owner'), ReadOnly => 0 &>
 <& /Elements/SelectOwner, Name => 'Owner', QueueObj => $Ticket->QueueObj, TicketObj => $Ticket, Default => $Ticket->OwnerObj->Id, DefaultValue => 0&>
</&>
% my @role_fields;
% my $single_roles = $Ticket->QueueObj->CustomRoles;
% $single_roles->LimitToSingleValue;

% my @hidden = $Ticket->QueueObj->HiddenCustomRoleIDsForURL('/Ticket/ModifyPeople.html');
% $single_roles->Limit(FIELD => 'id', OPERATOR => 'NOT IN', VALUE => \@hidden) if @hidden;
% $m->callback( CustomRoles => $single_roles, SingleRoles => 1, Ticket => $Ticket, %ARGS, CallbackName => 'ModifyCustomRoles', CallbackPage => '/Ticket/ModifyPeople.html' );

% while (my $role = $single_roles->Next) {
<&| /Elements/LabeledValue, Label => $role->Name, LabelTooltip => $role->EntryHint, ReadOnly => 0 &>
  <& /Elements/SingleUserRoleInput, role => $role, Ticket => $Ticket &>
</&>

% }

% if ($Ticket->Requestors->MembersObj->Count) {
<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-requestors-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-Requestor-/)">
      <label class="form-check-label" for="delete-requestors-checkbox"><&|/l&>Requestors</&>:</label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Requestors &></div>
</div>
% }

% if ($Ticket->Cc->MembersObj->Count) {
<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-cc-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-Cc-/)">
      <label class="form-check-label" for="delete-cc-checkbox"><&|/l&>Cc</&>:</label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Cc &></div>
</div>
% }

% if ($Ticket->AdminCc->MembersObj->Count) {
<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-admincc-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-AdminCc-/)">
      <label class="form-check-label" for="delete-admincc-checkbox"><&|/l&>Admin Cc</&>:</label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->AdminCc &></div>
</div>
% }

% my $multi_roles = $Ticket->QueueObj->CustomRoles;
% $multi_roles->LimitToMultipleValue;
% $multi_roles->Limit(FIELD => 'id', OPERATOR => 'NOT IN', VALUE => \@hidden) if @hidden;
% $m->callback( CustomRoles => $multi_roles, SingleRoles => 0, Ticket => $Ticket, %ARGS, CallbackName => 'ModifyCustomRoles', CallbackPage => '/Ticket/ModifyPeople.html' );

% while (my $role = $multi_roles->Next) {
% my $group = $Ticket->RoleGroup($role->GroupType);
% if ($group->Id && $group->MembersObj->Count) {
<div class="row mt-2">
  <div class="label col-3">
    <div class="form-check">
      <input type="checkbox" id="delete-<% $role->id %>-checkbox" class="checkbox form-check-input" onclick="setCheckbox(this, /^Ticket-DeleteWatcher-Type-RT::CustomRole-<% $role->Id %>-/)">
      <label class="form-check-label" for="delete-<% $role->id %>-checkbox">
        <span class="<% $role->EntryHint ? 'prev-icon-helper' : '' %>"><% $role->Name %>:</span>\
%     if ( my $hint = $role->EntryHint ) {
<% GetSVGImage( Name => 'info', ExtraClasses => 'icon-helper', Title => $hint, Size => 12 ) |n %>
%     }
      </label>
    </div>
  </div>
  <div class="value col-6"><& EditWatchers, TicketObj => $Ticket, Watchers => $group &></div>
</div>
% }
% }

<div class="row mt-2">
  <div class="col-12">
    <i><&|/l&>Add new watchers</&>:</i>
  </div>
</div>

<& AddWatchers, Ticket => $Ticket, ShowLabel => 0 &>

<div class="edit-custom-fields-container" hx-trigger="none" hx-get="<% RT->Config->Get('WebPath') %>/Views/Component/EditCustomFields?ObjectType=RT::Ticket&ObjectId=<% $Ticket->Id %>&Grouping=People&InTable=1" hx-swap="innerHTML">
  <& /Elements/EditCustomFields, Object => $Ticket, Grouping => 'People', InTable => 1 &>
</div>

<%ARGS>
$Ticket => undef
</%ARGS>

<%attr>
directly_accessible => 1
</%attr>
