2017-11-18 18:12:52 -05:00
|
|
|
// This file will be loaded on settings pages, regardless of theme.
|
|
|
|
|
2020-10-12 19:19:35 -04:00
|
|
|
import 'packs/public-path';
|
2023-10-24 14:23:31 -04:00
|
|
|
import Rails from '@rails/ujs';
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2023-10-24 14:23:31 -04:00
|
|
|
Rails.delegate(document, '#edit_profile input[type=file]', 'change', ({ target }) => {
|
2023-08-24 15:01:19 -04:00
|
|
|
const avatar = document.getElementById(target.id + '-preview');
|
2017-11-21 01:13:37 -05:00
|
|
|
const [file] = target.files || [];
|
|
|
|
const url = file ? URL.createObjectURL(file) : avatar.dataset.originalSrc;
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
avatar.src = url;
|
|
|
|
});
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2023-10-24 14:23:31 -04:00
|
|
|
Rails.delegate(document, '.input-copy input', 'click', ({ target }) => {
|
2019-04-04 08:53:52 -04:00
|
|
|
target.focus();
|
2018-09-19 15:46:01 -04:00
|
|
|
target.select();
|
2019-04-04 08:53:52 -04:00
|
|
|
target.setSelectionRange(0, target.value.length);
|
2018-09-19 15:46:01 -04:00
|
|
|
});
|
|
|
|
|
2023-10-24 14:23:31 -04:00
|
|
|
Rails.delegate(document, '.input-copy button', 'click', ({ target }) => {
|
2018-10-09 15:08:26 -04:00
|
|
|
const input = target.parentNode.querySelector('.input-copy__wrapper input');
|
2018-09-19 15:46:01 -04:00
|
|
|
|
2019-04-04 08:53:52 -04:00
|
|
|
const oldReadOnly = input.readonly;
|
|
|
|
|
|
|
|
input.readonly = false;
|
2018-09-19 15:46:01 -04:00
|
|
|
input.focus();
|
|
|
|
input.select();
|
2019-04-04 08:53:52 -04:00
|
|
|
input.setSelectionRange(0, input.value.length);
|
2018-09-19 15:46:01 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
if (document.execCommand('copy')) {
|
|
|
|
input.blur();
|
|
|
|
target.parentNode.classList.add('copied');
|
|
|
|
|
2023-02-03 14:52:07 -05:00
|
|
|
setTimeout(() => {
|
2018-09-19 15:46:01 -04:00
|
|
|
target.parentNode.classList.remove('copied');
|
|
|
|
}, 700);
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2019-04-04 08:53:52 -04:00
|
|
|
|
|
|
|
input.readonly = oldReadOnly;
|
2018-09-19 15:46:01 -04:00
|
|
|
});
|