phanpy/src/utils/states.js

236 lines
7.5 KiB
JavaScript
Raw Normal View History

2023-02-16 09:51:54 +00:00
import { proxy, subscribe } from 'valtio';
import { subscribeKey } from 'valtio/utils';
2023-01-14 11:42:04 +00:00
import { api } from './api';
2023-10-14 12:33:40 +00:00
import pmem from './pmem';
import rateLimit from './ratelimit';
2023-01-14 11:42:04 +00:00
import store from './store';
2022-12-10 09:14:48 +00:00
2023-01-09 11:11:34 +00:00
const states = proxy({
2023-02-28 07:27:42 +00:00
appVersion: {},
// history: [],
prevLocation: null,
currentLocation: null,
statuses: {},
2023-01-10 11:59:02 +00:00
statusThreadNumber: {},
2022-12-10 09:14:48 +00:00
home: [],
// specialHome: [],
2022-12-10 09:14:48 +00:00
homeNew: [],
homeLast: null, // Last item in 'home' list
2022-12-10 09:14:48 +00:00
homeLastFetchTime: null,
notifications: [],
notificationsLast: null, // Last read notification
2022-12-10 09:14:48 +00:00
notificationsNew: [],
2023-02-12 09:38:50 +00:00
notificationsShowNew: false,
2022-12-10 09:14:48 +00:00
notificationsLastFetchTime: null,
reloadStatusPage: 0,
reloadGenericAccounts: {
id: null,
counter: 0,
},
spoilers: {},
spoilersMedia: {},
scrollPositions: {},
unfurledLinks: {},
2023-04-22 16:55:47 +00:00
statusQuotes: {},
2023-12-14 17:58:29 +00:00
statusFollowedTags: {},
accounts: {},
routeNotification: null,
2022-12-10 09:14:48 +00:00
// Modals
showCompose: false,
showSettings: false,
showAccount: false,
showAccounts: false,
showDrafts: false,
showMediaModal: false,
2023-02-16 09:51:54 +00:00
showShortcutsSettings: false,
2023-09-06 14:54:05 +00:00
showKeyboardShortcutsHelp: false,
2023-09-28 03:22:05 +00:00
showGenericAccounts: false,
2023-09-28 07:48:32 +00:00
showMediaAlt: false,
2023-02-16 09:51:54 +00:00
// Shortcuts
shortcuts: [],
// Settings
2023-01-14 11:42:04 +00:00
settings: {
autoRefresh: false,
shortcutsViewMode: null,
shortcutsColumnsMode: false,
boostsCarousel: true,
contentTranslation: true,
contentTranslationTargetLanguage: null,
contentTranslationHideLanguages: [],
contentTranslationAutoInline: false,
cloakMode: false,
2023-01-14 11:42:04 +00:00
},
2022-12-10 09:14:48 +00:00
});
2023-01-09 11:11:34 +00:00
export default states;
export function initStates() {
// init all account based states
// all keys that uses store.account.get() should be initialized here
states.notificationsLast = store.account.get('notificationsLast') || null;
states.shortcuts = store.account.get('shortcuts') ?? [];
states.settings.autoRefresh =
store.account.get('settings-autoRefresh') ?? false;
states.settings.shortcutsViewMode =
store.account.get('settings-shortcutsViewMode') ?? null;
if (store.account.get('settings-shortcutsColumnsMode')) {
states.settings.shortcutsColumnsMode = true;
}
states.settings.boostsCarousel =
store.account.get('settings-boostsCarousel') ?? true;
states.settings.contentTranslation =
store.account.get('settings-contentTranslation') ?? true;
states.settings.contentTranslationTargetLanguage =
store.account.get('settings-contentTranslationTargetLanguage') || null;
states.settings.contentTranslationHideLanguages =
store.account.get('settings-contentTranslationHideLanguages') || [];
states.settings.contentTranslationAutoInline =
store.account.get('settings-contentTranslationAutoInline') ?? false;
states.settings.cloakMode = store.account.get('settings-cloakMode') ?? false;
}
subscribeKey(states, 'notificationsLast', (v) => {
console.log('CHANGE', v);
store.account.set('notificationsLast', states.notificationsLast);
});
subscribe(states, (changes) => {
console.debug('STATES change', changes);
for (const [action, path, value, prevValue] of changes) {
2023-05-05 09:53:16 +00:00
if (path.join('.') === 'settings.autoRefresh') {
store.account.set('settings-autoRefresh', !!value);
}
if (path.join('.') === 'settings.boostsCarousel') {
store.account.set('settings-boostsCarousel', !!value);
}
if (path.join('.') === 'settings.shortcutsViewMode') {
store.account.set('settings-shortcutsViewMode', value);
}
if (path.join('.') === 'settings.contentTranslation') {
store.account.set('settings-contentTranslation', !!value);
}
if (path.join('.') === 'settings.contentTranslationAutoInline') {
store.account.set('settings-contentTranslationAutoInline', !!value);
}
if (path.join('.') === 'settings.contentTranslationTargetLanguage') {
console.log('SET', value);
store.account.set('settings-contentTranslationTargetLanguage', value);
}
if (/^settings\.contentTranslationHideLanguages/i.test(path.join('.'))) {
store.account.set(
'settings-contentTranslationHideLanguages',
states.settings.contentTranslationHideLanguages,
);
}
if (path?.[0] === 'shortcuts') {
store.account.set('shortcuts', states.shortcuts);
}
2023-04-23 04:08:41 +00:00
if (path.join('.') === 'settings.cloakMode') {
store.account.set('settings-cloakMode', !!value);
}
2023-02-16 09:51:54 +00:00
}
});
2023-01-14 11:42:04 +00:00
2023-02-02 02:30:16 +00:00
export function hideAllModals() {
states.showCompose = false;
states.showSettings = false;
states.showAccount = false;
states.showAccounts = false;
2023-02-02 02:30:16 +00:00
states.showDrafts = false;
states.showMediaModal = false;
2023-02-17 03:29:53 +00:00
states.showShortcutsSettings = false;
2023-09-06 14:54:05 +00:00
states.showKeyboardShortcutsHelp = false;
2023-09-17 04:54:48 +00:00
states.showGenericAccounts = false;
2023-09-28 07:48:32 +00:00
states.showMediaAlt = false;
2023-02-02 02:30:16 +00:00
}
export function statusKey(id, instance) {
2023-05-19 17:06:16 +00:00
if (!id) return;
return instance ? `${instance}/${id}` : id;
}
export function getStatus(statusID, instance) {
if (instance) {
const key = statusKey(statusID, instance);
return states.statuses[key];
}
return states.statuses[statusID];
}
export function saveStatus(status, instance, opts) {
if (typeof instance === 'object') {
opts = instance;
instance = null;
}
2023-01-10 11:59:02 +00:00
const { override, skipThreading } = Object.assign(
{ override: true, skipThreading: false },
opts,
);
2023-01-09 11:11:34 +00:00
if (!status) return;
2023-03-21 16:09:36 +00:00
const oldStatus = getStatus(status.id, instance);
if (!override && oldStatus) return;
const key = statusKey(status.id, instance);
2023-03-21 16:09:36 +00:00
if (oldStatus?._pinned) status._pinned = oldStatus._pinned;
// if (oldStatus?._filtered) status._filtered = oldStatus._filtered;
states.statuses[key] = status;
2023-01-09 11:11:34 +00:00
if (status.reblog) {
const key = statusKey(status.reblog.id, instance);
states.statuses[key] = status.reblog;
2023-01-09 11:11:34 +00:00
}
2023-01-10 11:59:02 +00:00
// THREAD TRAVERSER
if (!skipThreading) {
requestAnimationFrame(() => {
threadifyStatus(status, instance);
2023-01-10 14:58:54 +00:00
if (status.reblog) {
2023-02-23 16:50:06 +00:00
threadifyStatus(status.reblog, instance);
2023-01-10 14:58:54 +00:00
}
2023-01-10 11:59:02 +00:00
});
}
}
function _threadifyStatus(status, propInstance) {
const { masto, instance } = api({ instance: propInstance });
2023-01-10 11:59:02 +00:00
// Return all statuses in the thread, via inReplyToId, if inReplyToAccountId === account.id
let fetchIndex = 0;
async function traverse(status, index = 0) {
const { inReplyToId, inReplyToAccountId } = status;
if (!inReplyToId || inReplyToAccountId !== status.account.id) {
return [status];
}
if (inReplyToId && inReplyToAccountId !== status.account.id) {
throw 'Not a thread';
// Possibly thread of replies by multiple people?
}
const key = statusKey(inReplyToId, instance);
let prevStatus = states.statuses[key];
2023-01-10 11:59:02 +00:00
if (!prevStatus) {
if (fetchIndex++ > 3) throw 'Too many fetches for thread'; // Some people revive old threads
2023-12-22 02:19:06 +00:00
await new Promise((r) => setTimeout(r, 500 * fetchIndex)); // Be nice to rate limits
// prevStatus = await masto.v1.statuses.$.select(inReplyToId).fetch();
2023-02-23 14:53:12 +00:00
prevStatus = await fetchStatus(inReplyToId, masto);
saveStatus(prevStatus, instance, { skipThreading: true });
2023-01-10 11:59:02 +00:00
}
// Prepend so that first status in thread will be index 0
return [...(await traverse(prevStatus, ++index)), status];
}
return traverse(status)
.then((statuses) => {
if (statuses.length > 1) {
console.debug('THREAD', statuses);
statuses.forEach((status, index) => {
const key = statusKey(status.id, instance);
states.statusThreadNumber[key] = index + 1;
2023-01-10 11:59:02 +00:00
});
}
})
.catch((e) => {
console.error(e, status);
});
2023-01-09 11:11:34 +00:00
}
2023-12-22 02:19:06 +00:00
export const threadifyStatus = rateLimit(_threadifyStatus, 100);
2023-02-23 14:53:12 +00:00
2023-10-14 12:33:40 +00:00
const fetchStatus = pmem((statusID, masto) => {
return masto.v1.statuses.$select(statusID).fetch();
2023-02-23 14:53:12 +00:00
});