Skip to content

Commit 48218fe

Browse files
authored
fix(safeId): trigger id creation/update after mount (fixes #1978) (#2161)
* fix(safeId): trigger id update on mount. Uses computed prop to generate a method that returns the ID, which has the same call arguments as the original safeID(suffix) method
1 parent 4bb17f3 commit 48218fe

File tree

1 file changed

+27
-12
lines changed

1 file changed

+27
-12
lines changed

src/mixins/id.js

+27-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* SSR Safe Client Side ID attribute generation
3-
*
3+
* id's can only be generated client side, after mount.
4+
* this._uid is not synched between server and client.
45
*/
56

67
export default {
@@ -10,21 +11,35 @@ export default {
1011
default: null
1112
}
1213
},
13-
methods: {
14-
safeId (suffix = '') {
15-
const id = this.id || this.localId_ || null
16-
if (!id) {
17-
return null
18-
}
19-
suffix = String(suffix).replace(/\s+/g, '_')
20-
return suffix ? id + '_' + suffix : id
14+
data () {
15+
return {
16+
localId_: null
2117
}
2218
},
19+
mounted () {
20+
// mounted only occurs client side
21+
this.$nextTick(() => {
22+
// Update dom with auto ID after dom loaded to prevent
23+
// SSR hydration errors.
24+
this.localId_ = `__BVID__${this._uid}`
25+
})
26+
},
2327
computed: {
24-
localId_ () {
25-
if (!this.$isServer && !this.id && typeof this._uid !== 'undefined') {
26-
return '__BVID__' + this._uid
28+
safeId () {
29+
// Computed property that returns a dynamic function for creating the ID.
30+
// Reacts to changes in both .id and .localId_ And regens a new function
31+
const id = this.id || this.localId_
32+
33+
// We return a function that accepts an optional suffix string
34+
// So this computed prop looks and works like a method!!!
35+
const fn = (suffix) => {
36+
if (!id) {
37+
return null
38+
}
39+
suffix = String(suffix || '').replace(/\s+/g, '_')
40+
return suffix ? id + '_' + suffix : id
2741
}
42+
return fn
2843
}
2944
}
3045
}

0 commit comments

Comments
 (0)