mastodon/app/javascript/core/settings.js

44 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-11-18 23:12:52 +00:00
// This file will be loaded on settings pages, regardless of theme.
2017-11-21 06:13:37 +00:00
const { length } = require('stringz');
const { delegate } = require('rails-ujs');
2017-11-18 23:12:52 +00:00
2017-12-04 07:26:40 +00:00
import { processBio } from 'flavours/glitch/util/bio_metadata';
2017-12-01 03:29:47 +00:00
2017-11-21 06:13:37 +00:00
delegate(document, '.account_display_name', 'input', ({ target }) => {
const nameCounter = document.querySelector('.name-counter');
2017-11-18 23:12:52 +00:00
2017-11-21 06:13:37 +00:00
if (nameCounter) {
nameCounter.textContent = 30 - length(target.value);
}
});
2017-11-18 23:12:52 +00:00
2017-11-21 06:13:37 +00:00
delegate(document, '.account_note', 'input', ({ target }) => {
const noteCounter = document.querySelector('.note-counter');
2017-11-18 23:12:52 +00:00
2017-11-21 06:13:37 +00:00
if (noteCounter) {
const noteWithoutMetadata = processBio(target.value).text;
noteCounter.textContent = 500 - length(noteWithoutMetadata);
}
});
2017-11-18 23:12:52 +00:00
2017-11-21 06:13:37 +00:00
delegate(document, '#account_avatar', 'change', ({ target }) => {
const avatar = document.querySelector('.card.compact .avatar img');
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
2017-11-21 06:13:37 +00:00
delegate(document, '#account_header', 'change', ({ target }) => {
const header = document.querySelector('.card.compact');
const [file] = target.files || [];
const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
2017-11-18 23:12:52 +00:00
2017-11-21 06:13:37 +00:00
header.style.backgroundImage = `url(${url})`;
2017-11-18 23:12:52 +00:00
});
2017-12-01 03:29:47 +00:00
delegate(document, '#user_setting_theme', 'change', ({ target }) => {
target.form.submit();
});