86 lines
1.9 KiB
Vue
86 lines
1.9 KiB
Vue
|
<script>
|
||
|
import { __ } from '~/locale';
|
||
|
import icon from '~/vue_shared/components/icon.vue';
|
||
|
import toggleButton from '~/vue_shared/components/toggle_button.vue';
|
||
|
import tooltip from '~/vue_shared/directives/tooltip';
|
||
|
import eventHub from '../../event_hub';
|
||
|
|
||
|
const ICON_ON = 'notifications';
|
||
|
const ICON_OFF = 'notifications-off';
|
||
|
const LABEL_ON = __('Notifications on');
|
||
|
const LABEL_OFF = __('Notifications off');
|
||
|
|
||
|
export default {
|
||
|
directives: {
|
||
|
tooltip,
|
||
|
},
|
||
|
components: {
|
||
|
icon,
|
||
|
toggleButton,
|
||
|
},
|
||
|
props: {
|
||
|
loading: {
|
||
|
type: Boolean,
|
||
|
required: false,
|
||
|
default: false,
|
||
|
},
|
||
|
subscribed: {
|
||
|
type: Boolean,
|
||
|
required: false,
|
||
|
default: null,
|
||
|
},
|
||
|
id: {
|
||
|
type: Number,
|
||
|
required: false,
|
||
|
default: null,
|
||
|
},
|
||
|
},
|
||
|
computed: {
|
||
|
showLoadingState() {
|
||
|
return this.subscribed === null;
|
||
|
},
|
||
|
notificationIcon() {
|
||
|
return this.subscribed ? ICON_ON : ICON_OFF;
|
||
|
},
|
||
|
notificationTooltip() {
|
||
|
return this.subscribed ? LABEL_ON : LABEL_OFF;
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
toggleSubscription() {
|
||
|
eventHub.$emit('toggleSubscription', this.id);
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<div class="sidebar-collapsed-icon">
|
||
|
<span
|
||
|
v-tooltip
|
||
|
:title="notificationTooltip"
|
||
|
data-container="body"
|
||
|
data-placement="left"
|
||
|
>
|
||
|
<icon
|
||
|
:name="notificationIcon"
|
||
|
:size="16"
|
||
|
aria-hidden="true"
|
||
|
class="sidebar-item-icon is-active"
|
||
|
/>
|
||
|
</span>
|
||
|
</div>
|
||
|
<span class="issuable-header-text hide-collapsed pull-left">
|
||
|
{{ __('Notifications') }}
|
||
|
</span>
|
||
|
<toggle-button
|
||
|
ref="toggleButton"
|
||
|
class="pull-right hide-collapsed js-issuable-subscribe-button"
|
||
|
:is-loading="showLoadingState"
|
||
|
:value="subscribed"
|
||
|
@change="toggleSubscription"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|