mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-15 19:31:42 +00:00
c1c514ca70
Manually-resolved conflicts: .circleci/config.yml app/controllers/accounts_controller.rb app/controllers/auth/passwords_controller.rb app/controllers/statuses_controller.rb app/javascript/packs/public.js app/models/media_attachment.rb app/views/stream_entries/_content_spoiler.html.haml app/views/stream_entries/_media.html.haml config/locales/en.yml config/locales/ja.yml config/locales/pl.yml lib/mastodon/version.rb Some content from app/javascript/packs/public.js has been split to app/javascript/core/settings.js. Translation strings for glitch-soc's keyword mutes were dropped. Everything else was mostly “take both”.
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
// This file will be loaded on settings pages, regardless of theme.
|
|
|
|
const { length } = require('stringz');
|
|
const { delegate } = require('rails-ujs');
|
|
|
|
delegate(document, '#account_display_name', 'input', ({ target }) => {
|
|
const nameCounter = document.querySelector('.name-counter');
|
|
const name = document.querySelector('.card .display-name strong');
|
|
|
|
if (nameCounter) {
|
|
nameCounter.textContent = 30 - length(target.value);
|
|
}
|
|
|
|
if (name) {
|
|
name.innerHTML = emojify(target.value);
|
|
}
|
|
});
|
|
|
|
delegate(document, '#account_note', 'input', ({ target }) => {
|
|
const noteCounter = document.querySelector('.note-counter');
|
|
|
|
if (noteCounter) {
|
|
noteCounter.textContent = 160 - length(target.value);
|
|
}
|
|
});
|
|
|
|
delegate(document, '#account_avatar', 'change', ({ target }) => {
|
|
const avatar = document.querySelector('.card .avatar img');
|
|
const [file] = target.files || [];
|
|
const url = file ? URL.createObjectURL(file) : avatar.dataset.originalSrc;
|
|
|
|
avatar.src = url;
|
|
});
|
|
|
|
delegate(document, '#account_header', 'change', ({ target }) => {
|
|
const header = document.querySelector('.card .card__img img');
|
|
const [file] = target.files || [];
|
|
const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
|
|
|
|
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';
|
|
}
|
|
});
|