blob: cdfea2d4344f52880a767e7e6875cf187d106ed5 (
plain)
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
|
const { Record, Map } = require('immutable');
const querystring = require('querystring');
const DEFAULTS = {
pathname: String(''),
// Hash without the #
hash: String(''),
// If query is a non empty map
query: Map()
};
class Location extends Record(DEFAULTS) {
/**
* Return search query as a string
* @return {String}
*/
get search() {
const { query } = this;
return query.size === 0 ?
'' :
'?' + querystring.stringify(query.toJS());
}
/**
* Convert this location to a string.
* @return {String}
*/
toString() {
}
/**
* Convert this immutable instance to an object
* for "history".
* @return {Object}
*/
toNative() {
return {
pathname: this.pathname,
hash: this.hash ? `#${this.hash}` : '',
search: this.search
};
}
/**
* Convert an instance from "history" to Location.
* @param {Object|String} location
* @return {Location}
*/
static fromNative(location) {
if (typeof location === 'string') {
location = { pathname: location };
}
const pathname = location.pathname;
let hash = location.hash || '';
let search = location.search || '';
let query = location.query;
hash = hash[0] === '#' ? hash.slice(1) : hash;
search = search[0] === '?' ? search.slice(1) : search;
if (query) {
query = Map(query);
} else {
query = Map(querystring.parse(search));
}
return new Location({
pathname,
hash,
query
});
}
}
module.exports = Location;
|