3
3
RouteParams ,
4
4
RouteComponent ,
5
5
RouteLocationNormalizedLoaded ,
6
+ RouteParamValue ,
6
7
} from '../types'
7
8
import { guardToPromiseFn } from './guardToPromiseFn'
8
9
import { RouteRecord , RouteRecordNormalized } from '../matcher/types'
@@ -90,16 +91,10 @@ export function isSameLocationObject(
90
91
a : RouteLocationNormalized [ 'query' | 'params' ] ,
91
92
b : RouteLocationNormalized [ 'query' | 'params' ]
92
93
) : boolean {
93
- const aKeys = Object . keys ( a )
94
- const bKeys = Object . keys ( b )
95
- if ( aKeys . length !== bKeys . length ) return false
96
- let i = 0
97
- let key : string
98
- while ( i < aKeys . length ) {
99
- key = aKeys [ i ]
100
- if ( key !== bKeys [ i ] ) return false
94
+ if ( Object . keys ( a ) . length !== Object . keys ( b ) . length ) return false
95
+
96
+ for ( let key in a ) {
101
97
if ( ! isSameLocationObjectValue ( a [ key ] , b [ key ] ) ) return false
102
- i ++
103
98
}
104
99
105
100
return true
@@ -109,17 +104,38 @@ function isSameLocationObjectValue(
109
104
a : LocationQueryValue | LocationQueryValue [ ] ,
110
105
b : LocationQueryValue | LocationQueryValue [ ]
111
106
) : boolean
112
- function isSameLocationObjectValue ( a : RouteParams , b : RouteParams ) : boolean
113
107
function isSameLocationObjectValue (
114
- a : LocationQueryValue | LocationQueryValue [ ] | RouteParams ,
115
- b : LocationQueryValue | LocationQueryValue [ ] | RouteParams
108
+ a : RouteParamValue | RouteParamValue [ ] ,
109
+ b : RouteParamValue | RouteParamValue [ ]
110
+ ) : boolean
111
+ function isSameLocationObjectValue (
112
+ a :
113
+ | LocationQueryValue
114
+ | LocationQueryValue [ ]
115
+ | RouteParamValue
116
+ | RouteParamValue [ ] ,
117
+ b :
118
+ | LocationQueryValue
119
+ | LocationQueryValue [ ]
120
+ | RouteParamValue
121
+ | RouteParamValue [ ]
116
122
) : boolean {
117
- if ( typeof a !== typeof b ) return false
118
- // both a and b are arrays
119
- if ( Array . isArray ( a ) )
120
- return (
121
- a . length === ( b as any [ ] ) . length &&
122
- a . every ( ( value , i ) => value === ( b as LocationQueryValue [ ] ) [ i ] )
123
- )
124
- return a === b
123
+ return Array . isArray ( a )
124
+ ? isEquivalentArray ( a , b )
125
+ : Array . isArray ( b )
126
+ ? isEquivalentArray ( b , a )
127
+ : a === b
128
+ }
129
+
130
+ /**
131
+ * Check if two arrays are the same or if an array with one single entry is the
132
+ * same as another primitive value. Used to check query and parameters
133
+ *
134
+ * @param a array of values
135
+ * @param b array of values or a single value
136
+ */
137
+ function isEquivalentArray < T > ( a : T [ ] , b : T [ ] | T ) : boolean {
138
+ return Array . isArray ( b )
139
+ ? a . length === b . length && a . every ( ( value , i ) => value === b [ i ] )
140
+ : a . length === 1 && a [ 0 ] === b
125
141
}
0 commit comments