debian-mirror-gitlab/app/assets/javascripts/blob/viewer/index.js

185 lines
5.4 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2019-12-04 20:38:33 +05:30
import '~/behaviors/markdown/render_gfm';
2018-03-17 18:26:18 +05:30
import Flash from '../../flash';
import { handleLocationHash } from '../../lib/utils/common_utils';
import axios from '../../lib/utils/axios_utils';
2019-07-31 22:56:46 +05:30
import { __ } from '~/locale';
2018-03-17 18:26:18 +05:30
2017-08-17 22:00:37 +05:30
export default class BlobViewer {
constructor() {
2017-09-10 17:25:29 +05:30
BlobViewer.initAuxiliaryViewer();
2018-03-27 19:54:05 +05:30
BlobViewer.initRichViewer();
2017-09-10 17:25:29 +05:30
this.initMainViewers();
}
static initAuxiliaryViewer() {
const auxiliaryViewer = document.querySelector('.blob-viewer[data-type="auxiliary"]');
if (!auxiliaryViewer) return;
BlobViewer.loadViewer(auxiliaryViewer);
}
2018-03-27 19:54:05 +05:30
static initRichViewer() {
const viewer = document.querySelector('.blob-viewer[data-type="rich"]');
if (!viewer || !viewer.dataset.richType) return;
2018-12-13 13:39:08 +05:30
const initViewer = promise =>
2019-02-15 15:39:39 +05:30
promise
.then(module => module.default(viewer))
.catch(error => {
2019-07-31 22:56:46 +05:30
Flash(__('Error loading file viewer.'));
2019-02-15 15:39:39 +05:30
throw error;
});
2018-03-27 19:54:05 +05:30
switch (viewer.dataset.richType) {
case 'balsamiq':
initViewer(import(/* webpackChunkName: 'balsamiq_viewer' */ '../balsamiq_viewer'));
break;
case 'notebook':
initViewer(import(/* webpackChunkName: 'notebook_viewer' */ '../notebook_viewer'));
break;
case 'pdf':
initViewer(import(/* webpackChunkName: 'pdf_viewer' */ '../pdf_viewer'));
break;
case 'sketch':
initViewer(import(/* webpackChunkName: 'sketch_viewer' */ '../sketch_viewer'));
break;
case 'stl':
initViewer(import(/* webpackChunkName: 'stl_viewer' */ '../stl_viewer'));
break;
default:
break;
}
}
2017-09-10 17:25:29 +05:30
initMainViewers() {
this.$fileHolder = $('.file-holder');
if (!this.$fileHolder.length) return;
2017-08-17 22:00:37 +05:30
this.switcher = document.querySelector('.js-blob-viewer-switcher');
this.switcherBtns = document.querySelectorAll('.js-blob-viewer-switch-btn');
this.copySourceBtn = document.querySelector('.js-copy-blob-source-btn');
2017-09-10 17:25:29 +05:30
this.simpleViewer = this.$fileHolder[0].querySelector('.blob-viewer[data-type="simple"]');
this.richViewer = this.$fileHolder[0].querySelector('.blob-viewer[data-type="rich"]');
2017-08-17 22:00:37 +05:30
this.initBindings();
2017-09-10 17:25:29 +05:30
this.switchToInitialViewer();
}
switchToInitialViewer() {
const initialViewer = this.$fileHolder[0].querySelector('.blob-viewer:not(.hidden)');
let initialViewerName = initialViewer.getAttribute('data-type');
2018-11-08 19:23:39 +05:30
if (this.switcher && window.location.hash.indexOf('#L') === 0) {
2017-08-17 22:00:37 +05:30
initialViewerName = 'simple';
}
this.switchToViewer(initialViewerName);
}
initBindings() {
if (this.switcherBtns.length) {
2018-12-13 13:39:08 +05:30
Array.from(this.switcherBtns).forEach(el => {
el.addEventListener('click', this.switchViewHandler.bind(this));
});
2017-08-17 22:00:37 +05:30
}
if (this.copySourceBtn) {
this.copySourceBtn.addEventListener('click', () => {
if (this.copySourceBtn.classList.contains('disabled')) return this.copySourceBtn.blur();
return this.switchToViewer('simple');
});
}
}
switchViewHandler(e) {
const target = e.currentTarget;
e.preventDefault();
this.switchToViewer(target.getAttribute('data-viewer'));
}
toggleCopyButtonState() {
if (!this.copySourceBtn) return;
if (this.simpleViewer.getAttribute('data-loaded')) {
2019-07-31 22:56:46 +05:30
this.copySourceBtn.setAttribute('title', __('Copy source to clipboard'));
2017-08-17 22:00:37 +05:30
this.copySourceBtn.classList.remove('disabled');
} else if (this.activeViewer === this.simpleViewer) {
2018-12-13 13:39:08 +05:30
this.copySourceBtn.setAttribute(
'title',
2019-07-31 22:56:46 +05:30
__('Wait for the source to load to copy it to the clipboard'),
2018-12-13 13:39:08 +05:30
);
2017-08-17 22:00:37 +05:30
this.copySourceBtn.classList.add('disabled');
} else {
2019-07-31 22:56:46 +05:30
this.copySourceBtn.setAttribute(
'title',
__('Switch to the source to copy it to the clipboard'),
);
2017-08-17 22:00:37 +05:30
this.copySourceBtn.classList.add('disabled');
}
2018-11-08 19:23:39 +05:30
$(this.copySourceBtn).tooltip('_fixTitle');
2017-08-17 22:00:37 +05:30
}
switchToViewer(name) {
2017-09-10 17:25:29 +05:30
const newViewer = this.$fileHolder[0].querySelector(`.blob-viewer[data-type='${name}']`);
2017-08-17 22:00:37 +05:30
if (this.activeViewer === newViewer) return;
const oldButton = document.querySelector('.js-blob-viewer-switch-btn.active');
const newButton = document.querySelector(`.js-blob-viewer-switch-btn[data-viewer='${name}']`);
2017-09-10 17:25:29 +05:30
const oldViewer = this.$fileHolder[0].querySelector(`.blob-viewer:not([data-type='${name}'])`);
2017-08-17 22:00:37 +05:30
if (oldButton) {
oldButton.classList.remove('active');
}
if (newButton) {
newButton.classList.add('active');
newButton.blur();
}
if (oldViewer) {
oldViewer.classList.add('hidden');
}
newViewer.classList.remove('hidden');
this.activeViewer = newViewer;
this.toggleCopyButtonState();
2017-09-10 17:25:29 +05:30
BlobViewer.loadViewer(newViewer)
2018-12-13 13:39:08 +05:30
.then(viewer => {
$(viewer).renderGFM();
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
this.$fileHolder.trigger('highlight:line');
handleLocationHash();
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
this.toggleCopyButtonState();
})
2019-07-31 22:56:46 +05:30
.catch(() => new Flash(__('Error loading viewer')));
2017-09-10 17:25:29 +05:30
}
static loadViewer(viewerParam) {
const viewer = viewerParam;
const url = viewer.getAttribute('data-url');
2018-03-17 18:26:18 +05:30
if (!url || viewer.getAttribute('data-loaded') || viewer.getAttribute('data-loading')) {
return Promise.resolve(viewer);
}
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
viewer.setAttribute('data-loading', 'true');
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
return axios.get(url).then(({ data }) => {
viewer.innerHTML = data.html;
viewer.setAttribute('data-loaded', 'true');
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
return viewer;
});
2017-08-17 22:00:37 +05:30
}
}