debian-mirror-gitlab/app/assets/javascripts/sidebar/components/lock/edit_form.vue
2019-01-03 12:48:30 +05:30

64 lines
1.4 KiB
Vue

<script>
import editFormButtons from './edit_form_buttons.vue';
import issuableMixin from '../../../vue_shared/mixins/issuable';
import { __, sprintf } from '../../../locale';
export default {
components: {
editFormButtons,
},
mixins: [issuableMixin],
props: {
isLocked: {
required: true,
type: Boolean,
},
updateLockedAttribute: {
required: true,
type: Function,
},
},
computed: {
lockWarning() {
return sprintf(
__(
'Lock this %{issuableDisplayName}? Only <strong>project members</strong> will be able to comment.',
),
{ issuableDisplayName: this.issuableDisplayName },
);
},
unlockWarning() {
return sprintf(
__(
'Unlock this %{issuableDisplayName}? <strong>Everyone</strong> will be able to comment.',
),
{ issuableDisplayName: this.issuableDisplayName },
);
},
},
};
</script>
<template>
<div class="dropdown show">
<div class="dropdown-menu sidebar-item-warning-message">
<p
v-if="isLocked"
class="text"
v-html="unlockWarning">
</p>
<p
v-else
class="text"
v-html="lockWarning">
</p>
<edit-form-buttons
:is-locked="isLocked"
:update-locked-attribute="updateLockedAttribute"
/>
</div>
</div>
</template>