debian-mirror-gitlab/app/assets/javascripts/project_select_combo_button.js

117 lines
3.3 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2017-09-10 17:25:29 +05:30
import AccessorUtilities from './lib/utils/accessor';
export default class ProjectSelectComboButton {
constructor(select) {
this.projectSelectInput = $(select);
this.newItemBtn = $('.new-project-item-link');
2018-03-17 18:26:18 +05:30
this.resourceType = this.newItemBtn.data('type');
this.resourceLabel = this.newItemBtn.data('label');
this.formattedText = this.deriveTextVariants();
2017-09-10 17:25:29 +05:30
this.groupId = this.projectSelectInput.data('groupId');
this.bindEvents();
this.initLocalStorage();
}
bindEvents() {
2018-12-13 13:39:08 +05:30
this.projectSelectInput
.siblings('.new-project-item-select-button')
2018-03-17 18:26:18 +05:30
.on('click', e => this.openDropdown(e));
2018-12-13 13:39:08 +05:30
this.newItemBtn.on('click', e => {
2018-03-17 18:26:18 +05:30
if (!this.getProjectFromLocalStorage()) {
e.preventDefault();
this.openDropdown(e);
}
});
2017-09-10 17:25:29 +05:30
this.projectSelectInput.on('change', () => this.selectProject());
}
initLocalStorage() {
const localStorageIsSafe = AccessorUtilities.isLocalStorageAccessSafe();
if (localStorageIsSafe) {
2018-12-13 13:39:08 +05:30
this.localStorageKey = [
'group',
this.groupId,
this.formattedText.localStorageItemType,
'recent-project',
].join('-');
2017-09-10 17:25:29 +05:30
this.setBtnTextFromLocalStorage();
}
}
2018-03-17 18:26:18 +05:30
// eslint-disable-next-line class-methods-use-this
openDropdown(event) {
2019-03-02 22:35:43 +05:30
import(/* webpackChunkName: 'select2' */ 'select2/select2')
.then(() => {
$(event.currentTarget)
.siblings('.project-item-select')
.select2('open');
})
.catch(() => {});
2017-09-10 17:25:29 +05:30
}
selectProject() {
const selectedProjectData = JSON.parse(this.projectSelectInput.val());
const projectUrl = `${selectedProjectData.url}/${this.projectSelectInput.data('relativePath')}`;
const projectName = selectedProjectData.name;
const projectMeta = {
url: projectUrl,
name: projectName,
};
this.setNewItemBtnAttributes(projectMeta);
this.setProjectInLocalStorage(projectMeta);
}
setBtnTextFromLocalStorage() {
const cachedProjectData = this.getProjectFromLocalStorage();
this.setNewItemBtnAttributes(cachedProjectData);
}
setNewItemBtnAttributes(project) {
if (project) {
this.newItemBtn.attr('href', project.url);
2018-03-17 18:26:18 +05:30
this.newItemBtn.text(`${this.formattedText.defaultTextPrefix} in ${project.name}`);
2017-09-10 17:25:29 +05:30
} else {
2018-03-17 18:26:18 +05:30
this.newItemBtn.text(`Select project to create ${this.formattedText.presetTextSuffix}`);
2017-09-10 17:25:29 +05:30
}
}
getProjectFromLocalStorage() {
const projectString = localStorage.getItem(this.localStorageKey);
return JSON.parse(projectString);
}
setProjectInLocalStorage(projectMeta) {
const projectString = JSON.stringify(projectMeta);
localStorage.setItem(this.localStorageKey, projectString);
}
2018-03-17 18:26:18 +05:30
deriveTextVariants() {
const defaultTextPrefix = this.resourceLabel;
// the trailing slice call depluralizes each of these strings (e.g. new-issues -> new-issue)
2018-12-13 13:39:08 +05:30
const localStorageItemType = `new-${this.resourceType
.split('_')
.join('-')
.slice(0, -1)}`;
const presetTextSuffix = this.resourceType
.split('_')
.join(' ')
.slice(0, -1);
2018-03-17 18:26:18 +05:30
return {
localStorageItemType, // new-issue / new-merge-request
defaultTextPrefix, // New issue / New merge request
presetTextSuffix, // issue / merge request
};
}
2017-09-10 17:25:29 +05:30
}