20 lines
560 B
JavaScript
20 lines
560 B
JavaScript
import { __ } from '~/locale';
|
|
import { deprecatedCreateFlash as Flash } from '../flash';
|
|
import BalsamiqViewer from './balsamiq/balsamiq_viewer';
|
|
|
|
function onError() {
|
|
const flash = new Flash(__('Balsamiq file could not be loaded.'));
|
|
|
|
return flash;
|
|
}
|
|
|
|
export default function loadBalsamiqFile() {
|
|
const viewer = document.getElementById('js-balsamiq-viewer');
|
|
|
|
if (!(viewer instanceof Element)) return;
|
|
|
|
const { endpoint } = viewer.dataset;
|
|
|
|
const balsamiqViewer = new BalsamiqViewer(viewer);
|
|
balsamiqViewer.loadFile(endpoint).catch(onError);
|
|
}
|