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