gitlab-org--gitlab-foss/app/assets/javascripts/group_label_subscription.js

68 lines
2.0 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
2018-06-05 09:47:43 +00:00
import { __ } from '~/locale';
import axios from './lib/utils/axios_utils';
import flash from './flash';
2018-06-05 09:47:43 +00:00
const tooltipTitles = {
group: __('Unsubscribe at group level'),
project: __('Unsubscribe at project level'),
};
export default class GroupLabelSubscription {
constructor(container) {
const $container = $(container);
this.$dropdown = $container.find('.dropdown');
this.$subscribeButtons = $container.find('.js-subscribe-button');
this.$unsubscribeButtons = $container.find('.js-unsubscribe-button');
this.$subscribeButtons.on('click', this.subscribe.bind(this));
this.$unsubscribeButtons.on('click', this.unsubscribe.bind(this));
}
unsubscribe(event) {
event.preventDefault();
const url = this.$unsubscribeButtons.attr('data-url');
2018-10-24 19:17:03 +00:00
axios
.post(url)
.then(() => {
this.toggleSubscriptionButtons();
this.$unsubscribeButtons.removeAttr('data-url');
})
.catch(() => flash(__('There was an error when unsubscribing from this label.')));
}
subscribe(event) {
event.preventDefault();
const $btn = $(event.currentTarget);
const url = $btn.attr('data-url');
this.$unsubscribeButtons.attr('data-url', url);
2018-10-24 19:17:03 +00:00
axios
.post(url)
2018-05-28 11:05:40 +00:00
.then(() => GroupLabelSubscription.setNewTooltip($btn))
.then(() => this.toggleSubscriptionButtons())
.catch(() => flash(__('There was an error when subscribing to this label.')));
}
toggleSubscriptionButtons() {
this.$dropdown.toggleClass('hidden');
this.$subscribeButtons.toggleClass('hidden');
this.$unsubscribeButtons.toggleClass('hidden');
}
2018-05-28 11:05:40 +00:00
static setNewTooltip($button) {
if (!$button.hasClass('js-subscribe-button')) return;
2018-06-05 12:11:48 +00:00
2018-05-28 11:05:40 +00:00
const type = $button.hasClass('js-group-level') ? 'group' : 'project';
2018-06-05 09:47:43 +00:00
const newTitle = tooltipTitles[type];
2018-05-28 11:05:40 +00:00
2018-06-05 09:47:43 +00:00
$('.js-unsubscribe-button', $button.closest('.label-actions-list'))
2018-10-24 19:17:03 +00:00
.tooltip('hide')
.attr('title', newTitle)
.tooltip('_fixTitle');
2018-05-28 11:05:40 +00:00
}
}