2020-05-24 23:13:21 +05:30
|
|
|
<script>
|
2020-07-28 23:09:34 +05:30
|
|
|
import { mapGetters } from 'vuex';
|
2020-05-24 23:13:21 +05:30
|
|
|
import { startCase } from 'lodash';
|
|
|
|
import { GlFormGroup, GlFormCheckbox, GlFormInput } from '@gitlab/ui';
|
2020-10-24 23:57:45 +05:30
|
|
|
import { __ } from '~/locale';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
const typeWithPlaceholder = {
|
|
|
|
SLACK: 'slack',
|
|
|
|
MATTERMOST: 'mattermost',
|
|
|
|
};
|
|
|
|
|
|
|
|
const placeholderForType = {
|
|
|
|
[typeWithPlaceholder.SLACK]: __('Slack channels (e.g. general, development)'),
|
|
|
|
[typeWithPlaceholder.MATTERMOST]: __('Channel handle (e.g. town-square)'),
|
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'TriggerFields',
|
|
|
|
components: {
|
|
|
|
GlFormGroup,
|
|
|
|
GlFormCheckbox,
|
|
|
|
GlFormInput,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
events: {
|
|
|
|
type: Array,
|
|
|
|
required: false,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: {
|
2020-07-28 23:09:34 +05:30
|
|
|
...mapGetters(['isInheriting']),
|
2020-05-24 23:13:21 +05:30
|
|
|
placeholder() {
|
|
|
|
return placeholderForType[this.type];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
checkboxName(name) {
|
|
|
|
return `service[${name}]`;
|
|
|
|
},
|
|
|
|
fieldName(name) {
|
|
|
|
return `service[${name}]`;
|
|
|
|
},
|
|
|
|
startCase,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<gl-form-group
|
|
|
|
class="gl-pt-3"
|
|
|
|
:label="__('Trigger')"
|
|
|
|
label-for="trigger-fields"
|
|
|
|
data-testid="trigger-fields-group"
|
|
|
|
>
|
|
|
|
<div id="trigger-fields" class="gl-pt-3">
|
|
|
|
<gl-form-group v-for="event in events" :key="event.title" :description="event.description">
|
2020-07-28 23:09:34 +05:30
|
|
|
<input :name="checkboxName(event.name)" type="hidden" :value="event.value || false" />
|
|
|
|
<gl-form-checkbox v-model="event.value" :disabled="isInheriting">
|
2020-05-24 23:13:21 +05:30
|
|
|
{{ startCase(event.title) }}
|
|
|
|
</gl-form-checkbox>
|
|
|
|
<gl-form-input
|
|
|
|
v-if="event.field"
|
|
|
|
v-model="event.field.value"
|
|
|
|
:name="fieldName(event.field.name)"
|
|
|
|
:placeholder="placeholder"
|
2020-07-28 23:09:34 +05:30
|
|
|
:readonly="isInheriting"
|
2020-05-24 23:13:21 +05:30
|
|
|
/>
|
|
|
|
</gl-form-group>
|
|
|
|
</div>
|
|
|
|
</gl-form-group>
|
|
|
|
</template>
|