phanpy/src/utils/states.js

22 lines
411 B
JavaScript
Raw Normal View History

2022-12-10 09:14:48 +00:00
import { proxy } from 'valtio';
export default proxy({
history: [],
statuses: {},
2022-12-10 09:14:48 +00:00
home: [],
homeNew: [],
homeLastFetchTime: null,
notifications: [],
notificationsNew: [],
notificationsLastFetchTime: null,
accounts: {},
2022-12-10 09:14:48 +00:00
reloadStatusPage: 0,
spoilers: {},
scrollPositions: {},
2022-12-10 09:14:48 +00:00
// Modals
showCompose: false,
showSettings: false,
showAccount: false,
composeCharacterCount: 0,
2022-12-10 09:14:48 +00:00
});