summaryrefslogtreecommitdiffstats
path: root/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl
blob: 4d2a39f385816a24d4b8b86082b9c53c0f08f92b (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
[%# This Source Code Form is subject to the terms of the Mozilla Public
  # License, v. 2.0. If a copy of the MPL was not distributed with this
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]

[%
  needinfo_flagtype   = "";
  needinfo_flags      = [];

  FOREACH type = bug.flag_types;
    IF type.name == 'needinfo';
      needinfo_flagtype = type;
      FOREACH flag = type.flags;
        IF flag.status == '?';
          needinfo_flags.push(flag);
        END;
      END;
      LAST IF needinfo_flagtype;
    END;
  END;

  available_mentors = bug.mentors( exclude_needinfo_blocked => 1 );

  BLOCK needinfo_comment_div;
    match = needinfo_flags.last.creation_date.match('^(\d{4})\.(\d{2})\.(\d{2})(.+)$');
    date  = "$match.0-$match.1-$match.2$match.3";
    FOREACH comment IN bug.comments;
      NEXT IF comment.is_private AND NOT (user.is_insider || user.id == comment.author.id);
      IF comment.creation_ts == date;
        GET "c$comment.count";
        LAST;
      END;
    END;
  END;

  RETURN UNLESS needinfo_flagtype;
%]

<script>
[% IF needinfo_flags.size > 0 %]
$(function() {
  [%# Displays NEEDINFO tag in bug header %]
  var summary_container = document.getElementById('static_bug_status');
  if (summary_container) {
    var needinfo_comment_div = '[% INCLUDE needinfo_comment_div FILTER js %]';
    if (document.getElementById('inline-history-ext')) {
      needinfo_comment_div = inline_history.getNeedinfoDiv();
    }

    if (needinfo_comment_div) {
      var a = document.createElement('a');
      a.id = 'needinfo-lnk';
      a.href = "#" + needinfo_comment_div;
      a.appendChild(document.createTextNode('NEEDINFO'));
      summary_container.appendChild(document.createTextNode('['));
      summary_container.appendChild(a);
      summary_container.appendChild(document.createTextNode(']'));
    }
    else {
      summary_container.appendChild(document.createTextNode('[NEEDINFO]'));
    }
  }
});
[% END %]

[% IF needinfo_flags.size == 0 || needinfo_flagtype.is_multiplicable %]
  function needinfo_init() {
    $('#needinfo')
      .on('change', new_needinfo_changed)
    $('.needinfo-override')
      .on('change', existing_needinfo_changed)
      .change();
    $('#needinfo_role, #needinfo_redirect_role')
      .on('change', needinfo_role_changed);
    needinfo_visibility('needinfo');

    [% FOREACH flag = needinfo_flags %]
      $('#requestee-[% flag.id FILTER none %]')
        .blur(function() {
          $('#needinfo_override_[% flag.id FILTER none %]')
            .prop('checked', $(this).val() === '[% flag.requestee.login FILTER js %]')
        });
    [% END %]
  }

  function needinfo_visibility() {
    var role = $('#needinfo_role').val();
    if (role == 'other') {
      $('#needinfo_from_container').removeClass('bz_default_hidden');
      $('#needinfo_from').prop('disabled', false);
      $('#needinfo_role_identity').text('');
    } else {
      $('#needinfo_from_container').addClass('bz_default_hidden');
      $('#needinfo_from').prop('disabled', true);
      var identity = '';
      if (role == 'reporter') {
        identity = '[% bug.reporter.realname || bug.reporter.login FILTER js %]';
      } else if (role == 'assigned_to') {
        identity = '[% bug.assigned_to.realname || bug.assigned_to.login FILTER js %]';
      } else if (role == 'qa_contact') {
        identity = '[% bug.qa_contact.realname || bug.qa_contact.login FILTER js %]';
      } else if (role == 'user') {
        identity = '[% user.realname || user.login FILTER js %]';
      [% FOREACH mentor = available_mentors %]
        } else if (role == '[% mentor.login FILTER js %]') {
          identity = '[% mentor.realname || mentor.login FILTER js +%] [%+ IF available_mentors.size > 1 %](mentor)[% END %]';
      [% END %]
      }
      $('#needinfo_role_identity').text(identity);
    }
  }

  function new_needinfo_changed(event) {
    if ($('#needinfo').is(':checked') && $('#needinfo_role').val() === 'other') {
      $('#needinfo_from').focus().select();
    }
  }

  function existing_needinfo_changed(event) {
    var $target = $(event.target);
    var is_redirect = !$target.is(':checked') && $target.data('is-self');
    if (is_redirect) {
      $('#needinfo_from_label').hide();
      $('#needinfo_type').show();
      $('#needinfo_type').val('redirect_to');
    } else {
      $('#needinfo_from_label').show();
      $('#needinfo_type').hide();
      $('#needinfo_type').val('needinfo_from');
    }
  }

  function needinfo_role_changed() {
    $('#needinfo').prop('checked', true);
    needinfo_visibility();
    $('#needinfo').change();
  }

  function needinfo_from_changed() {
    $('#needinfo').prop('checked', $('#needinfo_from').val() !== '');
  }

  $(function() {
    needinfo_init();
  });
[% END %]
</script>

<div id="needinfo_container">
  <table>
  [% FOREACH flag = needinfo_flags %]
    <tr>
      [% IF !flag.requestee || flag.requestee.id == user.id%]
        [%# needinfo from anyone or the current user %]
        <td align="center">
          <input type="checkbox" id="needinfo_override_[% flag.id FILTER html %]"
            name="needinfo_override_[% flag.id FILTER html %]" value="1" class="needinfo-override"
            [% 'data-is-self="1"' IF flag.requestee %]
            [% " checked" IF user.in_group("canconfirm") %]>
        </td>
        <td>
          <label for="needinfo_override_[% flag.id FILTER html %]">
            Clear the needinfo request for <em>[% flag.requestee ? flag.requestee.login : "anyone" FILTER html %]</em>.
          </label>
        </td>
      [% ELSIF user.in_group("canconfirm") || flag.setter_id == user.id %]
        [%# needinfo targetted at someone else, but the user can clear %]
        <td align="center">
          <input type="checkbox" id="needinfo_override_[% flag.id FILTER html %]"
                  name="needinfo_override_[% flag.id FILTER html %]" value="1">
        </td>
        <td>
          <label for="needinfo_override_[% flag.id FILTER html %]">
            I am providing the requested information for <em>[% flag.requestee.login FILTER html %]</em>
            (clears the needinfo request).
          </label>
        </td>
      [% ELSE %]
        [%# current user does not have permissions to clear needinfo %]
        <td>&nbsp;</td>
        <td>
          Needinfo requested from <em>[% flag.requestee.login FILTER html %]</em>.
        </td>
      [% END %]
    </tr>
  [% END %]
  [% IF needinfo_flags.size == 0 || needinfo_flagtype.is_multiplicable %]
    <tr>
      <td class="needinfo-cb-td">
        <input type="checkbox" name="needinfo" id="needinfo" value="1">
      </td>
      <td>
        <label for="needinfo" id="needinfo_from_label">
          Need more information from
        </label>
        <select name="needinfo_type" id="needinfo_type" style="display:none;">
          <option value="needinfo_from" selected="true">Need more information from</option>
          <option value="redirect_to">Redirect needinfo request to</option>
        </select>
        <select name="needinfo_role" id="needinfo_role">
          <option value="other">other</option>
          [% IF NOT bug.reporter.needinfo_blocked %]
            <option value="reporter">reporter</option>
          [% END %]
          [% IF NOT bug.assigned_to.needinfo_blocked %]
            <option value="assigned_to">assignee</option>
          [% END %]
          [% IF Param('useqacontact') && bug.qa_contact.login != "" && !bug.qa_contact.needinfo_blocked %]
            <option value="qa_contact">qa contact</option>
          [% END %]
          [% IF !is_redirect && NOT user.needinfo_blocked %]
            <option value="user">myself</option>
          [% END %]
          [% FOREACH mentor = available_mentors %]
            <option [% IF available_mentors.size > 1 %]title="mentor"[% END %] value="[% mentor.login FILTER html %]">
              [% available_mentors.size == 1 ? "mentor" : mentor.login FILTER html %]
            </option>
          [% END %]
        </select>
        <span id="needinfo_from_container">
          [% INCLUDE global/userselect.html.tmpl
              id          => "needinfo_from"
              name        => "needinfo_from"
              value       => ""
              size        => 30
              multiple    => 5
              onchange    => "needinfo_from_changed()"
              field_title => "Enter one or more comma separated users to request more information from"
          %]
        </span>
        <span id="needinfo_role_identity"></span>
      </td>
    </tr>
  [% END %]
  </table>
</div>