2020-10-12 23:19:35 +00:00
|
|
|
import './public-path';
|
2023-05-09 01:08:47 +00:00
|
|
|
|
2023-05-28 13:54:31 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2023-05-09 12:55:35 +00:00
|
|
|
|
2023-05-31 21:43:39 +00:00
|
|
|
import { IntlMessageFormat } from 'intl-messageformat';
|
2023-05-23 15:15:17 +00:00
|
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
import Rails from '@rails/ujs';
|
2023-04-16 00:10:48 +00:00
|
|
|
import axios from 'axios';
|
|
|
|
import { throttle } from 'lodash';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
|
|
|
import { start } from '../mastodon/common';
|
2023-05-09 01:08:47 +00:00
|
|
|
import { timeAgoString } from '../mastodon/components/relative_timestamp';
|
2023-05-09 14:42:02 +00:00
|
|
|
import emojify from '../mastodon/features/emoji/emoji';
|
2023-05-23 15:15:17 +00:00
|
|
|
import loadKeyboardExtensions from '../mastodon/load_keyboard_extensions';
|
2023-06-02 13:00:27 +00:00
|
|
|
import { loadLocale, getLocale } from '../mastodon/locales';
|
2023-05-23 15:15:17 +00:00
|
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
|
|
|
import 'cocoon-js-vanilla';
|
2023-05-09 01:08:47 +00:00
|
|
|
|
|
|
|
start();
|
2023-04-16 00:10:48 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
usernameTaken: { id: 'username.taken', defaultMessage: 'That username is taken. Try another' },
|
|
|
|
passwordExceedsLength: { id: 'password_confirmation.exceeds_maxlength', defaultMessage: 'Password confirmation exceeds the maximum password length' },
|
|
|
|
passwordDoesNotMatch: { id: 'password_confirmation.mismatching', defaultMessage: 'Password confirmation does not match' },
|
|
|
|
});
|
2018-07-14 01:56:41 +00:00
|
|
|
|
2023-05-09 01:08:47 +00:00
|
|
|
function loaded() {
|
2023-05-31 21:43:39 +00:00
|
|
|
const { messages: localeData } = getLocale();
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const locale = document.documentElement.lang;
|
|
|
|
|
|
|
|
const dateTimeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
});
|
2023-04-16 00:10:48 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const dateFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'short',
|
|
|
|
day: 'numeric',
|
|
|
|
timeFormat: false,
|
|
|
|
});
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const timeFormat = new Intl.DateTimeFormat(locale, {
|
|
|
|
timeStyle: 'short',
|
|
|
|
hour12: false,
|
|
|
|
});
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const formatMessage = ({ id, defaultMessage }, values) => {
|
|
|
|
const messageFormat = new IntlMessageFormat(localeData[id] || defaultMessage, locale);
|
|
|
|
return messageFormat.format(values);
|
|
|
|
};
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('.emojify'), (content) => {
|
|
|
|
content.innerHTML = emojify(content.innerHTML);
|
|
|
|
});
|
2022-12-15 15:35:25 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('time.formatted'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
const formattedDate = dateTimeFormat.format(datetime);
|
2019-01-13 09:23:54 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
content.title = formattedDate;
|
|
|
|
content.textContent = formattedDate;
|
|
|
|
});
|
2018-03-24 11:52:26 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const isToday = date => {
|
|
|
|
const today = new Date();
|
|
|
|
|
|
|
|
return date.getDate() === today.getDate() &&
|
|
|
|
date.getMonth() === today.getMonth() &&
|
|
|
|
date.getFullYear() === today.getFullYear();
|
|
|
|
};
|
|
|
|
const todayFormat = new IntlMessageFormat(localeData['relative_format.today'] || 'Today at {time}', locale);
|
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('time.relative-formatted'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
|
|
|
|
let formattedContent;
|
|
|
|
|
|
|
|
if (isToday(datetime)) {
|
|
|
|
const formattedTime = timeFormat.format(datetime);
|
|
|
|
|
|
|
|
formattedContent = todayFormat.format({ time: formattedTime });
|
2019-01-10 14:13:30 +00:00
|
|
|
} else {
|
2023-08-18 10:06:08 +00:00
|
|
|
formattedContent = dateFormat.format(datetime);
|
2018-03-24 11:52:26 +00:00
|
|
|
}
|
2018-07-28 17:25:33 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
content.title = formattedContent;
|
|
|
|
content.textContent = formattedContent;
|
|
|
|
});
|
2023-04-16 00:10:48 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
|
|
|
|
const datetime = new Date(content.getAttribute('datetime'));
|
|
|
|
const now = new Date();
|
2023-04-16 00:10:48 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const timeGiven = content.getAttribute('datetime').includes('T');
|
|
|
|
content.title = timeGiven ? dateTimeFormat.format(datetime) : dateFormat.format(datetime);
|
|
|
|
content.textContent = timeAgoString({
|
|
|
|
formatMessage,
|
|
|
|
formatDate: (date, options) => (new Intl.DateTimeFormat(locale, options)).format(date),
|
|
|
|
}, datetime, now, now.getFullYear(), timeGiven);
|
2017-11-21 06:13:37 +00:00
|
|
|
});
|
2019-09-20 08:52:14 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const reactComponents = document.querySelectorAll('[data-component]');
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
if (reactComponents.length > 0) {
|
|
|
|
import(/* webpackChunkName: "containers/media_container" */ '../mastodon/containers/media_container')
|
|
|
|
.then(({ default: MediaContainer }) => {
|
|
|
|
[].forEach.call(reactComponents, (component) => {
|
|
|
|
[].forEach.call(component.children, (child) => {
|
|
|
|
component.removeChild(child);
|
|
|
|
});
|
2023-04-16 00:10:48 +00:00
|
|
|
});
|
2023-08-18 10:06:08 +00:00
|
|
|
|
|
|
|
const content = document.createElement('div');
|
|
|
|
|
|
|
|
const root = createRoot(content);
|
|
|
|
root.render(<MediaContainer locale={locale} components={reactComponents} />);
|
|
|
|
document.body.appendChild(content);
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '#user_account_attributes_username', 'input', throttle(({ target }) => {
|
2023-08-29 08:16:18 +00:00
|
|
|
if (target.value && target.value.length > 0) {
|
|
|
|
axios.get('/api/v1/accounts/lookup', { params: { acct: target.value } }).then(() => {
|
|
|
|
target.setCustomValidity(formatMessage(messages.usernameTaken));
|
2023-08-18 10:06:08 +00:00
|
|
|
}).catch(() => {
|
2023-08-29 08:16:18 +00:00
|
|
|
target.setCustomValidity('');
|
2023-08-18 10:06:08 +00:00
|
|
|
});
|
2022-10-30 00:43:15 +00:00
|
|
|
} else {
|
2023-08-29 08:16:18 +00:00
|
|
|
target.setCustomValidity('');
|
2022-10-30 00:43:15 +00:00
|
|
|
}
|
2023-08-18 10:06:08 +00:00
|
|
|
}, 500, { leading: false, trailing: true }));
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '#user_password,#user_password_confirmation', 'input', () => {
|
2023-08-18 10:06:08 +00:00
|
|
|
const password = document.getElementById('user_password');
|
|
|
|
const confirmation = document.getElementById('user_password_confirmation');
|
|
|
|
if (!confirmation) return;
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
if (confirmation.value && confirmation.value.length > password.maxLength) {
|
|
|
|
confirmation.setCustomValidity(formatMessage(messages.passwordExceedsLength));
|
|
|
|
} else if (password.value && password.value !== confirmation.value) {
|
|
|
|
confirmation.setCustomValidity(formatMessage(messages.passwordDoesNotMatch));
|
|
|
|
} else {
|
|
|
|
confirmation.setCustomValidity('');
|
2018-07-28 17:25:33 +00:00
|
|
|
}
|
2022-10-30 00:43:15 +00:00
|
|
|
});
|
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '.status__content__spoiler-link', 'click', function() {
|
2023-08-18 10:06:08 +00:00
|
|
|
const statusEl = this.parentNode.parentNode;
|
|
|
|
|
|
|
|
if (statusEl.dataset.spoiler === 'expanded') {
|
|
|
|
statusEl.dataset.spoiler = 'folded';
|
|
|
|
this.textContent = (new IntlMessageFormat(localeData['status.show_more'] || 'Show more', locale)).format();
|
|
|
|
} else {
|
|
|
|
statusEl.dataset.spoiler = 'expanded';
|
|
|
|
this.textContent = (new IntlMessageFormat(localeData['status.show_less'] || 'Show less', locale)).format();
|
2022-10-30 00:43:15 +00:00
|
|
|
}
|
2023-08-18 10:06:08 +00:00
|
|
|
|
|
|
|
return false;
|
2019-09-20 08:52:14 +00:00
|
|
|
});
|
2020-12-10 05:27:26 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('.status__content__spoiler-link'), (spoilerLink) => {
|
|
|
|
const statusEl = spoilerLink.parentNode.parentNode;
|
|
|
|
const message = (statusEl.dataset.spoiler === 'expanded') ? (localeData['status.show_less'] || 'Show less') : (localeData['status.show_more'] || 'Show more');
|
|
|
|
spoilerLink.textContent = (new IntlMessageFormat(message, locale)).format();
|
2020-12-10 05:27:26 +00:00
|
|
|
});
|
2017-11-21 06:13:37 +00:00
|
|
|
}
|
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
const toggleSidebar = () => {
|
|
|
|
const sidebar = document.querySelector('.sidebar ul');
|
|
|
|
const toggleButton = document.querySelector('.sidebar__toggle__icon');
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
if (sidebar.classList.contains('visible')) {
|
|
|
|
document.body.style.overflow = null;
|
|
|
|
toggleButton.setAttribute('aria-expanded', 'false');
|
|
|
|
} else {
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
toggleButton.setAttribute('aria-expanded', 'true');
|
|
|
|
}
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
toggleButton.classList.toggle('active');
|
|
|
|
sidebar.classList.toggle('visible');
|
|
|
|
};
|
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
2023-08-18 10:06:08 +00:00
|
|
|
toggleSidebar();
|
|
|
|
});
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '.sidebar__toggle__icon', 'keydown', e => {
|
2023-08-18 10:06:08 +00:00
|
|
|
if (e.key === ' ' || e.key === 'Enter') {
|
|
|
|
e.preventDefault();
|
2022-10-30 00:43:15 +00:00
|
|
|
toggleSidebar();
|
2023-08-18 10:06:08 +00:00
|
|
|
}
|
|
|
|
});
|
2022-10-30 00:43:15 +00:00
|
|
|
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '.custom-emoji', 'mouseover', ({ target }) => target.src = target.getAttribute('data-original'));
|
|
|
|
Rails.delegate(document, '.custom-emoji', 'mouseout', ({ target }) => target.src = target.getAttribute('data-static'));
|
2023-08-29 08:16:18 +00:00
|
|
|
|
2023-08-18 10:06:08 +00:00
|
|
|
// Empty the honeypot fields in JS in case something like an extension
|
|
|
|
// automatically filled them.
|
2023-11-24 16:40:31 +00:00
|
|
|
Rails.delegate(document, '#registration_new_user,#new_user', 'submit', () => {
|
2023-08-18 10:06:08 +00:00
|
|
|
['user_website', 'user_confirm_password', 'registration_user_website', 'registration_user_confirm_password'].forEach(id => {
|
|
|
|
const field = document.getElementById(id);
|
|
|
|
if (field) {
|
|
|
|
field.value = '';
|
2022-10-30 00:43:15 +00:00
|
|
|
}
|
2019-09-20 08:52:14 +00:00
|
|
|
});
|
2023-08-18 10:06:08 +00:00
|
|
|
});
|
2023-05-09 01:08:47 +00:00
|
|
|
|
|
|
|
function main() {
|
|
|
|
ready(loaded);
|
|
|
|
}
|
|
|
|
|
2019-11-04 12:03:09 +00:00
|
|
|
loadPolyfills()
|
2023-05-31 21:43:39 +00:00
|
|
|
.then(loadLocale)
|
2019-11-04 12:03:09 +00:00
|
|
|
.then(main)
|
|
|
|
.then(loadKeyboardExtensions)
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|