2017-12-04 16:26:40 +09:00
|
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
import ready from 'flavours/glitch/util/ready';
|
2019-11-04 21:03:09 +09:00
|
|
|
import loadKeyboardExtensions from 'flavours/glitch/util/load_keyboard_extensions';
|
2017-09-09 23:23:44 +09:00
|
|
|
|
2017-06-09 22:06:38 +09:00
|
|
|
function main() {
|
2019-01-10 20:24:02 +09:00
|
|
|
const IntlMessageFormat = require('intl-messageformat').default;
|
|
|
|
const { timeAgoString } = require('flavours/glitch/components/relative_timestamp');
|
2019-07-22 01:10:40 +09:00
|
|
|
const { delegate } = require('rails-ujs');
|
2017-12-04 16:26:40 +09:00
|
|
|
const emojify = require('flavours/glitch/util/emoji').default;
|
2017-11-21 15:13:37 +09:00
|
|
|
const { getLocale } = require('locales');
|
2019-01-10 20:24:02 +09:00
|
|
|
const { messages } = getLocale();
|
2017-09-14 10:39:10 +09:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2019-01-10 20:24:02 +09:00
|
|
|
const Rellax = require('rellax');
|
2019-09-18 22:41:50 +09:00
|
|
|
const { createBrowserHistory } = require('history');
|
2016-12-19 03:47:11 +09:00
|
|
|
|
2019-01-11 04:28:24 +09:00
|
|
|
const scrollToDetailedStatus = () => {
|
2019-09-18 22:41:50 +09:00
|
|
|
const history = createBrowserHistory();
|
2019-01-11 04:28:24 +09:00
|
|
|
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 });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-22 01:10:40 +09:00
|
|
|
const getEmojiAnimationHandler = (swapTo) => {
|
|
|
|
return ({ target }) => {
|
|
|
|
target.src = target.getAttribute(swapTo);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-18 07:19:02 +09:00
|
|
|
ready(() => {
|
|
|
|
const locale = document.documentElement.lang;
|
2017-09-09 23:23:44 +09:00
|
|
|
|
2017-07-18 07:19:02 +09:00
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
});
|
2017-09-09 23:23:44 +09:00
|
|
|
|
2017-07-18 07:19:02 +09:00
|
|
|
[].forEach.call(document.querySelectorAll('.emojify'), (content) => {
|
|
|
|
content.innerHTML = emojify(content.innerHTML);
|
|
|
|
});
|
2016-12-19 03:47:11 +09:00
|
|
|
|
2017-07-18 07:19:02 +09:00
|
|
|
[].forEach.call(document.querySelectorAll('time.formatted'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
const formattedDate = dateTimeFormat.format(datetime);
|
2017-09-09 23:23:44 +09:00
|
|
|
|
2017-07-18 07:19:02 +09:00
|
|
|
content.title = formattedDate;
|
|
|
|
content.textContent = formattedDate;
|
|
|
|
});
|
2017-06-09 22:06:38 +09:00
|
|
|
|
2017-07-18 07:19:02 +09:00
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
2019-01-10 20:24:02 +09:00
|
|
|
const now = new Date();
|
2017-09-09 23:23:44 +09:00
|
|
|
|
2017-08-26 00:21:16 +09:00
|
|
|
content.title = dateTimeFormat.format(datetime);
|
2019-01-10 20:24:02 +09: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),
|
2020-02-04 01:48:56 +09:00
|
|
|
}, datetime, now, now.getFullYear(), content.getAttribute('datetime').includes('T'));
|
2017-08-30 17:23:43 +09:00
|
|
|
});
|
2017-06-09 22:06:38 +09:00
|
|
|
|
2018-05-17 23:53:58 +09:00
|
|
|
const reactComponents = document.querySelectorAll('[data-component]');
|
|
|
|
if (reactComponents.length > 0) {
|
|
|
|
import(/* webpackChunkName: "containers/media_container" */ 'flavours/glitch/containers/media_container')
|
|
|
|
.then(({ default: MediaContainer }) => {
|
2019-01-13 22:42:50 +09:00
|
|
|
[].forEach.call(reactComponents, (component) => {
|
|
|
|
[].forEach.call(component.children, (child) => {
|
|
|
|
component.removeChild(child);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-05-17 23:53:58 +09:00
|
|
|
const content = document.createElement('div');
|
2019-01-10 20:24:02 +09:00
|
|
|
|
2018-05-17 23:53:58 +09:00
|
|
|
ReactDOM.render(<MediaContainer locale={locale} components={reactComponents} />, content);
|
|
|
|
document.body.appendChild(content);
|
2019-01-11 04:28:24 +09:00
|
|
|
scrollToDetailedStatus();
|
2018-05-17 23:53:58 +09:00
|
|
|
})
|
2019-01-11 04:28:24 +09:00
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
scrollToDetailedStatus();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
scrollToDetailedStatus();
|
2018-04-20 22:58:36 +09:00
|
|
|
}
|
2019-01-10 20:24:02 +09:00
|
|
|
|
|
|
|
const parallaxComponents = document.querySelectorAll('.parallax');
|
|
|
|
|
|
|
|
if (parallaxComponents.length > 0 ) {
|
|
|
|
new Rellax('.parallax', { speed: -1 });
|
|
|
|
}
|
2019-01-20 19:56:21 +09:00
|
|
|
|
2019-07-22 01:10:40 +09:00
|
|
|
delegate(document, '.custom-emoji', 'mouseover', getEmojiAnimationHandler('data-original'));
|
|
|
|
delegate(document, '.custom-emoji', 'mouseout', getEmojiAnimationHandler('data-static'));
|
2017-05-25 21:09:25 +09:00
|
|
|
});
|
2019-09-20 17:52:14 +09:00
|
|
|
|
|
|
|
delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
|
|
|
const target = document.querySelector('.sidebar ul');
|
|
|
|
|
|
|
|
if (target.style.display === 'block') {
|
|
|
|
target.style.display = 'none';
|
|
|
|
} else {
|
|
|
|
target.style.display = 'block';
|
|
|
|
}
|
|
|
|
});
|
2017-05-25 21:09:25 +09:00
|
|
|
}
|
2017-05-21 01:15:43 +09:00
|
|
|
|
2019-11-04 21:03:09 +09:00
|
|
|
loadPolyfills()
|
|
|
|
.then(main)
|
|
|
|
.then(loadKeyboardExtensions)
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|