7f75ac0ce8
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
101 lines
3.3 KiB
JavaScript
101 lines
3.3 KiB
JavaScript
import $ from 'jquery';
|
|
import Vue from 'vue';
|
|
import createFlash from '../flash';
|
|
import initIssuableSidebar from '../init_issuable_sidebar';
|
|
import './merge_conflict_store';
|
|
import MergeConflictsService from './merge_conflict_service';
|
|
import './components/diff_file_editor';
|
|
import './components/inline_conflict_lines';
|
|
import './components/parallel_conflict_lines';
|
|
import syntaxHighlight from '../syntax_highlight';
|
|
import { __ } from '~/locale';
|
|
|
|
export default function initMergeConflicts() {
|
|
const INTERACTIVE_RESOLVE_MODE = 'interactive';
|
|
const conflictsEl = document.querySelector('#conflicts');
|
|
const { mergeConflictsStore } = gl.mergeConflicts;
|
|
const mergeConflictsService = new MergeConflictsService({
|
|
conflictsPath: conflictsEl.dataset.conflictsPath,
|
|
resolveConflictsPath: conflictsEl.dataset.resolveConflictsPath,
|
|
});
|
|
|
|
initIssuableSidebar();
|
|
|
|
gl.MergeConflictsResolverApp = new Vue({
|
|
el: '#conflicts',
|
|
components: {
|
|
'diff-file-editor': gl.mergeConflicts.diffFileEditor,
|
|
'inline-conflict-lines': gl.mergeConflicts.inlineConflictLines,
|
|
'parallel-conflict-lines': gl.mergeConflicts.parallelConflictLines,
|
|
},
|
|
data: mergeConflictsStore.state,
|
|
computed: {
|
|
conflictsCountText() {
|
|
return mergeConflictsStore.getConflictsCountText();
|
|
},
|
|
readyToCommit() {
|
|
return mergeConflictsStore.isReadyToCommit();
|
|
},
|
|
commitButtonText() {
|
|
return mergeConflictsStore.getCommitButtonText();
|
|
},
|
|
showDiffViewTypeSwitcher() {
|
|
return mergeConflictsStore.fileTextTypePresent();
|
|
},
|
|
},
|
|
created() {
|
|
mergeConflictsService
|
|
.fetchConflictsData()
|
|
.then(({ data }) => {
|
|
if (data.type === 'error') {
|
|
mergeConflictsStore.setFailedRequest(data.message);
|
|
} else {
|
|
mergeConflictsStore.setConflictsData(data);
|
|
}
|
|
|
|
mergeConflictsStore.setLoadingState(false);
|
|
|
|
this.$nextTick(() => {
|
|
syntaxHighlight($('.js-syntax-highlight'));
|
|
});
|
|
})
|
|
.catch(() => {
|
|
mergeConflictsStore.setLoadingState(false);
|
|
mergeConflictsStore.setFailedRequest();
|
|
});
|
|
},
|
|
methods: {
|
|
handleViewTypeChange(viewType) {
|
|
mergeConflictsStore.setViewType(viewType);
|
|
},
|
|
onClickResolveModeButton(file, mode) {
|
|
if (mode === INTERACTIVE_RESOLVE_MODE && file.resolveEditChanged) {
|
|
mergeConflictsStore.setPromptConfirmationState(file, true);
|
|
return;
|
|
}
|
|
|
|
mergeConflictsStore.setFileResolveMode(file, mode);
|
|
},
|
|
acceptDiscardConfirmation(file) {
|
|
mergeConflictsStore.setPromptConfirmationState(file, false);
|
|
mergeConflictsStore.setFileResolveMode(file, INTERACTIVE_RESOLVE_MODE);
|
|
},
|
|
cancelDiscardConfirmation(file) {
|
|
mergeConflictsStore.setPromptConfirmationState(file, false);
|
|
},
|
|
commit() {
|
|
mergeConflictsStore.setSubmitState(true);
|
|
|
|
mergeConflictsService
|
|
.submitResolveConflicts(mergeConflictsStore.getCommitData())
|
|
.then(({ data }) => {
|
|
window.location.href = data.redirect_to;
|
|
})
|
|
.catch(() => {
|
|
mergeConflictsStore.setSubmitState(false);
|
|
createFlash(__('Failed to save merge conflicts resolutions. Please try again!'));
|
|
});
|
|
},
|
|
},
|
|
});
|
|
}
|