1
1
import { History } from './base'
2
2
import { merge , noop } from '../../util/core'
3
3
import { on } from '../../util/dom'
4
- import { parseQuery , stringifyQuery , cleanPath } from '../util'
4
+ import { parseQuery , stringifyQuery , getPath , cleanPath } from '../util'
5
5
6
6
export class HTML5History extends History {
7
7
constructor ( config ) {
@@ -10,7 +10,7 @@ export class HTML5History extends History {
10
10
}
11
11
12
12
getCurrentPath ( ) {
13
- const base = this . config . basePath
13
+ const base = this . getBasePath ( )
14
14
let path = window . location . pathname
15
15
16
16
if ( base && path . indexOf ( base ) === 0 ) {
@@ -37,15 +37,6 @@ export class HTML5History extends History {
37
37
on ( 'popstate' , cb )
38
38
}
39
39
40
- normalize ( ) {
41
- let path = this . getCurrentPath ( )
42
-
43
- path = path . replace ( '#' , '?id=' )
44
- window . history . pushState ( { key : path } , '' , path )
45
-
46
- return path
47
- }
48
-
49
40
/**
50
41
* Parse the url
51
42
* @param {string } [path=location.href]
@@ -60,12 +51,18 @@ export class HTML5History extends History {
60
51
path = path . slice ( 0 , queryIndex )
61
52
}
62
53
63
- const baseIndex = path . indexOf ( location . origin )
54
+ const base = getPath ( location . origin , this . getBasePath ( ) )
55
+ const baseIndex = path . indexOf ( base )
56
+
64
57
if ( baseIndex > - 1 ) {
65
- path = path . slice ( baseIndex + location . origin . length )
58
+ path = path . slice ( baseIndex + base . length - 1 )
66
59
}
67
60
68
- return { path, query : parseQuery ( query ) }
61
+ return {
62
+ path,
63
+ file : this . getFile ( path ) ,
64
+ query : parseQuery ( query )
65
+ }
69
66
}
70
67
71
68
toURL ( path , params , currentRoute ) {
0 commit comments