Skip to content

Commit 3b000d6

Browse files
committed
Use hash history instead of browser's native history
1 parent 13910ce commit 3b000d6

File tree

8 files changed

+96
-36
lines changed

8 files changed

+96
-36
lines changed

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
"devDependencies": {
1919
"@types/acorn": "^4.0.3",
2020
"@types/codemirror": "0.0.51",
21+
"@types/history": "^4.6.2",
2122
"@types/node": "^8.9.4",
2223
"acorn": "^5.5.0",
2324
"codemirror": "^5.35.0",
2425
"he": "^1.1.1",
26+
"history": "^4.7.2",
2527
"ncp": "^2.0.0",
2628
"node-fetch": "^1.7.3",
2729
"node-sass": "^4.9.0",

src/app.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import { Component, h } from "preact";
1717
import * as db from "./db";
18-
import { pushState, Router } from "./router";
18+
import { push, Router } from "./router";
1919
import * as types from "./types";
2020
import { equal } from "./util";
2121

@@ -104,12 +104,12 @@ const anonDoc = {
104104
async function onNewNotebookClicked() {
105105
const nbId = await db.active.create();
106106
// Redirect to new notebook.
107-
pushState(`/notebook/${nbId}`);
107+
push(`/notebook/${nbId}`);
108108
}
109109

110110
async function onPreviewClicked(nbId: string) {
111111
// Redirect to notebook.
112-
pushState(`/notebook/${nbId}`);
112+
push(`/notebook/${nbId}`);
113113
}
114114

115115
export const RecentPage = bind(Recent, {
@@ -163,7 +163,7 @@ export const NotebookPage = bind(Notebook, {
163163
const cb = async doc => {
164164
const cloneId = await db.active.clone(doc);
165165
// Redirect to new notebook.
166-
pushState(`/notebook/${cloneId}`);
166+
push(`/notebook/${cloneId}`);
167167
};
168168
return Promise.resolve(cb);
169169
}

src/components/footer.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
*/
1515

1616
import { h } from "preact";
17+
import { Link } from "./link";
1718

1819
export function Footer(): JSX.Element {
1920
return (
2021
<div class="footer">
21-
<a href="/references">References</a>
22-
<a href="/docs">Documentation</a>
23-
<a href="https://github.com/propelml/propel">GitHub</a>
24-
<a href="mailto:[email protected]">Contact</a>
22+
<Link href="/references">References</Link>
23+
<Link href="/docs">Documentation</Link>
24+
<Link href="https://github.com/propelml/propel">GitHub</Link>
25+
<Link href="mailto:[email protected]">Contact</Link>
2526
</div>
2627
);
2728
}

src/components/link.tsx

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*!
2+
Copyright 2018 Propel http://propel.site/. All rights reserved.
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.
14+
*/
15+
16+
import { h } from "preact";
17+
import { push } from "../router";
18+
19+
export interface LinkProps extends JSX.HTMLAttributes {
20+
href: string;
21+
}
22+
23+
export function Link(props: LinkProps) {
24+
const { href, children, ...otherProps } = props;
25+
return (
26+
<a onClick={() => push(href)} {...otherProps} > { children } </a>
27+
);
28+
}

src/components/logo.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
*/
1515

1616
import { h } from "preact";
17+
import { Link } from "./link";
1718

1819
export interface PropelLogoProps {
1920
subtitle?: string;
@@ -26,7 +27,7 @@ export function PropelLogo(props: PropelLogoProps): JSX.Element {
2627
if (props.subtitle) {
2728
Subtitle = (
2829
<h2>
29-
<a href={props.subtitleLink || "/"}>{props.subtitle}</a>
30+
<Link href={props.subtitleLink || "/"}>{props.subtitle}</Link>
3031
</h2>
3132
);
3233
}
@@ -45,7 +46,7 @@ export function PropelLogo(props: PropelLogoProps): JSX.Element {
4546
<div class="global-title">
4647
<div class="global-main-title">
4748
<h1>
48-
<a href="/">Propel</a>
49+
<Link href="/">Propel</Link>
4950
</h1>
5051
</div>
5152
<div class="global-sub-title">{Subtitle}</div>

src/components/user_title.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,21 @@
1616
import { h } from "preact";
1717
import * as types from "../types";
1818
import { Avatar } from "./avatar";
19+
import { Link } from "./link";
1920

2021
export interface UserTitleProps {
2122
userInfo: types.UserInfo;
2223
}
2324

2425
export function UserTitle(props: UserTitleProps): JSX.Element {
25-
const href = window.location.origin + "/user/" + props.userInfo.uid;
26+
const href = "/user/" + props.userInfo.uid;
2627
return (
2728
<div class="nb-listing-header-title">
2829
<Avatar userInfo={props.userInfo} />
2930
<h2>
30-
<a class="profile-link" href={href} >
31+
<Link class="profile-link" href={href} >
3132
{props.userInfo.displayName}
32-
</a>
33+
</Link>
3334
</h2>
3435
</div>
3536
);

src/router.tsx

+20-21
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@
1313
limitations under the License.
1414
*/
1515

16+
import { createHashHistory } from "history";
1617
import pathToRegexp from "path-to-regexp";
1718
import { cloneElement, Component, VNode } from "preact";
1819

1920
let id = 0;
2021
const listeners = new Map<number, () => void>();
22+
const history = createHashHistory();
2123
const regexCache = new Map<string, RegExp>();
2224
const regexKeysCache = new Map<string, string[]>();
2325

@@ -26,7 +28,7 @@ export interface MatchedResult {
2628
}
2729

2830
export function match(pattern: string): false | MatchedResult {
29-
const path = window.location.pathname;
31+
const path = history.location.pathname;
3032
let regex = regexCache.get(pattern);
3133
let keys = regexKeysCache.get(pattern);
3234
if (!regex) {
@@ -47,24 +49,6 @@ export function match(pattern: string): false | MatchedResult {
4749
return data;
4850
}
4951

50-
function onPopState() {
51-
const mapValues = listeners.values();
52-
for (const cb of mapValues) {
53-
cb();
54-
}
55-
}
56-
57-
window.onpopstate = onPopState;
58-
59-
export function pushState(url) {
60-
window.history.pushState({}, document.title, url);
61-
onPopState();
62-
}
63-
64-
export function back() {
65-
window.history.back();
66-
}
67-
6852
export interface RouterChildProps {
6953
path?: string;
7054
}
@@ -106,8 +90,8 @@ export class Router extends Component<RouterProps, RouterState> {
10690
}
10791

10892
componentWillMount() {
109-
this.id = ++id;
110-
listeners.set(id, this.onLocationChange.bind(this));
93+
this.id = id++;
94+
listeners.set(this.id, this.onLocationChange.bind(this));
11195
this.onLocationChange();
11296
}
11397

@@ -127,3 +111,18 @@ export class Router extends Component<RouterProps, RouterState> {
127111
return cloneElement(activeEl, newProps);
128112
}
129113
}
114+
115+
export function push(url) {
116+
history.push(url);
117+
}
118+
119+
export function back() {
120+
history.goBack();
121+
}
122+
123+
history.listen(() => {
124+
const listenerCbs = listeners.values();
125+
for (const cb of listenerCbs) {
126+
cb();
127+
}
128+
});

yarn.lock

+30-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
version "0.0.39"
1717
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
1818

19+
"@types/history@^4.6.2":
20+
version "4.6.2"
21+
resolved "https://registry.yarnpkg.com/@types/history/-/history-4.6.2.tgz#12cfaba693ba20f114ed5765467ff25fdf67ddb0"
22+
1923
"@types/node@^8.9.4":
2024
version "8.10.12"
2125
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.12.tgz#dcb66f6de39074a296534bd1a256a3c6a1c8f5b5"
@@ -2450,6 +2454,16 @@ he@^1.1.1:
24502454
version "1.1.1"
24512455
resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
24522456

2457+
history@^4.7.2:
2458+
version "4.7.2"
2459+
resolved "https://registry.yarnpkg.com/history/-/history-4.7.2.tgz#22b5c7f31633c5b8021c7f4a8a954ac139ee8d5b"
2460+
dependencies:
2461+
invariant "^2.2.1"
2462+
loose-envify "^1.2.0"
2463+
resolve-pathname "^2.2.0"
2464+
value-equal "^0.4.0"
2465+
warning "^3.0.0"
2466+
24532467
hmac-drbg@^1.0.0:
24542468
version "1.0.1"
24552469
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
@@ -2608,7 +2622,7 @@ ini@^1.3.4, ini@~1.3.0:
26082622
version "1.3.5"
26092623
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
26102624

2611-
invariant@^2.2.2:
2625+
invariant@^2.2.1, invariant@^2.2.2:
26122626
version "2.2.4"
26132627
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
26142628
dependencies:
@@ -3137,7 +3151,7 @@ longest-streak@^2.0.1:
31373151
version "2.0.2"
31383152
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz#2421b6ba939a443bb9ffebf596585a50b4c38e2e"
31393153

3140-
loose-envify@^1.0.0:
3154+
loose-envify@^1.0.0, loose-envify@^1.2.0:
31413155
version "1.3.1"
31423156
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
31433157
dependencies:
@@ -4684,6 +4698,10 @@ resolve-from@^4.0.0:
46844698
version "4.0.0"
46854699
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
46864700

4701+
resolve-pathname@^2.2.0:
4702+
version "2.2.0"
4703+
resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.2.0.tgz#7e9ae21ed815fd63ab189adeee64dc831eefa879"
4704+
46874705
resolve-url@^0.2.1:
46884706
version "0.2.1"
46894707
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
@@ -5667,6 +5685,10 @@ validate-npm-package-license@^3.0.1:
56675685
spdx-correct "^3.0.0"
56685686
spdx-expression-parse "^3.0.0"
56695687

5688+
value-equal@^0.4.0:
5689+
version "0.4.0"
5690+
resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.4.0.tgz#c5bdd2f54ee093c04839d71ce2e4758a6890abc7"
5691+
56705692
vega-canvas@1, vega-canvas@^1.0.1:
56715693
version "1.0.1"
56725694
resolved "https://registry.yarnpkg.com/vega-canvas/-/vega-canvas-1.0.1.tgz#22cfa510af0cfbd920fc6af8b6111d3de5e63c44"
@@ -5923,6 +5945,12 @@ [email protected]:
59235945
dependencies:
59245946
indexof "0.0.1"
59255947

5948+
warning@^3.0.0:
5949+
version "3.0.0"
5950+
resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c"
5951+
dependencies:
5952+
loose-envify "^1.0.0"
5953+
59265954
whet.extend@~0.9.9:
59275955
version "0.9.9"
59285956
resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"

0 commit comments

Comments
 (0)