2017-12-04 07:26:40 +00:00
|
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
import ready from 'flavours/glitch/util/ready';
|
2017-09-09 14:23:44 +00:00
|
|
|
|
2017-06-09 13:06:38 +00:00
|
|
|
function main() {
|
2017-07-17 22:19:02 +00:00
|
|
|
const IntlRelativeFormat = require('intl-relativeformat').default;
|
2017-12-04 07:26:40 +00:00
|
|
|
const emojify = require('flavours/glitch/util/emoji').default;
|
2017-11-21 06:13:37 +00:00
|
|
|
const { getLocale } = require('locales');
|
2017-07-17 22:19:02 +00:00
|
|
|
const { localeData } = getLocale();
|
2017-09-14 01:39:10 +00:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2017-09-09 14:23:44 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
localeData.forEach(IntlRelativeFormat.__addLocaleData);
|
2016-12-18 18:47:11 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
ready(() => {
|
|
|
|
const locale = document.documentElement.lang;
|
2017-09-09 14:23:44 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
});
|
2017-09-09 14:23:44 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
const relativeFormat = new IntlRelativeFormat(locale);
|
2017-06-09 13:06:38 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('.emojify'), (content) => {
|
|
|
|
content.innerHTML = emojify(content.innerHTML);
|
|
|
|
});
|
2016-12-18 18:47:11 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('time.formatted'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
const formattedDate = dateTimeFormat.format(datetime);
|
2017-09-09 14:23:44 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
content.title = formattedDate;
|
|
|
|
content.textContent = formattedDate;
|
|
|
|
});
|
2017-06-09 13:06:38 +00:00
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
2017-09-09 14:23:44 +00:00
|
|
|
|
2017-08-25 15:21:16 +00:00
|
|
|
content.title = dateTimeFormat.format(datetime);
|
2017-07-19 11:35:22 +00:00
|
|
|
content.textContent = relativeFormat.format(datetime);
|
2017-07-17 22:19:02 +00:00
|
|
|
});
|
2017-08-30 08:23:43 +00: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 13:06:38 +00:00
|
|
|
|
2018-05-17 14:53:58 +00:00
|
|
|
const reactComponents = document.querySelectorAll('[data-component]');
|
|
|
|
if (reactComponents.length > 0) {
|
|
|
|
import(/* webpackChunkName: "containers/media_container" */ 'flavours/glitch/containers/media_container')
|
|
|
|
.then(({ default: MediaContainer }) => {
|
|
|
|
const content = document.createElement('div');
|
|
|
|
ReactDOM.render(<MediaContainer locale={locale} components={reactComponents} />, content);
|
|
|
|
document.body.appendChild(content);
|
|
|
|
})
|
|
|
|
.catch(error => console.error(error));
|
2018-04-20 13:58:36 +00:00
|
|
|
}
|
2017-05-25 12:09:25 +00:00
|
|
|
});
|
|
|
|
}
|
2017-05-20 16:15:43 +00:00
|
|
|
|
2017-05-30 13:11:15 +00:00
|
|
|
loadPolyfills().then(main).catch(error => {
|
2017-06-11 08:42:42 +00:00
|
|
|
console.error(error);
|
2017-05-30 13:11:15 +00:00
|
|
|
});
|