2017-11-21 06:13:37 +00:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
|
|
|
import ready from '../mastodon/ready';
|
2018-07-14 01:56:41 +00:00
|
|
|
import { start } from '../mastodon/common';
|
|
|
|
|
|
|
|
start();
|
2017-11-21 06:13:37 +00:00
|
|
|
|
|
|
|
function main() {
|
2018-07-28 17:25:33 +00:00
|
|
|
const IntlMessageFormat = require('intl-messageformat').default;
|
|
|
|
const { timeAgoString } = require('../mastodon/components/relative_timestamp');
|
2017-07-17 22:19:02 +00:00
|
|
|
const { delegate } = require('rails-ujs');
|
2017-11-21 06:13:37 +00:00
|
|
|
const emojify = require('../mastodon/features/emoji/emoji').default;
|
|
|
|
const { getLocale } = require('../mastodon/locales');
|
2018-07-28 17:25:33 +00:00
|
|
|
const { messages } = getLocale();
|
2017-11-21 06:13:37 +00:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2018-07-28 17:25:33 +00:00
|
|
|
const Rellax = require('rellax');
|
2018-08-06 13:16:02 +00:00
|
|
|
const createHistory = require('history').createBrowserHistory;
|
2017-11-21 06:13:37 +00:00
|
|
|
|
|
|
|
ready(() => {
|
|
|
|
const locale = document.documentElement.lang;
|
|
|
|
|
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
});
|
|
|
|
|
|
|
|
[].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;
|
|
|
|
});
|
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
2018-07-28 17:25:33 +00:00
|
|
|
const now = new Date();
|
2017-11-21 06:13:37 +00:00
|
|
|
|
|
|
|
content.title = dateTimeFormat.format(datetime);
|
2018-07-28 17:25:33 +00: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),
|
2018-11-26 14:53:27 +00:00
|
|
|
}, datetime, now, now.getFullYear());
|
2017-11-21 06:13:37 +00:00
|
|
|
});
|
|
|
|
|
2018-05-12 13:30:06 +00:00
|
|
|
const reactComponents = document.querySelectorAll('[data-component]');
|
2018-09-18 14:45:58 +00:00
|
|
|
|
2018-05-12 13:30:06 +00:00
|
|
|
if (reactComponents.length > 0) {
|
|
|
|
import(/* webpackChunkName: "containers/media_container" */ '../mastodon/containers/media_container')
|
|
|
|
.then(({ default: MediaContainer }) => {
|
|
|
|
const content = document.createElement('div');
|
2018-03-24 11:52:26 +00:00
|
|
|
|
2018-05-12 13:30:06 +00:00
|
|
|
ReactDOM.render(<MediaContainer locale={locale} components={reactComponents} />, content);
|
|
|
|
document.body.appendChild(content);
|
|
|
|
})
|
|
|
|
.catch(error => console.error(error));
|
2018-03-24 11:52:26 +00:00
|
|
|
}
|
2018-07-28 17:25:33 +00:00
|
|
|
|
2018-08-25 23:19:13 +00:00
|
|
|
const parallaxComponents = document.querySelectorAll('.parallax');
|
2018-09-18 14:45:58 +00:00
|
|
|
|
2018-08-25 23:19:13 +00:00
|
|
|
if (parallaxComponents.length > 0 ) {
|
|
|
|
new Rellax('.parallax', { speed: -1 });
|
|
|
|
}
|
2018-08-06 13:16:02 +00:00
|
|
|
|
|
|
|
const history = createHistory();
|
|
|
|
const detailedStatuses = document.querySelectorAll('.public-layout .detailed-status');
|
|
|
|
const location = history.location;
|
2018-09-18 14:45:58 +00:00
|
|
|
|
2018-08-06 13:16:02 +00:00
|
|
|
if (detailedStatuses.length === 1 && (!location.state || !location.state.scrolledToDetailedStatus)) {
|
|
|
|
detailedStatuses[0].scrollIntoView();
|
|
|
|
history.replace(location.pathname, { ...location.state, scrolledToDetailedStatus: true });
|
|
|
|
}
|
2017-11-21 06:13:37 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|