57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
import Turbolinks from 'turbolinks';
|
|
import Rails from 'rails-ujs';
|
|
import ActiveStorage from '../shared/activestorage/ujs';
|
|
import Chartkick from 'chartkick';
|
|
import Highcharts from 'highcharts';
|
|
import jQuery from 'jquery';
|
|
|
|
// Include runtime-polyfills for older browsers.
|
|
// Due to .babelrc's 'useBuiltIns', only polyfills actually
|
|
// required by the browsers we support will be included.
|
|
import 'babel-polyfill';
|
|
|
|
import '../shared/sentry';
|
|
import '../shared/rails-ujs-fix';
|
|
import '../shared/autocomplete';
|
|
|
|
import '../new_design/buttons';
|
|
import '../new_design/form-validation';
|
|
import '../new_design/carto';
|
|
import '../new_design/select2';
|
|
|
|
import '../new_design/champs/dossier-link';
|
|
import '../new_design/champs/linked-drop-down-list';
|
|
import '../new_design/champs/siret';
|
|
|
|
import { toggleCondidentielExplanation } from '../new_design/avis';
|
|
import { togglePrintMenu } from '../new_design/dossier';
|
|
import { toggleHeaderMenu } from '../new_design/header';
|
|
import { scrollMessagerie } from '../new_design/messagerie';
|
|
import { showMotivation, motivationCancel } from '../new_design/state-button';
|
|
import { toggleChart } from '../new_design/toggle-chart';
|
|
|
|
// This is the global application namespace where we expose helpers used from rails views
|
|
const DS = {
|
|
toggleCondidentielExplanation,
|
|
togglePrintMenu,
|
|
toggleHeaderMenu,
|
|
scrollMessagerie,
|
|
showMotivation,
|
|
motivationCancel,
|
|
toggleChart
|
|
};
|
|
|
|
// Start Rails helpers
|
|
Chartkick.addAdapter(Highcharts);
|
|
Rails.start();
|
|
Turbolinks.start();
|
|
ActiveStorage.start();
|
|
|
|
// Disable jQuery-driven animations during tests
|
|
if (process.env['RAILS_ENV'] === 'test') {
|
|
jQuery.fx.off = true;
|
|
}
|
|
|
|
// Expose globals
|
|
window.DS = window.DS || DS;
|
|
window.Chartkick = Chartkick;
|