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() {
|
2019-01-10 06:24:02 -05:00
|
|
|
const IntlMessageFormat = require('intl-messageformat').default;
|
|
|
|
const { timeAgoString } = require('flavours/glitch/components/relative_timestamp');
|
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');
|
2019-01-10 06:24:02 -05:00
|
|
|
const { messages } = getLocale();
|
2017-09-13 21:39:10 -04:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2019-01-10 06:24:02 -05:00
|
|
|
const Rellax = require('rellax');
|
|
|
|
const createHistory = require('history').createBrowserHistory;
|
2016-12-18 13:47:11 -05:00
|
|
|
|
2019-01-10 14:28:24 -05:00
|
|
|
const scrollToDetailedStatus = () => {
|
|
|
|
const history = createHistory();
|
|
|
|
const detailedStatuses = document.querySelectorAll('.public-layout .detailed-status');
|
|
|
|
const location = history.location;
|
|
|
|
|
|
|
|
if (detailedStatuses.length === 1 && (!location.state || !location.state.scrolledToDetailedStatus)) {
|
|
|
|
detailedStatuses[0].scrollIntoView();
|
|
|
|
history.replace(location.pathname, { ...location.state, scrolledToDetailedStatus: true });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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
|
|
|
[].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'));
|
2019-01-10 06:24:02 -05:00
|
|
|
const now = new Date();
|
2017-09-09 10:23:44 -04:00
|
|
|
|
2017-08-25 11:21:16 -04:00
|
|
|
content.title = dateTimeFormat.format(datetime);
|
2019-01-10 06:24:02 -05:00
|
|
|
content.textContent = timeAgoString({
|
|
|
|
formatMessage: ({ id, defaultMessage }, values) => (new IntlMessageFormat(messages[id] || defaultMessage, locale)).format(values),
|
|
|
|
formatDate: (date, options) => (new Intl.DateTimeFormat(locale, options)).format(date),
|
|
|
|
}, datetime, now, now.getFullYear());
|
2017-08-30 04:23:43 -04:00
|
|
|
});
|
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');
|
2019-01-10 06:24:02 -05:00
|
|
|
|
2018-05-17 10:53:58 -04:00
|
|
|
ReactDOM.render(<MediaContainer locale={locale} components={reactComponents} />, content);
|
|
|
|
document.body.appendChild(content);
|
2019-01-10 14:28:24 -05:00
|
|
|
scrollToDetailedStatus();
|
2018-05-17 10:53:58 -04:00
|
|
|
})
|
2019-01-10 14:28:24 -05:00
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
scrollToDetailedStatus();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
scrollToDetailedStatus();
|
2018-04-20 09:58:36 -04:00
|
|
|
}
|
2019-01-10 06:24:02 -05:00
|
|
|
|
|
|
|
const parallaxComponents = document.querySelectorAll('.parallax');
|
|
|
|
|
|
|
|
if (parallaxComponents.length > 0 ) {
|
|
|
|
new Rellax('.parallax', { speed: -1 });
|
|
|
|
}
|
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
|
|
|
});
|