summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/__snapshots__/add_command.test.jsx.snap
blob: 99e5d7ad83a7126136d23fee0405d49203926092 (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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`components/integrations/AddCommand should match snapshot 1`] = `
<div
  className="backstage-content row"
>
  <BackstageHeader>
    <Link
      onlyActiveOnIndex={false}
      style={Object {}}
      to="/test/integrations/commands"
    >
      <FormattedMessage
        defaultMessage="Slash Commands"
        id="installed_command.header"
        values={Object {}}
      />
    </Link>
    <FormattedMessage
      defaultMessage="Add"
      id="integrations.add"
      values={Object {}}
    />
  </BackstageHeader>
  <div
    className="backstage-form"
  >
    <form
      className="form-horizontal"
      onSubmit={[Function]}
    >
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="displayName"
        >
          <FormattedMessage
            defaultMessage="Display Name"
            id="add_command.displayName"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <input
            className="form-control"
            id="displayName"
            maxLength="64"
            onChange={[Function]}
            type="text"
            value=""
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="Display name for your slash command made of up to 64 characters."
              id="add_command.displayName.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="description"
        >
          <FormattedMessage
            defaultMessage="Description"
            id="add_command.description"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <input
            className="form-control"
            id="description"
            maxLength="128"
            onChange={[Function]}
            type="text"
            value=""
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="Description for your incoming webhook."
              id="add_command.description.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="trigger"
        >
          <FormattedMessage
            defaultMessage="Command Trigger Word"
            id="add_command.trigger"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <input
            className="form-control"
            id="trigger"
            maxLength={128}
            onChange={[Function]}
            placeholder="Command trigger e.g. \\"hello\\" not including the slash"
            type="text"
            value=""
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="Trigger word must be unique, and cannot begin with a slash or contain any spaces."
              id="add_command.trigger.help"
              values={Object {}}
            />
          </div>
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="Examples: client, employee, patient, weather"
              id="add_command.trigger.helpExamples"
              values={Object {}}
            />
          </div>
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="Reserved: {link}"
              id="add_command.trigger.helpReserved"
              values={
                Object {
                  "link": <a
                    href="https://docs.mattermost.com/help/messaging/executing-commands.html#built-in-commands"
                    rel="noopener noreferrer"
                    target="_blank"
                >
                    <FormattedMessage
                        defaultMessage="see list of built-in slash commands"
                        id="add_command.trigger.helpReservedLinkText"
                        values={Object {}}
                    />
                </a>,
                }
              }
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="url"
        >
          <FormattedMessage
            defaultMessage="Request URL"
            id="add_command.url"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <input
            className="form-control"
            id="url"
            maxLength="1024"
            onChange={[Function]}
            placeholder="Must start with http:// or https://"
            type="text"
            value=""
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="The callback URL to receive the HTTP POST or GET event request when the slash command is run."
              id="add_command.url.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="method"
        >
          <FormattedMessage
            defaultMessage="Request Method"
            id="add_command.method"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <select
            className="form-control"
            id="method"
            onChange={[Function]}
            value="P"
          >
            <option
              value="P"
            >
              POST
            </option>
            <option
              value="G"
            >
              GET
            </option>
          </select>
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="The type of command request issued to the Request URL."
              id="add_command.method.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="username"
        >
          <FormattedMessage
            defaultMessage="Response Username"
            id="add_command.username"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <input
            className="form-control"
            id="username"
            maxLength="64"
            onChange={[Function]}
            placeholder="Username"
            type="text"
            value=""
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="(Optional) Choose a username override for responses for this slash command. Usernames can consist of up to 22 characters consisting of lowercase letters, numbers and they symbols \\"-\\", \\"_\\", and \\".\\" ."
              id="add_command.username.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="iconUrl"
        >
          <FormattedMessage
            defaultMessage="Response Icon"
            id="add_command.iconUrl"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8"
        >
          <input
            className="form-control"
            id="iconUrl"
            maxLength="1024"
            onChange={[Function]}
            placeholder="https://www.example.com/myicon.png"
            type="text"
            value=""
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="(Optional) Choose a profile picture override for the post responses to this slash command. Enter the URL of a .png or .jpg file at least 128 pixels by 128 pixels."
              id="add_command.iconUrl.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="form-group"
      >
        <label
          className="control-label col-sm-4"
          htmlFor="autocomplete"
        >
          <FormattedMessage
            defaultMessage="Autocomplete"
            id="add_command.autocomplete"
            values={Object {}}
          />
        </label>
        <div
          className="col-md-5 col-sm-8 checkbox"
        >
          <input
            checked={false}
            id="autocomplete"
            onChange={[Function]}
            type="checkbox"
          />
          <div
            className="form__help"
          >
            <FormattedMessage
              defaultMessage="(Optional) Show slash command in autocomplete list."
              id="add_command.autocomplete.help"
              values={Object {}}
            />
          </div>
        </div>
      </div>
      <div
        className="backstage-form__footer"
      >
        <FormError
          error={null}
          errors={
            Array [
              "",
              null,
            ]
          }
          type="backstage"
        />
        <Link
          className="btn btn-sm"
          onlyActiveOnIndex={false}
          style={Object {}}
          to="/test/integrations/commands"
        >
          <FormattedMessage
            defaultMessage="Cancel"
            id="add_command.cancel"
            values={Object {}}
          />
        </Link>
        <SpinnerButton
          className="btn btn-primary"
          onClick={[Function]}
          spinning={false}
          type="submit"
        >
          <FormattedMessage
            defaultMessage="Save"
            id="add_command.save"
            values={Object {}}
          />
        </SpinnerButton>
      </div>
    </form>
  </div>
</div>
`;