-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistoryRouter.js
224 lines (212 loc) · 6.51 KB
/
historyRouter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import { writable } from "svelte/store";
import { parse, stringify } from "./url";
/**
* stack, get path and routes by store subscribe calling.
*/
export let historyStack;
let beforeHookHandler = () => true;
/**
* store, pass reactive data to Route component.
*/
export const historyStore = writable({
currentRoute: parse("/"),
routes: [parse("/")]
})
historyStore.subscribe((val) => {
historyStack = val;
});
/**
* router hook before changing
*
* @param {function} hook
*/
export const onBeforeEnter = (hook) => {
beforeHookHandler = hook;
}
/**
* handle route jumping logic by calling hook, if step into next route or jump to redirect route, change promise to resolve. else if intercept router, change promise to reject.
*
* @param {object} to
* @param {object} from
* @param {string} action
*/
const callHook = (to, from, action) => {
return new Promise((resolve, reject) => {
let nextStatus = undefined;
const next = (res = true) => nextStatus = res;
beforeHookHandler(to, from, next, action);
if (nextStatus === true) {
resolve();
} else if (nextStatus === false) {
reject();
} else if (
typeof nextStatus === "string" ||
typeof nextStatus === "object"
) {
resolve(nextStatus);
}
});
}
/**
* push forward a history route
*
* @param {string | object} route
*/
export const push = async (route) => {
try {
const url = stringify(route);
const routeObj = parse(route);
if (historyStack.currentRoute.url !== url) {
const status = await callHook(routeObj, historyStack.currentRoute, "push");
if (status !== undefined) {
push(status);
} else {
window.history.pushState(null, "", url);
historyStore.update((store) => {
store.currentRoute = routeObj;
store.routes.push(routeObj);
return store;
});
}
}
} catch (error) {
if (error) {
console.log("[router push error:]", error);
}
}
}
/**
* replace current history route
*
* @param {string | object} route
*/
export const replace = async (route) => {
try {
const url = stringify(route);
const routeObj = parse(route);
if (historyStack.currentRoute.url !== url) {
const status = await callHook(routeObj, historyStack.currentRoute, "replace");
if (status !== undefined) {
push(status);
} else {
window.history.replaceState(null, "", url);
historyStore.update((store) => {
store.currentRoute = routeObj;
store.routes[0] = routeObj;
return store;
});
}
}
} catch (error) {
if (error) {
console.log("[router replace error:]", error);
}
}
}
/**
* jump route
*
* @param {number} step
*/
export const go = async (step) => {
try {
const curretIndex = historyStack.routes.findIndex(item => item.url === historyStack.currentRoute.url);
const stepRouteObj = historyStack.routes[curretIndex + step];
if (step !== 0) {
const status = await callHook(stepRouteObj, historyStack.currentRoute, "go");
if (status !== undefined) {
push(status);
} else {
window.history.go(step);
historyStore.update((store) => {
store.currentRoute = stepRouteObj;
return store;
});
}
}
} catch (error) {
if (error) {
console.log("[router go error:]", error);
}
}
}
/**
* step forward a route
*/
export const forward = async () => {
try {
const curretIndex = historyStack.routes.findIndex(item => item.url === historyStack.currentRoute.url);
const forwardRouteObj = historyStack.routes[curretIndex + 1];
const status = await callHook(forwardRouteObj, historyStack.currentRoute, "forward");
if (status !== undefined) {
push(status);
} else {
window.history.forward();
historyStore.update((store) => {
store.currentRoute = forwardRouteObj;
return store;
});
}
} catch (error) {
if (error) {
console.log("[router forward error:]", error);
}
}
}
/**
* step back a route
*/
export const back = async () => {
try {
const curretIndex = historyStack.routes.findIndex(item => item.url === historyStack.currentRoute.url);
const backRouteObj = historyStack.routes[curretIndex - 1];
const status = await callHook(backRouteObj, historyStack.currentRoute, "back");
if (status !== undefined) {
push(status);
} else {
window.history.back();
historyStore.update((store) => {
store.currentRoute = backRouteObj;
return store;
});
}
} catch (error) {
if (error) {
console.log("[router go error:]", error);
}
}
}
window.onpopstate = async (e) => {
try {
const url = window.location.href.split(window.location.origin)[1];
const routeObj = parse(url);
const status = await callHook(routeObj, historyStack.currentRoute, "popstate");
if (status !== undefined) {
push(status);
} else {
historyStore.update((store) => {
store.currentRoute = routeObj;
return store;
});
}
} catch (error) {
if (error) {
console.log("[router change error:]", error);
} else {
/**
* avoid browser history stepping back or forward
*/
const url = window.location.href.split(window.location.origin)[1];
const routeObj = parse(url);
const curretIndex = historyStack.routes.findIndex(item => item.url === historyStack.currentRoute.url);
const routeIndex = historyStack.routes.findIndex(item => item.url === routeObj.url);
const isBackForward = routeIndex < curretIndex;
const isNextForward = routeIndex > curretIndex;
if (isBackForward) {
window.history.forward();
} else if (isNextForward) {
window.history.back();
}
}
}
}