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

110 lines
3.6 KiB
JavaScript
Raw Normal View History

2019-12-21 20:55:43 +05:30
/* eslint-disable consistent-return */
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import { __ } from './locale';
import axios from './lib/utils/axios_utils';
2020-10-24 23:57:45 +05:30
import { deprecatedCreateFlash as createFlash } from './flash';
2017-09-10 17:25:29 +05:30
import FilesCommentButton from './files_comment_button';
2019-12-04 20:38:33 +05:30
import initImageDiffHelper from './image_diff/helpers/init_image_diff';
2018-03-17 18:26:18 +05:30
import syntaxHighlight from './syntax_highlight';
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
const WRAPPER = '<div class="diff-content"></div>';
2020-03-13 15:44:24 +05:30
const LOADING_HTML = '<span class="spinner"></span>';
2018-12-13 13:39:08 +05:30
const ERROR_HTML =
'<div class="nothing-here-block"><i class="fa fa-warning"></i> Could not load diff</div>';
const COLLAPSED_HTML =
'<div class="nothing-here-block diff-collapsed">This diff is collapsed. <button class="click-to-expand btn btn-link">Click to expand it.</button></div>';
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
export default class SingleFileDiff {
constructor(file) {
this.file = file;
this.toggleDiff = this.toggleDiff.bind(this);
this.content = $('.diff-content', this.file);
this.$toggleIcon = $('.diff-toggle-caret', this.file);
2018-03-27 19:54:05 +05:30
this.diffForPath = this.content.find('[data-diff-for-path]').data('diffForPath');
2017-09-10 17:25:29 +05:30
this.isOpen = !this.diffForPath;
if (this.diffForPath) {
this.collapsedContent = this.content;
2018-12-13 13:39:08 +05:30
this.loadingContent = $(WRAPPER)
.addClass('loading')
.html(LOADING_HTML)
.hide();
2017-09-10 17:25:29 +05:30
this.content = null;
this.collapsedContent.after(this.loadingContent);
this.$toggleIcon.addClass('fa-caret-right');
} else {
2018-12-13 13:39:08 +05:30
this.collapsedContent = $(WRAPPER)
.html(COLLAPSED_HTML)
.hide();
2017-09-10 17:25:29 +05:30
this.content.after(this.collapsedContent);
this.$toggleIcon.addClass('fa-caret-down');
}
2016-09-13 17:45:13 +05:30
2019-12-21 20:55:43 +05:30
$('.js-file-title, .click-to-expand', this.file).on('click', e => {
this.toggleDiff($(e.target));
});
2017-09-10 17:25:29 +05:30
}
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
toggleDiff($target, cb) {
2018-12-13 13:39:08 +05:30
if (
!$target.hasClass('js-file-title') &&
!$target.hasClass('click-to-expand') &&
!$target.hasClass('diff-toggle-caret')
)
return;
2017-09-10 17:25:29 +05:30
this.isOpen = !this.isOpen;
if (!this.isOpen && !this.hasError) {
this.content.hide();
this.$toggleIcon.addClass('fa-caret-right').removeClass('fa-caret-down');
this.collapsedContent.show();
if (typeof gl.diffNotesCompileComponents !== 'undefined') {
gl.diffNotesCompileComponents();
2016-09-13 17:45:13 +05:30
}
2017-09-10 17:25:29 +05:30
} else if (this.content) {
this.collapsedContent.hide();
this.content.show();
this.$toggleIcon.addClass('fa-caret-down').removeClass('fa-caret-right');
if (typeof gl.diffNotesCompileComponents !== 'undefined') {
gl.diffNotesCompileComponents();
}
} else {
this.$toggleIcon.addClass('fa-caret-down').removeClass('fa-caret-right');
return this.getContentHTML(cb);
2016-09-13 17:45:13 +05:30
}
2017-09-10 17:25:29 +05:30
}
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
getContentHTML(cb) {
this.collapsedContent.hide();
this.loadingContent.show();
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
axios
.get(this.diffForPath)
2018-03-17 18:26:18 +05:30
.then(({ data }) => {
this.loadingContent.hide();
2017-09-10 17:25:29 +05:30
if (data.html) {
2018-03-17 18:26:18 +05:30
this.content = $(data.html);
syntaxHighlight(this.content);
2017-09-10 17:25:29 +05:30
} else {
2018-03-17 18:26:18 +05:30
this.hasError = true;
this.content = $(ERROR_HTML);
2016-09-13 17:45:13 +05:30
}
2018-03-17 18:26:18 +05:30
this.collapsedContent.after(this.content);
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
if (typeof gl.diffNotesCompileComponents !== 'undefined') {
gl.diffNotesCompileComponents();
2016-09-13 17:45:13 +05:30
}
2018-03-17 18:26:18 +05:30
const $file = $(this.file);
FilesCommentButton.init($file);
const canCreateNote = $file.closest('.files').is('[data-can-create-note]');
2019-12-04 20:38:33 +05:30
initImageDiffHelper.initImageDiff($file[0], canCreateNote);
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
if (cb) cb();
2018-03-17 18:26:18 +05:30
})
.catch(() => {
createFlash(__('An error occurred while retrieving diff'));
});
2017-09-10 17:25:29 +05:30
}
}