Fix stupid mistake
This commit is contained in:
parent
3213e8503e
commit
348e7a52c9
1 changed files with 5 additions and 6 deletions
|
@ -16,7 +16,6 @@ import Status from '../components/status';
|
||||||
import htmlContentLength from '../utils/html-content-length';
|
import htmlContentLength from '../utils/html-content-length';
|
||||||
import shortenNumber from '../utils/shorten-number';
|
import shortenNumber from '../utils/shorten-number';
|
||||||
import states, { saveStatus, threadifyStatus } from '../utils/states';
|
import states, { saveStatus, threadifyStatus } from '../utils/states';
|
||||||
import store from '../utils/store';
|
|
||||||
import { getCurrentAccount } from '../utils/store-utils';
|
import { getCurrentAccount } from '../utils/store-utils';
|
||||||
import useDebouncedCallback from '../utils/useDebouncedCallback';
|
import useDebouncedCallback from '../utils/useDebouncedCallback';
|
||||||
import useScroll from '../utils/useScroll';
|
import useScroll from '../utils/useScroll';
|
||||||
|
@ -24,8 +23,9 @@ import useTitle from '../utils/useTitle';
|
||||||
|
|
||||||
const LIMIT = 40;
|
const LIMIT = 40;
|
||||||
|
|
||||||
|
let cachedStatusesMap = {};
|
||||||
function resetScrollPosition(id) {
|
function resetScrollPosition(id) {
|
||||||
delete cachedStatusesMap.current[id];
|
delete cachedStatusesMap[id];
|
||||||
delete states.scrollPositions[id];
|
delete states.scrollPositions[id];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,13 +61,12 @@ function StatusPage() {
|
||||||
}, [id, uiState !== 'loading']);
|
}, [id, uiState !== 'loading']);
|
||||||
|
|
||||||
const scrollOffsets = useRef();
|
const scrollOffsets = useRef();
|
||||||
const cachedStatusesMap = useRef({});
|
|
||||||
const initContext = () => {
|
const initContext = () => {
|
||||||
console.debug('initContext', id);
|
console.debug('initContext', id);
|
||||||
setUIState('loading');
|
setUIState('loading');
|
||||||
let heroTimer;
|
let heroTimer;
|
||||||
|
|
||||||
const cachedStatuses = cachedStatusesMap.current[id];
|
const cachedStatuses = cachedStatusesMap[id];
|
||||||
if (cachedStatuses) {
|
if (cachedStatuses) {
|
||||||
// Case 1: It's cached, let's restore them to make it snappy
|
// Case 1: It's cached, let's restore them to make it snappy
|
||||||
const reallyCachedStatuses = cachedStatuses.filter(
|
const reallyCachedStatuses = cachedStatuses.filter(
|
||||||
|
@ -170,7 +169,7 @@ function StatusPage() {
|
||||||
};
|
};
|
||||||
console.log({ allStatuses });
|
console.log({ allStatuses });
|
||||||
setStatuses(allStatuses);
|
setStatuses(allStatuses);
|
||||||
cachedStatusesMap.current[id] = allStatuses;
|
cachedStatusesMap[id] = allStatuses;
|
||||||
|
|
||||||
// Let's threadify this one
|
// Let's threadify this one
|
||||||
// Note that all non-hero statuses will trigger saveStatus which will threadify them too
|
// Note that all non-hero statuses will trigger saveStatus which will threadify them too
|
||||||
|
@ -242,7 +241,7 @@ function StatusPage() {
|
||||||
// RESET
|
// RESET
|
||||||
states.scrollPositions = {};
|
states.scrollPositions = {};
|
||||||
states.reloadStatusPage = 0;
|
states.reloadStatusPage = 0;
|
||||||
cachedStatusesMap.current = {};
|
cachedStatusesMap = {};
|
||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue