2017-04-25 11:37:51 -04:00
|
|
|
import { length } from 'stringz';
|
2017-05-25 08:09:25 -04:00
|
|
|
import IntlRelativeFormat from 'intl-relativeformat';
|
2017-05-09 08:50:43 -04:00
|
|
|
import { delegate } from 'rails-ujs';
|
2017-05-30 09:13:04 -04:00
|
|
|
import emojify from '../mastodon/emoji';
|
|
|
|
import { getLocale } from '../mastodon/locales';
|
2017-05-30 09:11:15 -04:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2016-12-18 09:20:39 -05:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
require.context('../images/', true);
|
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
const { localeData } = getLocale();
|
|
|
|
localeData.forEach(IntlRelativeFormat.__addLocaleData);
|
2017-05-07 09:22:54 -04:00
|
|
|
|
2017-06-09 09:06:38 -04:00
|
|
|
function loaded() {
|
2017-05-25 08:09:25 -04:00
|
|
|
const locale = document.documentElement.lang;
|
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
2017-05-20 12:15:43 -04:00
|
|
|
});
|
2017-05-25 08:09:25 -04:00
|
|
|
const relativeFormat = new IntlRelativeFormat(locale);
|
2016-12-18 13:47:11 -05:00
|
|
|
|
2017-06-09 09:06:38 -04:00
|
|
|
[].forEach.call(document.querySelectorAll('.emojify'), (content) => {
|
|
|
|
content.innerHTML = emojify(content.innerHTML);
|
|
|
|
});
|
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('time.formatted'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
const formattedDate = dateTimeFormat.format(datetime);
|
|
|
|
content.title = formattedDate;
|
|
|
|
content.textContent = formattedDate;
|
2016-12-18 13:47:11 -05:00
|
|
|
});
|
|
|
|
|
2017-06-09 09:06:38 -04:00
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
content.textContent = relativeFormat.format(datetime);;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
if (['interactive', 'complete'].includes(document.readyState)) {
|
|
|
|
loaded();
|
|
|
|
} else {
|
|
|
|
document.addEventListener('DOMContentLoaded', loaded);
|
|
|
|
}
|
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
delegate(document, '.video-player video', 'click', ({ target }) => {
|
|
|
|
if (target.paused) {
|
|
|
|
target.play();
|
|
|
|
} else {
|
|
|
|
target.pause();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '.media-spoiler', 'click', ({ target }) => {
|
|
|
|
target.style.display = 'none';
|
|
|
|
});
|
2016-12-20 18:13:13 -05:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
delegate(document, '.webapp-btn', 'click', ({ target, button }) => {
|
|
|
|
if (button !== 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
window.location.href = target.href;
|
|
|
|
return false;
|
|
|
|
});
|
2017-03-31 07:54:36 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
delegate(document, '.status__content__spoiler-link', 'click', ({ target }) => {
|
|
|
|
const contentEl = target.parentNode.parentNode.querySelector('.e-content');
|
|
|
|
if (contentEl.style.display === 'block') {
|
|
|
|
contentEl.style.display = 'none';
|
|
|
|
target.parentNode.style.marginBottom = 0;
|
|
|
|
} else {
|
|
|
|
contentEl.style.display = 'block';
|
|
|
|
target.parentNode.style.marginBottom = null;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
2017-04-21 12:17:21 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
delegate(document, '.account_display_name', 'input', ({ target }) => {
|
|
|
|
const nameCounter = document.querySelector('.name-counter');
|
|
|
|
if (nameCounter) {
|
|
|
|
nameCounter.textContent = 30 - length(target.value);
|
|
|
|
}
|
|
|
|
});
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
delegate(document, '.account_note', 'input', ({ target }) => {
|
|
|
|
const noteCounter = document.querySelector('.note-counter');
|
|
|
|
if (noteCounter) {
|
2017-05-15 22:25:53 -04:00
|
|
|
noteCounter.textContent = 500 - length(target.value);
|
2017-05-25 08:09:25 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-05-20 12:15:43 -04:00
|
|
|
|
2017-05-30 09:11:15 -04:00
|
|
|
loadPolyfills().then(main).catch(error => {
|
2017-06-11 04:42:42 -04:00
|
|
|
console.error(error);
|
2017-05-30 09:11:15 -04:00
|
|
|
});
|