2018-12-07 16:42:22 +01:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2017-05-30 15:11:15 +02:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2017-09-09 16:23:44 +02:00
|
|
|
import ready from '../mastodon/ready';
|
2018-07-14 03:56:41 +02:00
|
|
|
import { start } from '../mastodon/common';
|
|
|
|
|
|
|
|
start();
|
2017-09-09 16:23:44 +02:00
|
|
|
|
|
|
|
window.addEventListener('message', e => {
|
|
|
|
const data = e.data || {};
|
|
|
|
|
|
|
|
if (!window.parent || data.type !== 'setHeight') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ready(() => {
|
|
|
|
window.parent.postMessage({
|
|
|
|
type: 'setHeight',
|
|
|
|
id: data.id,
|
|
|
|
height: document.getElementsByTagName('html')[0].scrollHeight,
|
|
|
|
}, '*');
|
|
|
|
});
|
|
|
|
});
|
2017-06-09 15:06:38 +02:00
|
|
|
|
|
|
|
function main() {
|
2018-07-28 19:25:33 +02:00
|
|
|
const IntlMessageFormat = require('intl-messageformat').default;
|
|
|
|
const { timeAgoString } = require('../mastodon/components/relative_timestamp');
|
2017-07-18 00:19:02 +02:00
|
|
|
const { delegate } = require('rails-ujs');
|
2017-10-06 03:42:34 +02:00
|
|
|
const emojify = require('../mastodon/features/emoji/emoji').default;
|
2017-07-18 00:19:02 +02:00
|
|
|
const { getLocale } = require('../mastodon/locales');
|
2018-07-28 19:25:33 +02:00
|
|
|
const { messages } = getLocale();
|
2017-09-14 03:39:10 +02:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2018-07-28 19:25:33 +02:00
|
|
|
const Rellax = require('rellax');
|
2018-08-06 15:16:02 +02:00
|
|
|
const createHistory = require('history').createBrowserHistory;
|
2017-07-18 00:19:02 +02:00
|
|
|
|
2019-01-10 15:13:30 +01: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-18 00:19:02 +02:00
|
|
|
ready(() => {
|
|
|
|
const locale = document.documentElement.lang;
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-07-18 00:19:02 +02:00
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
});
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-07-18 00:19:02 +02:00
|
|
|
[].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);
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-07-18 00:19:02 +02:00
|
|
|
content.title = formattedDate;
|
|
|
|
content.textContent = formattedDate;
|
|
|
|
});
|
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
2018-07-28 19:25:33 +02:00
|
|
|
const now = new Date();
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-08-25 17:21:16 +02:00
|
|
|
content.title = dateTimeFormat.format(datetime);
|
2018-07-28 19:25:33 +02: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 15:53:27 +01:00
|
|
|
}, datetime, now, now.getFullYear());
|
2017-07-18 00:19:02 +02:00
|
|
|
});
|
2017-08-30 10:23:43 +02:00
|
|
|
|
2018-05-12 15:30:06 +02:00
|
|
|
const reactComponents = document.querySelectorAll('[data-component]');
|
2018-09-18 16:45:58 +02:00
|
|
|
|
2018-05-12 15:30:06 +02:00
|
|
|
if (reactComponents.length > 0) {
|
|
|
|
import(/* webpackChunkName: "containers/media_container" */ '../mastodon/containers/media_container')
|
|
|
|
.then(({ default: MediaContainer }) => {
|
2019-01-13 10:23:54 +01:00
|
|
|
[].forEach.call(reactComponents, (component) => {
|
|
|
|
[].forEach.call(component.children, (child) => {
|
|
|
|
component.removeChild(child);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-05-12 15:30:06 +02:00
|
|
|
const content = document.createElement('div');
|
2018-03-24 12:52:26 +01:00
|
|
|
|
2018-05-12 15:30:06 +02:00
|
|
|
ReactDOM.render(<MediaContainer locale={locale} components={reactComponents} />, content);
|
|
|
|
document.body.appendChild(content);
|
2019-01-10 15:13:30 +01:00
|
|
|
scrollToDetailedStatus();
|
2018-05-12 15:30:06 +02:00
|
|
|
})
|
2019-01-10 15:13:30 +01:00
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
scrollToDetailedStatus();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
scrollToDetailedStatus();
|
2018-03-24 12:52:26 +01:00
|
|
|
}
|
2018-07-28 19:25:33 +02:00
|
|
|
|
2018-08-26 01:19:13 +02:00
|
|
|
const parallaxComponents = document.querySelectorAll('.parallax');
|
2018-09-18 16:45:58 +02:00
|
|
|
|
2018-08-26 01:19:13 +02:00
|
|
|
if (parallaxComponents.length > 0 ) {
|
|
|
|
new Rellax('.parallax', { speed: -1 });
|
|
|
|
}
|
2019-01-16 20:36:10 +01:00
|
|
|
|
|
|
|
if (document.body.classList.contains('with-modals')) {
|
|
|
|
const scrollbarWidth = window.innerWidth - document.documentElement.clientWidth;
|
|
|
|
const scrollbarWidthStyle = document.createElement('style');
|
|
|
|
scrollbarWidthStyle.id = 'scrollbar-width';
|
|
|
|
document.head.appendChild(scrollbarWidthStyle);
|
|
|
|
scrollbarWidthStyle.sheet.insertRule(`body.with-modals--active { margin-right: ${scrollbarWidth}px; }`, 0);
|
|
|
|
}
|
2017-05-25 14:09:25 +02:00
|
|
|
});
|
2016-12-21 00:13:13 +01:00
|
|
|
|
2017-05-25 14:09:25 +02:00
|
|
|
delegate(document, '.webapp-btn', 'click', ({ target, button }) => {
|
|
|
|
if (button !== 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
window.location.href = target.href;
|
|
|
|
return false;
|
|
|
|
});
|
2017-03-31 13:54:36 +02:00
|
|
|
|
2017-05-25 14:09:25 +02:00
|
|
|
delegate(document, '.status__content__spoiler-link', 'click', ({ target }) => {
|
|
|
|
const contentEl = target.parentNode.parentNode.querySelector('.e-content');
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-05-25 14:09:25 +02:00
|
|
|
if (contentEl.style.display === 'block') {
|
|
|
|
contentEl.style.display = 'none';
|
|
|
|
target.parentNode.style.marginBottom = 0;
|
|
|
|
} else {
|
|
|
|
contentEl.style.display = 'block';
|
|
|
|
target.parentNode.style.marginBottom = null;
|
|
|
|
}
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-05-25 14:09:25 +02:00
|
|
|
return false;
|
|
|
|
});
|
2017-04-21 18:17:21 +02:00
|
|
|
|
2018-08-18 03:03:12 +02:00
|
|
|
delegate(document, '.modal-button', 'click', e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
let href;
|
|
|
|
|
|
|
|
if (e.target.nodeName !== 'A') {
|
|
|
|
href = e.target.parentNode.href;
|
|
|
|
} else {
|
|
|
|
href = e.target.href;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.open(href, 'mastodon-intent', 'width=445,height=600,resizable=no,menubar=no,status=no,scrollbars=yes');
|
|
|
|
});
|
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
delegate(document, '#account_display_name', 'input', ({ target }) => {
|
2018-10-26 01:55:24 +02:00
|
|
|
const name = document.querySelector('.card .display-name strong');
|
2018-07-28 19:25:33 +02:00
|
|
|
if (name) {
|
2018-12-07 16:42:22 +01:00
|
|
|
if (target.value) {
|
|
|
|
name.innerHTML = emojify(escapeTextContentForBrowser(target.value));
|
|
|
|
} else {
|
|
|
|
name.textContent = document.querySelector('#default_account_display_name').textContent;
|
|
|
|
}
|
2018-07-28 19:25:33 +02:00
|
|
|
}
|
2017-05-25 14:09:25 +02:00
|
|
|
});
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-07-21 12:47:16 +02:00
|
|
|
delegate(document, '#account_avatar', 'change', ({ target }) => {
|
2018-07-28 19:25:33 +02:00
|
|
|
const avatar = document.querySelector('.card .avatar img');
|
2017-07-21 12:47:16 +02:00
|
|
|
const [file] = target.files || [];
|
2017-09-11 16:19:54 +02:00
|
|
|
const url = file ? URL.createObjectURL(file) : avatar.dataset.originalSrc;
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2017-07-21 12:47:16 +02:00
|
|
|
avatar.src = url;
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '#account_header', 'change', ({ target }) => {
|
2018-07-28 19:25:33 +02:00
|
|
|
const header = document.querySelector('.card .card__img img');
|
2017-07-21 12:47:16 +02:00
|
|
|
const [file] = target.files || [];
|
2017-09-11 16:19:54 +02:00
|
|
|
const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
|
2017-09-09 16:23:44 +02:00
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
header.src = url;
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '#account_locked', 'change', ({ target }) => {
|
|
|
|
const lock = document.querySelector('.card .display-name i');
|
|
|
|
|
|
|
|
if (target.checked) {
|
|
|
|
lock.style.display = 'inline';
|
|
|
|
} else {
|
|
|
|
lock.style.display = 'none';
|
|
|
|
}
|
2017-07-21 12:47:16 +02:00
|
|
|
});
|
2018-09-18 16:45:58 +02:00
|
|
|
|
|
|
|
delegate(document, '.input-copy input', 'click', ({ target }) => {
|
2019-04-03 17:54:54 +02:00
|
|
|
target.focus();
|
2018-09-18 16:45:58 +02:00
|
|
|
target.select();
|
2019-04-03 17:54:54 +02:00
|
|
|
target.setSelectionRange(0, target.value.length);
|
2018-09-18 16:45:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '.input-copy button', 'click', ({ target }) => {
|
2018-10-09 19:36:13 +02:00
|
|
|
const input = target.parentNode.querySelector('.input-copy__wrapper input');
|
2018-09-18 16:45:58 +02:00
|
|
|
|
2019-04-03 17:54:54 +02:00
|
|
|
const oldReadOnly = input.readonly;
|
|
|
|
|
|
|
|
input.readonly = false;
|
2018-09-18 16:45:58 +02:00
|
|
|
input.focus();
|
|
|
|
input.select();
|
2019-04-03 17:54:54 +02:00
|
|
|
input.setSelectionRange(0, input.value.length);
|
2018-09-18 16:45:58 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
if (document.execCommand('copy')) {
|
|
|
|
input.blur();
|
|
|
|
target.parentNode.classList.add('copied');
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
target.parentNode.classList.remove('copied');
|
|
|
|
}, 700);
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2019-04-03 17:54:54 +02:00
|
|
|
|
|
|
|
input.readonly = oldReadOnly;
|
2018-09-18 16:45:58 +02:00
|
|
|
});
|
2017-05-25 14:09:25 +02:00
|
|
|
}
|
2017-05-20 18:15:43 +02:00
|
|
|
|
2017-05-30 15:11:15 +02:00
|
|
|
loadPolyfills().then(main).catch(error => {
|
2017-06-11 10:42:42 +02:00
|
|
|
console.error(error);
|
2017-05-30 15:11:15 +02:00
|
|
|
});
|