fix new prettier defaults
This commit is contained in:
parent
02b15e10cf
commit
43a1ead1cb
40 changed files with 111 additions and 122 deletions
|
@ -1,3 +1,4 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
singleQuote: true
|
singleQuote: true,
|
||||||
|
trailingComma: 'none'
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,19 +2,10 @@
|
||||||
|
|
||||||
$(document).on('click', '.delete', function () {
|
$(document).on('click', '.delete', function () {
|
||||||
$(this).hide();
|
$(this).hide();
|
||||||
$(this)
|
$(this).closest('td').find('.confirm').show();
|
||||||
.closest('td')
|
|
||||||
.find('.confirm')
|
|
||||||
.show();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document).on('click', '.cancel', function () {
|
$(document).on('click', '.cancel', function () {
|
||||||
$(this)
|
$(this).closest('td').find('.delete').show();
|
||||||
.closest('td')
|
$(this).closest('td').find('.confirm').hide();
|
||||||
.find('.delete')
|
|
||||||
.show();
|
|
||||||
$(this)
|
|
||||||
.closest('td')
|
|
||||||
.find('.confirm')
|
|
||||||
.hide();
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -6,11 +6,7 @@ function filters_init() {
|
||||||
$('html').click(function (event) {
|
$('html').click(function (event) {
|
||||||
var visible_filter = $('.filter_framed:visible');
|
var visible_filter = $('.filter_framed:visible');
|
||||||
if (visible_filter.length) {
|
if (visible_filter.length) {
|
||||||
if (
|
if (!$(event.target).closest('.filter_framed').is(':visible')) {
|
||||||
!$(event.target)
|
|
||||||
.closest('.filter_framed')
|
|
||||||
.is(':visible')
|
|
||||||
) {
|
|
||||||
visible_filter.hide();
|
visible_filter.hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,10 +19,7 @@ function filters_init() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.erase-filter').on('click', function () {
|
$('.erase-filter').on('click', function () {
|
||||||
$(this)
|
$(this).parent().find('.filter_input').val('');
|
||||||
.parent()
|
|
||||||
.find('.filter_input')
|
|
||||||
.val('');
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,12 +11,12 @@ import '@reach/combobox/styles.css';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
let cache = {};
|
let cache = {};
|
||||||
const useAddressSearch = searchTerm => {
|
const useAddressSearch = (searchTerm) => {
|
||||||
const [addresses, setAddresses] = useState([]);
|
const [addresses, setAddresses] = useState([]);
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (searchTerm.trim() !== '') {
|
if (searchTerm.trim() !== '') {
|
||||||
let isFresh = true;
|
let isFresh = true;
|
||||||
fetchAddresses(searchTerm).then(addresses => {
|
fetchAddresses(searchTerm).then((addresses) => {
|
||||||
if (isFresh) setAddresses(addresses);
|
if (isFresh) setAddresses(addresses);
|
||||||
});
|
});
|
||||||
return () => (isFresh = false);
|
return () => (isFresh = false);
|
||||||
|
@ -25,12 +25,12 @@ const useAddressSearch = searchTerm => {
|
||||||
return addresses;
|
return addresses;
|
||||||
};
|
};
|
||||||
|
|
||||||
const fetchAddresses = value => {
|
const fetchAddresses = (value) => {
|
||||||
if (cache[value]) {
|
if (cache[value]) {
|
||||||
return Promise.resolve(cache[value]);
|
return Promise.resolve(cache[value]);
|
||||||
}
|
}
|
||||||
const url = `https://api-adresse.data.gouv.fr/search/`;
|
const url = `https://api-adresse.data.gouv.fr/search/`;
|
||||||
return getJSON(url, { q: value, limit: 5 }, 'get').then(result => {
|
return getJSON(url, { q: value, limit: 5 }, 'get').then((result) => {
|
||||||
if (result) {
|
if (result) {
|
||||||
cache[value] = result;
|
cache[value] = result;
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ const fetchAddresses = value => {
|
||||||
const SearchInput = ({ getCoords }) => {
|
const SearchInput = ({ getCoords }) => {
|
||||||
const [searchTerm, setSearchTerm] = useState('');
|
const [searchTerm, setSearchTerm] = useState('');
|
||||||
const addresses = useAddressSearch(searchTerm);
|
const addresses = useAddressSearch(searchTerm);
|
||||||
const handleSearchTermChange = event => {
|
const handleSearchTermChange = (event) => {
|
||||||
setSearchTerm(event.target.value);
|
setSearchTerm(event.target.value);
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
|
@ -72,7 +72,7 @@ const SearchInput = ({ getCoords }) => {
|
||||||
>
|
>
|
||||||
{addresses.features.length > 0 ? (
|
{addresses.features.length > 0 ? (
|
||||||
<ComboboxList>
|
<ComboboxList>
|
||||||
{addresses.features.map(feature => {
|
{addresses.features.map((feature) => {
|
||||||
const str = `${feature.properties.name}, ${feature.properties.city}`;
|
const str = `${feature.properties.name}, ${feature.properties.city}`;
|
||||||
return (
|
return (
|
||||||
<ComboboxOption
|
<ComboboxOption
|
||||||
|
|
|
@ -18,7 +18,7 @@ function filterFeatureCollection(featureCollection, source) {
|
||||||
return {
|
return {
|
||||||
type: 'FeatureCollection',
|
type: 'FeatureCollection',
|
||||||
features: featureCollection.features.filter(
|
features: featureCollection.features.filter(
|
||||||
feature => feature.properties.source === source
|
(feature) => feature.properties.source === source
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -75,7 +75,7 @@ const MapEditor = ({ featureCollection, url }) => {
|
||||||
updateFeaturesList(features);
|
updateFeaturesList(features);
|
||||||
}
|
}
|
||||||
|
|
||||||
const onMapLoad = map => {
|
const onMapLoad = (map) => {
|
||||||
setCurrentMap(map);
|
setCurrentMap(map);
|
||||||
|
|
||||||
drawControl.current.draw.set(
|
drawControl.current.draw.set(
|
||||||
|
@ -83,7 +83,7 @@ const MapEditor = ({ featureCollection, url }) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onCadastresUpdate = evt => {
|
const onCadastresUpdate = (evt) => {
|
||||||
if (currentMap) {
|
if (currentMap) {
|
||||||
currentMap
|
currentMap
|
||||||
.getSource('cadastres-layer')
|
.getSource('cadastres-layer')
|
||||||
|
@ -93,10 +93,10 @@ const MapEditor = ({ featureCollection, url }) => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onGpxImport = e => {
|
const onGpxImport = (e) => {
|
||||||
let reader = new FileReader();
|
let reader = new FileReader();
|
||||||
reader.readAsText(e.target.files[0], 'UTF-8');
|
reader.readAsText(e.target.files[0], 'UTF-8');
|
||||||
reader.onload = async event => {
|
reader.onload = async (event) => {
|
||||||
const featureCollection = gpx(
|
const featureCollection = gpx(
|
||||||
new DOMParser().parseFromString(event.target.result, 'text/xml')
|
new DOMParser().parseFromString(event.target.result, 'text/xml')
|
||||||
);
|
);
|
||||||
|
@ -149,14 +149,14 @@ const MapEditor = ({ featureCollection, url }) => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<SearchInput
|
<SearchInput
|
||||||
getCoords={searchTerm => {
|
getCoords={(searchTerm) => {
|
||||||
setCoords(searchTerm);
|
setCoords(searchTerm);
|
||||||
setZoom([17]);
|
setZoom([17]);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<Map
|
<Map
|
||||||
onStyleLoad={map => onMapLoad(map)}
|
onStyleLoad={(map) => onMapLoad(map)}
|
||||||
fitBounds={bbox}
|
fitBounds={bbox}
|
||||||
fitBoundsOptions={{ padding: 100 }}
|
fitBoundsOptions={{ padding: 100 }}
|
||||||
center={coords}
|
center={coords}
|
||||||
|
|
|
@ -72,7 +72,7 @@ function onFileChange(handler, directUploadUrl) {
|
||||||
|
|
||||||
function uploadFile(input, file, directUploadUrl) {
|
function uploadFile(input, file, directUploadUrl) {
|
||||||
const controller = new Uploader(input, file, directUploadUrl);
|
const controller = new Uploader(input, file, directUploadUrl);
|
||||||
return controller.start().then(signedId => {
|
return controller.start().then((signedId) => {
|
||||||
input.value = null;
|
input.value = null;
|
||||||
return signedId;
|
return signedId;
|
||||||
});
|
});
|
||||||
|
|
|
@ -17,7 +17,9 @@ function TypeDeChampRepetitionOptions({
|
||||||
return (
|
return (
|
||||||
<div className="repetition flex-grow cell">
|
<div className="repetition flex-grow cell">
|
||||||
<SortableContainer
|
<SortableContainer
|
||||||
onSortEnd={params => dispatch({ type: 'onSortTypeDeChamps', params })}
|
onSortEnd={(params) =>
|
||||||
|
dispatch({ type: 'onSortTypeDeChamps', params })
|
||||||
|
}
|
||||||
useDragHandle
|
useDragHandle
|
||||||
>
|
>
|
||||||
{state.typeDeChamps.map((typeDeChamp, index) => (
|
{state.typeDeChamps.map((typeDeChamp, index) => (
|
||||||
|
|
|
@ -12,12 +12,14 @@ function TypeDeChamps({ state: rootState, typeDeChamps }) {
|
||||||
typeDeChamps
|
typeDeChamps
|
||||||
});
|
});
|
||||||
|
|
||||||
const hasUnsavedChamps = state.typeDeChamps.some(tdc => tdc.id == undefined);
|
const hasUnsavedChamps = state.typeDeChamps.some(
|
||||||
|
(tdc) => tdc.id == undefined
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="champs-editor">
|
<div className="champs-editor">
|
||||||
<SortableContainer
|
<SortableContainer
|
||||||
onSortEnd={params => dispatch({ type: 'onSortTypeDeChamps', params })}
|
onSortEnd={(params) => dispatch({ type: 'onSortTypeDeChamps', params })}
|
||||||
lockAxis="y"
|
lockAxis="y"
|
||||||
useDragHandle
|
useDragHandle
|
||||||
>
|
>
|
||||||
|
|
|
@ -5,7 +5,7 @@ export function createTypeDeChampOperation(typeDeChamp, queue) {
|
||||||
method: 'post',
|
method: 'post',
|
||||||
payload: { type_de_champ: typeDeChamp }
|
payload: { type_de_champ: typeDeChamp }
|
||||||
})
|
})
|
||||||
.then(data => {
|
.then((data) => {
|
||||||
handleResponseData(typeDeChamp, data);
|
handleResponseData(typeDeChamp, data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ export function updateTypeDeChampOperation(typeDeChamp, queue) {
|
||||||
method: 'patch',
|
method: 'patch',
|
||||||
payload: { type_de_champ: typeDeChamp }
|
payload: { type_de_champ: typeDeChamp }
|
||||||
})
|
})
|
||||||
.then(data => {
|
.then((data) => {
|
||||||
handleResponseData(typeDeChamp, data);
|
handleResponseData(typeDeChamp, data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,7 +59,7 @@ function addTypeDeChamp(state, typeDeChamps, insertAfter, done) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(message => state.flash.error(message));
|
.catch((message) => state.flash.error(message));
|
||||||
|
|
||||||
let newTypeDeChamps = [...typeDeChamps, typeDeChamp];
|
let newTypeDeChamps = [...typeDeChamps, typeDeChamp];
|
||||||
if (insertAfter) {
|
if (insertAfter) {
|
||||||
|
@ -127,7 +127,7 @@ function updateTypeDeChamp(
|
||||||
function removeTypeDeChamp(state, typeDeChamps, { typeDeChamp }) {
|
function removeTypeDeChamp(state, typeDeChamps, { typeDeChamp }) {
|
||||||
destroyTypeDeChampOperation(typeDeChamp, state.queue)
|
destroyTypeDeChampOperation(typeDeChamp, state.queue)
|
||||||
.then(() => state.flash.success())
|
.then(() => state.flash.success())
|
||||||
.catch(message => state.flash.error(message));
|
.catch((message) => state.flash.error(message));
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
|
@ -141,7 +141,7 @@ function moveTypeDeChampUp(state, typeDeChamps, { typeDeChamp }) {
|
||||||
|
|
||||||
moveTypeDeChampOperation(typeDeChamp, newIndex, state.queue)
|
moveTypeDeChampOperation(typeDeChamp, newIndex, state.queue)
|
||||||
.then(() => state.flash.success())
|
.then(() => state.flash.success())
|
||||||
.catch(message => state.flash.error(message));
|
.catch((message) => state.flash.error(message));
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
|
@ -155,7 +155,7 @@ function moveTypeDeChampDown(state, typeDeChamps, { typeDeChamp }) {
|
||||||
|
|
||||||
moveTypeDeChampOperation(typeDeChamp, newIndex, state.queue)
|
moveTypeDeChampOperation(typeDeChamp, newIndex, state.queue)
|
||||||
.then(() => state.flash.success())
|
.then(() => state.flash.success())
|
||||||
.catch(message => state.flash.error(message));
|
.catch((message) => state.flash.error(message));
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
|
@ -166,7 +166,7 @@ function moveTypeDeChampDown(state, typeDeChamps, { typeDeChamp }) {
|
||||||
function onSortTypeDeChamps(state, typeDeChamps, { oldIndex, newIndex }) {
|
function onSortTypeDeChamps(state, typeDeChamps, { oldIndex, newIndex }) {
|
||||||
moveTypeDeChampOperation(typeDeChamps[oldIndex], newIndex, state.queue)
|
moveTypeDeChampOperation(typeDeChamps[oldIndex], newIndex, state.queue)
|
||||||
.then(() => state.flash.success())
|
.then(() => state.flash.success())
|
||||||
.catch(message => state.flash.error(message));
|
.catch((message) => state.flash.error(message));
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
|
@ -191,13 +191,13 @@ function getUpdateHandler(typeDeChamp, { queue, flash }) {
|
||||||
let handler = updateHandlers.get(typeDeChamp);
|
let handler = updateHandlers.get(typeDeChamp);
|
||||||
if (!handler) {
|
if (!handler) {
|
||||||
handler = debounce(
|
handler = debounce(
|
||||||
done =>
|
(done) =>
|
||||||
updateTypeDeChampOperation(typeDeChamp, queue)
|
updateTypeDeChampOperation(typeDeChamp, queue)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
flash.success();
|
flash.success();
|
||||||
done();
|
done();
|
||||||
})
|
})
|
||||||
.catch(message => flash.error(message)),
|
.catch((message) => flash.error(message)),
|
||||||
200
|
200
|
||||||
);
|
);
|
||||||
updateHandlers.set(typeDeChamp, handler);
|
updateHandlers.set(typeDeChamp, handler);
|
||||||
|
|
|
@ -4,7 +4,7 @@ const PRIMARY_SELECTOR = 'select[data-secondary-options]';
|
||||||
const SECONDARY_SELECTOR = 'select[data-secondary]';
|
const SECONDARY_SELECTOR = 'select[data-secondary]';
|
||||||
const CHAMP_SELECTOR = '.editable-champ';
|
const CHAMP_SELECTOR = '.editable-champ';
|
||||||
|
|
||||||
delegate('change', PRIMARY_SELECTOR, evt => {
|
delegate('change', PRIMARY_SELECTOR, (evt) => {
|
||||||
const primary = evt.target;
|
const primary = evt.target;
|
||||||
const secondary = primary
|
const secondary = primary
|
||||||
.closest(CHAMP_SELECTOR)
|
.closest(CHAMP_SELECTOR)
|
||||||
|
|
|
@ -4,7 +4,7 @@ const BUTTON_SELECTOR = '.button.remove-row';
|
||||||
const DESTROY_INPUT_SELECTOR = 'input[type=hidden][name*=_destroy]';
|
const DESTROY_INPUT_SELECTOR = 'input[type=hidden][name*=_destroy]';
|
||||||
const CHAMP_SELECTOR = '.editable-champ';
|
const CHAMP_SELECTOR = '.editable-champ';
|
||||||
|
|
||||||
delegate('click', BUTTON_SELECTOR, evt => {
|
delegate('click', BUTTON_SELECTOR, (evt) => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
|
|
||||||
const row = evt.target.closest('.row');
|
const row = evt.target.closest('.row');
|
||||||
|
|
|
@ -41,7 +41,7 @@ export default class AutoSaveController {
|
||||||
headers: { Accept: 'application/json' }
|
headers: { Accept: 'application/json' }
|
||||||
};
|
};
|
||||||
|
|
||||||
return window.fetch(form.action, fetchOptions).then(response => {
|
return window.fetch(form.action, fetchOptions).then((response) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
resolve(response);
|
resolve(response);
|
||||||
} else {
|
} else {
|
||||||
|
@ -64,7 +64,7 @@ export default class AutoSaveController {
|
||||||
const fileInputs = form.querySelectorAll(
|
const fileInputs = form.querySelectorAll(
|
||||||
'input[type="file"]:not([disabled]), .editable-champ-piece_justificative input:not([disabled])'
|
'input[type="file"]:not([disabled]), .editable-champ-piece_justificative input:not([disabled])'
|
||||||
);
|
);
|
||||||
fileInputs.forEach(fileInput => (fileInput.disabled = true));
|
fileInputs.forEach((fileInput) => (fileInput.disabled = true));
|
||||||
|
|
||||||
// Generate the form data
|
// Generate the form data
|
||||||
let formData = null;
|
let formData = null;
|
||||||
|
@ -75,7 +75,7 @@ export default class AutoSaveController {
|
||||||
return [null, error];
|
return [null, error];
|
||||||
} finally {
|
} finally {
|
||||||
// Re-enable disabled file inputs
|
// Re-enable disabled file inputs
|
||||||
fileInputs.forEach(fileInput => (fileInput.disabled = false));
|
fileInputs.forEach((fileInput) => (fileInput.disabled = false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ addEventListener('autosave:end', () => {
|
||||||
hideSucceededStatusAfterDelay();
|
hideSucceededStatusAfterDelay();
|
||||||
});
|
});
|
||||||
|
|
||||||
addEventListener('autosave:error', event => {
|
addEventListener('autosave:error', (event) => {
|
||||||
enable(document.querySelector('button.autosave-retry'));
|
enable(document.querySelector('button.autosave-retry'));
|
||||||
setState('failed');
|
setState('failed');
|
||||||
logError(event.detail);
|
logError(event.detail);
|
||||||
|
|
|
@ -5,13 +5,13 @@ import { delegate } from '@utils';
|
||||||
const autoUploadsControllers = new AutoUploadsControllers();
|
const autoUploadsControllers = new AutoUploadsControllers();
|
||||||
|
|
||||||
function startUpload(input) {
|
function startUpload(input) {
|
||||||
Array.from(input.files).forEach(file => {
|
Array.from(input.files).forEach((file) => {
|
||||||
autoUploadsControllers.upload(input, file);
|
autoUploadsControllers.upload(input, file);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const fileInputSelector = `input[type=file][data-direct-upload-url][data-auto-attach-url]:not([disabled])`;
|
const fileInputSelector = `input[type=file][data-direct-upload-url][data-auto-attach-url]:not([disabled])`;
|
||||||
delegate('change', fileInputSelector, event => {
|
delegate('change', fileInputSelector, (event) => {
|
||||||
startUpload(event.target);
|
startUpload(event.target);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ export default class AutoUploadsControllers {
|
||||||
if (form) {
|
if (form) {
|
||||||
form
|
form
|
||||||
.querySelectorAll('button[type=submit]')
|
.querySelectorAll('button[type=submit]')
|
||||||
.forEach(submitButton => Rails.disableElement(submitButton));
|
.forEach((submitButton) => Rails.disableElement(submitButton));
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -51,7 +51,7 @@ export default class AutoUploadsControllers {
|
||||||
// When DirectUploads attempts to add an event listener for "error",
|
// When DirectUploads attempts to add an event listener for "error",
|
||||||
// also insert a custom event listener of our that will report errors to Sentry.
|
// also insert a custom event listener of our that will report errors to Sentry.
|
||||||
if (arguments[0] == 'error') {
|
if (arguments[0] == 'error') {
|
||||||
let handler = event => {
|
let handler = (event) => {
|
||||||
let message = `FileReader ${event.target.error.name}: ${event.target.error.message}`;
|
let message = `FileReader ${event.target.error.name}: ${event.target.error.message}`;
|
||||||
fire(document, 'sentry:capture-exception', new Error(message));
|
fire(document, 'sentry:capture-exception', new Error(message));
|
||||||
};
|
};
|
||||||
|
@ -71,7 +71,7 @@ export default class AutoUploadsControllers {
|
||||||
if (this.inFlightUploadsCount == 0 && form) {
|
if (this.inFlightUploadsCount == 0 && form) {
|
||||||
form
|
form
|
||||||
.querySelectorAll('button[type=submit]')
|
.querySelectorAll('button[type=submit]')
|
||||||
.forEach(submitButton => Rails.enableElement(submitButton));
|
.forEach((submitButton) => Rails.enableElement(submitButton));
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
import { delegate } from '@utils';
|
import { delegate } from '@utils';
|
||||||
|
|
||||||
delegate('click', 'body', event => {
|
delegate('click', 'body', (event) => {
|
||||||
if (!event.target.closest('.dropdown')) {
|
if (!event.target.closest('.dropdown')) {
|
||||||
[...document.querySelectorAll('.dropdown')].forEach(element =>
|
[...document.querySelectorAll('.dropdown')].forEach((element) =>
|
||||||
element.classList.remove('open', 'fade-in-down')
|
element.classList.remove('open', 'fade-in-down')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
delegate('click', '.dropdown-button', event => {
|
delegate('click', '.dropdown-button', (event) => {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
const parent = event.target.closest('.dropdown-button').parentElement;
|
const parent = event.target.closest('.dropdown-button').parentElement;
|
||||||
if (parent.classList.contains('dropdown')) {
|
if (parent.classList.contains('dropdown')) {
|
||||||
|
|
|
@ -12,7 +12,7 @@ const ERROR_EVENT = 'direct-upload:error';
|
||||||
const END_EVENT = 'direct-upload:end';
|
const END_EVENT = 'direct-upload:end';
|
||||||
|
|
||||||
function addUploadEventListener(type, handler) {
|
function addUploadEventListener(type, handler) {
|
||||||
addEventListener(type, event => {
|
addEventListener(type, (event) => {
|
||||||
// Internet Explorer and Edge will sometime replay Javascript events
|
// Internet Explorer and Edge will sometime replay Javascript events
|
||||||
// that were dispatched just before a page navigation (!), but without
|
// that were dispatched just before a page navigation (!), but without
|
||||||
// the event payload.
|
// the event payload.
|
||||||
|
@ -43,7 +43,7 @@ addUploadEventListener(PROGRESS_EVENT, ({ detail: { id, progress } }) => {
|
||||||
ProgressBar.progress(id, progress);
|
ProgressBar.progress(id, progress);
|
||||||
});
|
});
|
||||||
|
|
||||||
addUploadEventListener(ERROR_EVENT, event => {
|
addUploadEventListener(ERROR_EVENT, (event) => {
|
||||||
let id = event.detail.id;
|
let id = event.detail.id;
|
||||||
let errorMsg = event.detail.error;
|
let errorMsg = event.detail.error;
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ export default class Uploader {
|
||||||
}
|
}
|
||||||
|
|
||||||
directUploadWillStoreFileWithXHR(xhr) {
|
directUploadWillStoreFileWithXHR(xhr) {
|
||||||
xhr.upload.addEventListener('progress', event =>
|
xhr.upload.addEventListener('progress', (event) =>
|
||||||
this.uploadRequestDidProgress(event)
|
this.uploadRequestDidProgress(event)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,8 +63,8 @@ function initMap(element, { position }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function toLatLngs({ coordinates }) {
|
function toLatLngs({ coordinates }) {
|
||||||
return coordinates.map(polygon =>
|
return coordinates.map((polygon) =>
|
||||||
polygon[0].map(point => L.GeoJSON.coordsToLatLng(point))
|
polygon[0].map((point) => L.GeoJSON.coordsToLatLng(point))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,7 +137,7 @@ function findInput(selector) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function clearLayers(map) {
|
function clearLayers(map) {
|
||||||
map.eachLayer(layer => {
|
map.eachLayer((layer) => {
|
||||||
if (layer instanceof L.GeoJSON) {
|
if (layer instanceof L.GeoJSON) {
|
||||||
map.removeLayer(layer);
|
map.removeLayer(layer);
|
||||||
}
|
}
|
||||||
|
@ -185,7 +185,7 @@ const RPG_POLYGON_STYLE = Object.assign({}, POLYGON_STYLE, {
|
||||||
fillColor: '#31708f'
|
fillColor: '#31708f'
|
||||||
});
|
});
|
||||||
|
|
||||||
delegate('click', '.carte.edit', event => {
|
delegate('click', '.carte.edit', (event) => {
|
||||||
const map = getCurrentMap(event.target);
|
const map = getCurrentMap(event.target);
|
||||||
|
|
||||||
if (map) {
|
if (map) {
|
||||||
|
@ -200,7 +200,7 @@ delegate('click', '.carte.edit', event => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
delegate('click', '.toolbar .new-area', event => {
|
delegate('click', '.toolbar .new-area', (event) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
const map = getCurrentMap(event.target);
|
const map = getCurrentMap(event.target);
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ delegate('click', '.toolbar .new-area', event => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document).on('select2:select', 'select[data-address]', event => {
|
$(document).on('select2:select', 'select[data-address]', (event) => {
|
||||||
const map = getCurrentMap(event.target);
|
const map = getCurrentMap(event.target);
|
||||||
const { geometry } = event.params.data;
|
const { geometry } = event.params.data;
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ addEventListener('export:update', ({ detail: { url } }) => {
|
||||||
exportPoller.add(url);
|
exportPoller.add(url);
|
||||||
});
|
});
|
||||||
|
|
||||||
delegate('click', '[data-attachment-refresh]', event => {
|
delegate('click', '[data-attachment-refresh]', (event) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
attachementPoller.check();
|
attachementPoller.check();
|
||||||
});
|
});
|
||||||
|
|
|
@ -9,7 +9,7 @@ import { delegate, toggle } from '@utils';
|
||||||
|
|
||||||
const TOGGLE_SOURCE_SELECTOR = '[data-toggle-target]';
|
const TOGGLE_SOURCE_SELECTOR = '[data-toggle-target]';
|
||||||
|
|
||||||
delegate('click', TOGGLE_SOURCE_SELECTOR, evt => {
|
delegate('click', TOGGLE_SOURCE_SELECTOR, (evt) => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
|
|
||||||
const targetSelector = evt.target.dataset.toggleTarget;
|
const targetSelector = evt.target.dataset.toggleTarget;
|
||||||
|
|
|
@ -29,7 +29,7 @@ if (enabled) {
|
||||||
// Send Matomo a new event when navigating to a new page using Turbolinks
|
// Send Matomo a new event when navigating to a new page using Turbolinks
|
||||||
// (see https://developer.matomo.org/guides/spa-tracking)
|
// (see https://developer.matomo.org/guides/spa-tracking)
|
||||||
let previousPageUrl = null;
|
let previousPageUrl = null;
|
||||||
addEventListener('turbolinks:load', event => {
|
addEventListener('turbolinks:load', (event) => {
|
||||||
if (previousPageUrl) {
|
if (previousPageUrl) {
|
||||||
window._paq.push(['setReferrerUrl', previousPageUrl]);
|
window._paq.push(['setReferrerUrl', previousPageUrl]);
|
||||||
window._paq.push(['setCustomUrl', window.location.href]);
|
window._paq.push(['setCustomUrl', window.location.href]);
|
||||||
|
|
|
@ -6,13 +6,13 @@ const { key, enabled, user, environment, browser } = gon.sentry || {};
|
||||||
if (enabled && key) {
|
if (enabled && key) {
|
||||||
Sentry.init({ dsn: key, environment });
|
Sentry.init({ dsn: key, environment });
|
||||||
|
|
||||||
Sentry.configureScope(scope => {
|
Sentry.configureScope((scope) => {
|
||||||
scope.setUser(user);
|
scope.setUser(user);
|
||||||
scope.setExtra('browser', browser.modern ? 'modern' : 'legacy');
|
scope.setExtra('browser', browser.modern ? 'modern' : 'legacy');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Register a way to explicitely capture messages from a different bundle.
|
// Register a way to explicitely capture messages from a different bundle.
|
||||||
addEventListener('sentry:capture-exception', event => {
|
addEventListener('sentry:capture-exception', (event) => {
|
||||||
const error = event.detail;
|
const error = event.detail;
|
||||||
Sentry.captureException(error);
|
Sentry.captureException(error);
|
||||||
});
|
});
|
||||||
|
|
|
@ -46,7 +46,7 @@ export function removeClass(el, cssClass) {
|
||||||
export function delegate(eventNames, selector, callback) {
|
export function delegate(eventNames, selector, callback) {
|
||||||
eventNames
|
eventNames
|
||||||
.split(' ')
|
.split(' ')
|
||||||
.forEach(eventName =>
|
.forEach((eventName) =>
|
||||||
Rails.delegate(document, selector, eventName, callback)
|
Rails.delegate(document, selector, eventName, callback)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -90,13 +90,13 @@ export function scrollToBottom(container) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function on(selector, eventName, fn) {
|
export function on(selector, eventName, fn) {
|
||||||
[...document.querySelectorAll(selector)].forEach(element =>
|
[...document.querySelectorAll(selector)].forEach((element) =>
|
||||||
element.addEventListener(eventName, event => fn(event, event.detail))
|
element.addEventListener(eventName, (event) => fn(event, event.detail))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function to(promise) {
|
export function to(promise) {
|
||||||
return promise.then(result => [result]).catch(error => [null, error]);
|
return promise.then((result) => [result]).catch((error) => [null, error]);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function isNumeric(n) {
|
export function isNumeric(n) {
|
||||||
|
|
Loading…
Reference in a new issue