mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
add an instant cache refresh to the editor
This commit is contained in:
parent
68b2b7323b
commit
0836d548b2
6 changed files with 66 additions and 11 deletions
|
@ -12,7 +12,7 @@ export const guildsGuild: RoleypolyHandler = async (
|
||||||
request: Request,
|
request: Request,
|
||||||
context: Context
|
context: Context
|
||||||
) => {
|
) => {
|
||||||
const { noCache } = getQuery(request);
|
const { __no_cache: noCache } = getQuery(request);
|
||||||
const guild = await getGuild(context.config, context.params!.guildId!, !!noCache);
|
const guild = await getGuild(context.config, context.params!.guildId!, !!noCache);
|
||||||
|
|
||||||
if (!guild) {
|
if (!guild) {
|
||||||
|
|
|
@ -15,6 +15,7 @@ export type EditorShellProps = {
|
||||||
onGuildChange?: (guild: PresentableGuild) => void;
|
onGuildChange?: (guild: PresentableGuild) => void;
|
||||||
onCategoryChange?: (category: Category) => void;
|
onCategoryChange?: (category: Category) => void;
|
||||||
onMessageChange?: (message: PresentableGuild['data']['message']) => void;
|
onMessageChange?: (message: PresentableGuild['data']['message']) => void;
|
||||||
|
onRefreshCache?: () => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const EditorShell = (props: EditorShellProps) => {
|
export const EditorShell = (props: EditorShellProps) => {
|
||||||
|
@ -69,7 +70,11 @@ export const EditorShell = (props: EditorShellProps) => {
|
||||||
guild={guild.guild}
|
guild={guild.guild}
|
||||||
/>
|
/>
|
||||||
<Space />
|
<Space />
|
||||||
<ServerCategoryEditor guild={guild} onChange={replaceCategories} />
|
<ServerCategoryEditor
|
||||||
|
guild={guild}
|
||||||
|
onChange={replaceCategories}
|
||||||
|
onRefreshCache={props.onRefreshCache}
|
||||||
|
/>
|
||||||
<LinedSpace />
|
<LinedSpace />
|
||||||
<ServerUtilities guildData={guild.data} />
|
<ServerUtilities guildData={guild.data} />
|
||||||
</Container>
|
</Container>
|
||||||
|
|
|
@ -15,7 +15,14 @@ import { flatten, sortBy } from 'lodash';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { DragDropContext, Draggable, Droppable, DropResult } from 'react-beautiful-dnd';
|
import { DragDropContext, Draggable, Droppable, DropResult } from 'react-beautiful-dnd';
|
||||||
import { CgReorder } from 'react-icons/cg';
|
import { CgReorder } from 'react-icons/cg';
|
||||||
import { GoArrowDown, GoArrowUp, GoCheck, GoGrabber, GoPlus } from 'react-icons/go';
|
import {
|
||||||
|
GoArrowDown,
|
||||||
|
GoArrowUp,
|
||||||
|
GoCheck,
|
||||||
|
GoGrabber,
|
||||||
|
GoPlus,
|
||||||
|
GoSync,
|
||||||
|
} from 'react-icons/go';
|
||||||
import { ulid } from 'ulidx';
|
import { ulid } from 'ulidx';
|
||||||
import {
|
import {
|
||||||
CategoryActions,
|
CategoryActions,
|
||||||
|
@ -26,6 +33,7 @@ import {
|
||||||
type Props = {
|
type Props = {
|
||||||
guild: PresentableGuild;
|
guild: PresentableGuild;
|
||||||
onChange: (categories: PresentableGuild['data']['categories']) => void;
|
onChange: (categories: PresentableGuild['data']['categories']) => void;
|
||||||
|
onRefreshCache?: () => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const resetOrder = (categories: Category[]) =>
|
const resetOrder = (categories: Category[]) =>
|
||||||
|
@ -126,6 +134,9 @@ export const ServerCategoryEditor = (props: Props) => {
|
||||||
<Button color="muted" size="small" onClick={() => setReorderMode(true)}>
|
<Button color="muted" size="small" onClick={() => setReorderMode(true)}>
|
||||||
Change Order <CgReorder />
|
Change Order <CgReorder />
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button color="muted" size="small" onClick={props.onRefreshCache}>
|
||||||
|
Refresh Roles <GoSync />
|
||||||
|
</Button>
|
||||||
</CategoryActions>
|
</CategoryActions>
|
||||||
{props.guild.data.categories.length > 0 ? (
|
{props.guild.data.categories.length > 0 ? (
|
||||||
sortBy(props.guild.data.categories, ['position', 'id']).map((category, idx) => (
|
sortBy(props.guild.data.categories, ['position', 'id']).map((category, idx) => (
|
||||||
|
|
|
@ -7,11 +7,21 @@ import {
|
||||||
export const EditorTemplate = (
|
export const EditorTemplate = (
|
||||||
props: EditorShellProps & Omit<AppShellProps, 'children'>
|
props: EditorShellProps & Omit<AppShellProps, 'children'>
|
||||||
) => {
|
) => {
|
||||||
const { guild, onCategoryChange, onMessageChange, onGuildChange, ...appShellProps } =
|
const {
|
||||||
props;
|
guild,
|
||||||
|
onCategoryChange,
|
||||||
|
onMessageChange,
|
||||||
|
onGuildChange,
|
||||||
|
onRefreshCache,
|
||||||
|
...appShellProps
|
||||||
|
} = props;
|
||||||
return (
|
return (
|
||||||
<AppShell {...appShellProps} activeGuildId={guild.id} small double>
|
<AppShell {...appShellProps} activeGuildId={guild.id} small double>
|
||||||
<EditorShell guild={guild} onGuildChange={onGuildChange} />
|
<EditorShell
|
||||||
|
guild={guild}
|
||||||
|
onGuildChange={onGuildChange}
|
||||||
|
onRefreshCache={onRefreshCache}
|
||||||
|
/>
|
||||||
</AppShell>
|
</AppShell>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,12 +19,14 @@ type GuildContextT = {
|
||||||
) => Promise<PresentableGuild | null | false>;
|
) => Promise<PresentableGuild | null | false>;
|
||||||
getGuildSlug: (id: string) => Promise<GuildSlug | null>;
|
getGuildSlug: (id: string) => Promise<GuildSlug | null>;
|
||||||
uncacheGuild: (id: string) => void;
|
uncacheGuild: (id: string) => void;
|
||||||
|
uncacheRemoteGuild: (id: string) => Promise<void>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const GuildContext = React.createContext<GuildContextT>({
|
export const GuildContext = React.createContext<GuildContextT>({
|
||||||
getFullGuild: (id: string) => Promise.reject(new Error('Not implemented')),
|
getFullGuild: (id: string) => Promise.reject(new Error('Not implemented')),
|
||||||
getGuildSlug: (id: string) => Promise.reject(new Error('Not implemented')),
|
getGuildSlug: (id: string) => Promise.reject(new Error('Not implemented')),
|
||||||
uncacheGuild: (id: string) => {},
|
uncacheGuild: (id: string) => void 0,
|
||||||
|
uncacheRemoteGuild: (id: string) => Promise.resolve(void 0),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const useGuildContext = () => React.useContext(GuildContext);
|
export const useGuildContext = () => React.useContext(GuildContext);
|
||||||
|
@ -108,6 +110,9 @@ export const GuildProvider = (props: { children: React.ReactNode }) => {
|
||||||
uncacheGuild: (id: string) => {
|
uncacheGuild: (id: string) => {
|
||||||
sessionStorage.removeItem(`guild-${id}`);
|
sessionStorage.removeItem(`guild-${id}`);
|
||||||
},
|
},
|
||||||
|
uncacheRemoteGuild: async (id: string) => {
|
||||||
|
await authedFetch(`/guilds/${id}/cache`, { method: 'DELETE' });
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -25,7 +25,7 @@ const Editor = (props: EditorProps) => {
|
||||||
const { authedFetch } = useAuthedFetch();
|
const { authedFetch } = useAuthedFetch();
|
||||||
const { pushRecentGuild } = useRecentGuilds();
|
const { pushRecentGuild } = useRecentGuilds();
|
||||||
const appShellProps = useAppShellProps();
|
const appShellProps = useAppShellProps();
|
||||||
const { getFullGuild, uncacheGuild } = useGuildContext();
|
const { getFullGuild, uncacheGuild, uncacheRemoteGuild } = useGuildContext();
|
||||||
|
|
||||||
const [guild, setGuild] = React.useState<PresentableGuild | null | false>(null);
|
const [guild, setGuild] = React.useState<PresentableGuild | null | false>(null);
|
||||||
const [pending, setPending] = React.useState(false);
|
const [pending, setPending] = React.useState(false);
|
||||||
|
@ -52,8 +52,10 @@ const Editor = (props: EditorProps) => {
|
||||||
setGuild(guild);
|
setGuild(guild);
|
||||||
};
|
};
|
||||||
|
|
||||||
fetchGuild();
|
if (guild === null) {
|
||||||
}, [serverID, getFullGuild]);
|
fetchGuild();
|
||||||
|
}
|
||||||
|
}, [serverID, getFullGuild, guild]);
|
||||||
|
|
||||||
React.useCallback((serverID) => pushRecentGuild(serverID), [pushRecentGuild])(serverID);
|
React.useCallback((serverID) => pushRecentGuild(serverID), [pushRecentGuild])(serverID);
|
||||||
|
|
||||||
|
@ -105,10 +107,32 @@ const Editor = (props: EditorProps) => {
|
||||||
setPending(false);
|
setPending(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onRefreshCache = async () => {
|
||||||
|
if (
|
||||||
|
Number(sessionStorage.getItem('rp_editor_last_refresh')) >
|
||||||
|
Date.now() - 1000 * 60 * 2
|
||||||
|
) {
|
||||||
|
console.error('Slow down there partner!');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('Refreshing cache');
|
||||||
|
uncacheGuild(serverID);
|
||||||
|
await uncacheRemoteGuild(serverID);
|
||||||
|
sessionStorage.setItem('rp_editor_last_pull', String(Date.now()));
|
||||||
|
sessionStorage.setItem('rp_editor_last_refresh', String(Date.now()));
|
||||||
|
setGuild(null);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Title title={`Editing ${guild.guild.name} - Roleypoly`} />
|
<Title title={`Editing ${guild.guild.name} - Roleypoly`} />
|
||||||
<EditorTemplate {...appShellProps} guild={guild} onGuildChange={onGuildChange} />
|
<EditorTemplate
|
||||||
|
{...appShellProps}
|
||||||
|
guild={guild}
|
||||||
|
onGuildChange={onGuildChange}
|
||||||
|
onRefreshCache={onRefreshCache}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue