2017-11-18 18:12:52 -05:00
|
|
|
// This file will be loaded on settings pages, regardless of theme.
|
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
const { length } = require('stringz');
|
|
|
|
const { delegate } = require('rails-ujs');
|
2018-08-02 11:22:08 -04:00
|
|
|
import emojify from '../mastodon/features/emoji/emoji';
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2018-07-31 16:21:15 -04:00
|
|
|
delegate(document, '#account_display_name', 'input', ({ target }) => {
|
2017-11-21 01:13:37 -05:00
|
|
|
const nameCounter = document.querySelector('.name-counter');
|
2018-07-31 16:21:15 -04:00
|
|
|
const name = document.querySelector('.card .display-name strong');
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
if (nameCounter) {
|
|
|
|
nameCounter.textContent = 30 - length(target.value);
|
|
|
|
}
|
2018-07-31 16:21:15 -04:00
|
|
|
|
|
|
|
if (name) {
|
|
|
|
name.innerHTML = emojify(target.value);
|
|
|
|
}
|
2017-11-21 01:13:37 -05:00
|
|
|
});
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2018-07-31 16:21:15 -04:00
|
|
|
delegate(document, '#account_note', 'input', ({ target }) => {
|
2017-11-21 01:13:37 -05:00
|
|
|
const noteCounter = document.querySelector('.note-counter');
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
if (noteCounter) {
|
2018-07-31 16:21:15 -04:00
|
|
|
noteCounter.textContent = 160 - length(target.value);
|
2017-11-21 01:13:37 -05:00
|
|
|
}
|
|
|
|
});
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
delegate(document, '#account_avatar', 'change', ({ target }) => {
|
2018-07-31 16:21:15 -04:00
|
|
|
const avatar = document.querySelector('.card .avatar img');
|
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
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
delegate(document, '#account_header', 'change', ({ target }) => {
|
2018-07-31 16:21:15 -04:00
|
|
|
const header = document.querySelector('.card .card__img img');
|
2017-11-21 01:13:37 -05:00
|
|
|
const [file] = target.files || [];
|
|
|
|
const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
|
2017-11-18 18:12:52 -05:00
|
|
|
|
2018-07-31 16:21:15 -04:00
|
|
|
header.src = url;
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '#account_locked', 'change', ({ target }) => {
|
|
|
|
const lock = document.querySelector('.card .display-name i');
|
|
|
|
|
|
|
|
if (target.checked) {
|
|
|
|
lock.style.display = 'inline';
|
|
|
|
} else {
|
|
|
|
lock.style.display = 'none';
|
|
|
|
}
|
2017-11-18 18:12:52 -05:00
|
|
|
});
|