2017-12-04 02:26:40 -05:00
|
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
import ready from 'flavours/glitch/util/ready';
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-06-09 09:06:38 -04:00
|
|
|
function main() {
|
2017-07-17 18:19:02 -04:00
|
|
|
const IntlRelativeFormat = require('intl-relativeformat').default;
|
2017-12-04 02:26:40 -05:00
|
|
|
const emojify = require('flavours/glitch/util/emoji').default;
|
2017-11-21 01:13:37 -05:00
|
|
|
const { getLocale } = require('locales');
|
2017-07-17 18:19:02 -04:00
|
|
|
const { localeData } = getLocale();
|
2017-09-13 21:39:10 -04:00
|
|
|
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);
|
2016-12-18 13:47:11 -05:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
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);
|
2017-06-09 09:06:38 -04:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
[].forEach.call(document.querySelectorAll('.emojify'), (content) => {
|
|
|
|
content.innerHTML = emojify(content.innerHTML);
|
|
|
|
});
|
2016-12-18 13:47:11 -05:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
[].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;
|
|
|
|
});
|
2017-06-09 09:06:38 -04:00
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
[].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
|
|
|
|
2018-05-17 10:53:58 -04: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 09:58:36 -04:00
|
|
|
}
|
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
|
|
|
});
|