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