mirror of https://github.com/usememos/memos.git
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
import { createSlice, PayloadAction } from "@reduxjs/toolkit";
|
|
|
|
interface State {
|
|
pathname: AppRouter;
|
|
hash: string;
|
|
query?: Query;
|
|
}
|
|
|
|
const getValidPathname = (pathname: string): AppRouter => {
|
|
if (["/", "/signin"].includes(pathname)) {
|
|
return pathname as AppRouter;
|
|
} else {
|
|
return "/";
|
|
}
|
|
};
|
|
|
|
const getStateFromLocation = () => {
|
|
const { pathname, search, hash } = window.location;
|
|
const urlParams = new URLSearchParams(search);
|
|
const state: State = {
|
|
pathname: getValidPathname(pathname),
|
|
hash: hash,
|
|
};
|
|
|
|
if (search !== "") {
|
|
state.query = {};
|
|
state.query.tag = urlParams.get("tag") ?? undefined;
|
|
state.query.type = (urlParams.get("type") as MemoSpecType) ?? undefined;
|
|
state.query.text = urlParams.get("text") ?? undefined;
|
|
state.query.shortcutId = Number(urlParams.get("shortcutId")) ?? undefined;
|
|
const from = parseInt(urlParams.get("from") ?? "0");
|
|
const to = parseInt(urlParams.get("to") ?? "0");
|
|
if (to > from && to !== 0) {
|
|
state.query.duration = {
|
|
from,
|
|
to,
|
|
};
|
|
}
|
|
}
|
|
|
|
return state;
|
|
};
|
|
|
|
const locationSlice = createSlice({
|
|
name: "location",
|
|
initialState: getStateFromLocation(),
|
|
reducers: {
|
|
updateStateWithLocation: () => {
|
|
return getStateFromLocation();
|
|
},
|
|
setPathname: (state, action: PayloadAction<AppRouter>) => {
|
|
state.pathname = action.payload;
|
|
},
|
|
setQuery: (state, action: PayloadAction<Partial<Query>>) => {
|
|
state.query = action.payload;
|
|
},
|
|
},
|
|
});
|
|
|
|
export const { setPathname, setQuery, updateStateWithLocation } = locationSlice.actions;
|
|
|
|
export default locationSlice.reducer;
|