2017-05-30 09:11:15 -04:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2017-09-09 10:23:44 -04:00
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
|
|
|
window.addEventListener('message', e => {
|
|
|
|
const data = e.data || {};
|
|
|
|
|
|
|
|
if (!window.parent || data.type !== 'setHeight') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ready(() => {
|
|
|
|
window.parent.postMessage({
|
|
|
|
type: 'setHeight',
|
|
|
|
id: data.id,
|
|
|
|
height: document.getElementsByTagName('html')[0].scrollHeight,
|
|
|
|
}, '*');
|
|
|
|
});
|
|
|
|
});
|
2017-06-09 09:06:38 -04:00
|
|
|
|
|
|
|
function main() {
|
2017-07-17 18:19:02 -04:00
|
|
|
const { length } = require('stringz');
|
|
|
|
const IntlRelativeFormat = require('intl-relativeformat').default;
|
|
|
|
const { delegate } = require('rails-ujs');
|
2017-10-05 21:42:34 -04:00
|
|
|
const emojify = require('../mastodon/features/emoji/emoji').default;
|
2017-07-17 18:19:02 -04:00
|
|
|
const { getLocale } = require('../mastodon/locales');
|
|
|
|
const { localeData } = getLocale();
|
2017-09-13 21:39:10 -04:00
|
|
|
const VideoContainer = require('../mastodon/containers/video_container').default;
|
|
|
|
const MediaGalleryContainer = require('../mastodon/containers/media_gallery_container').default;
|
|
|
|
const CardContainer = require('../mastodon/containers/card_container').default;
|
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
localeData.forEach(IntlRelativeFormat.__addLocaleData);
|
|
|
|
|
|
|
|
ready(() => {
|
|
|
|
const locale = document.documentElement.lang;
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
});
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
const relativeFormat = new IntlRelativeFormat(locale);
|
|
|
|
|
|
|
|
[].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);
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
content.title = formattedDate;
|
|
|
|
content.textContent = formattedDate;
|
|
|
|
});
|
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-08-25 11:21:16 -04:00
|
|
|
content.title = dateTimeFormat.format(datetime);
|
2017-07-19 07:35:22 -04:00
|
|
|
content.textContent = relativeFormat.format(datetime);
|
2017-07-17 18:19:02 -04:00
|
|
|
});
|
2017-08-30 04:23:43 -04:00
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('.logo-button'), (content) => {
|
|
|
|
content.addEventListener('click', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
window.open(e.target.href, 'mastodon-intent', 'width=400,height=400,resizable=no,menubar=no,status=no,scrollbars=yes');
|
|
|
|
});
|
|
|
|
});
|
2017-06-09 09:06:38 -04:00
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
[].forEach.call(document.querySelectorAll('[data-component="Video"]'), (content) => {
|
|
|
|
const props = JSON.parse(content.getAttribute('data-props'));
|
|
|
|
ReactDOM.render(<VideoContainer locale={locale} {...props} />, content);
|
|
|
|
});
|
2017-05-25 08:09:25 -04:00
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
[].forEach.call(document.querySelectorAll('[data-component="MediaGallery"]'), (content) => {
|
|
|
|
const props = JSON.parse(content.getAttribute('data-props'));
|
|
|
|
ReactDOM.render(<MediaGalleryContainer locale={locale} {...props} />, content);
|
|
|
|
});
|
2017-07-06 15:31:03 -04:00
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
[].forEach.call(document.querySelectorAll('[data-component="Card"]'), (content) => {
|
|
|
|
const props = JSON.parse(content.getAttribute('data-props'));
|
|
|
|
ReactDOM.render(<CardContainer locale={locale} {...props} />, content);
|
|
|
|
});
|
2017-05-25 08:09:25 -04:00
|
|
|
});
|
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');
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
if (contentEl.style.display === 'block') {
|
|
|
|
contentEl.style.display = 'none';
|
|
|
|
target.parentNode.style.marginBottom = 0;
|
|
|
|
} else {
|
|
|
|
contentEl.style.display = 'block';
|
|
|
|
target.parentNode.style.marginBottom = null;
|
|
|
|
}
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
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');
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
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');
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-05-25 08:09:25 -04:00
|
|
|
if (noteCounter) {
|
|
|
|
noteCounter.textContent = 160 - length(target.value);
|
|
|
|
}
|
|
|
|
});
|
2017-07-21 06:47:16 -04:00
|
|
|
|
|
|
|
delegate(document, '#account_avatar', 'change', ({ target }) => {
|
|
|
|
const avatar = document.querySelector('.card.compact .avatar img');
|
|
|
|
const [file] = target.files || [];
|
2017-09-11 10:19:54 -04:00
|
|
|
const url = file ? URL.createObjectURL(file) : avatar.dataset.originalSrc;
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-07-21 06:47:16 -04:00
|
|
|
avatar.src = url;
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '#account_header', 'change', ({ target }) => {
|
|
|
|
const header = document.querySelector('.card.compact');
|
|
|
|
const [file] = target.files || [];
|
2017-09-11 10:19:54 -04:00
|
|
|
const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-07-21 06:47:16 -04:00
|
|
|
header.style.backgroundImage = `url(${url})`;
|
|
|
|
});
|
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
|
|
|
});
|