-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathbootstrap.service.js
More file actions
142 lines (120 loc) · 3.29 KB
/
bootstrap.service.js
File metadata and controls
142 lines (120 loc) · 3.29 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import { nextTick } from 'vue'
import { useAccountAuthStore } from '@/stores/account-auth.js'
import { useAccountSettingsStore } from '@/stores/account-settings.js'
import { useAccountTeamStore } from '@/stores/account-team.js'
/**
* Bootstrap Service - Handles application lifecycle and readiness detection
* @class
*/
class BootstrapService {
/**
* @type {import('vue').App} - Vue app instance
*/
$app
/**
* @type {import('vue-router').Router} - Vue router instance
*/
$router
/**
* @type {Object} - Map of all services for dependency injection
*/
$services
/**
* @param {{app: import('vue').App, router: import('vue-router').Router, services?: Object}} options - Constructor options
*/
constructor ({
app,
router,
services = {}
}) {
this.$app = app
this.$router = router
this.$services = services
this.isReady = false
this.readyPromise = null
this.readyResolve = null
this.setupReadyPromise()
}
setupReadyPromise () {
this.readyPromise = new Promise((resolve) => {
this.readyResolve = resolve
})
}
/**
* Initialize the bootstrap service and wait for app readiness
*/
async init () {
return this.waitForAppMount()
.then(() => {
// Eagerly create account stores — restores persisted state from localStorage instantly
useAccountAuthStore()
useAccountTeamStore()
useAccountSettingsStore()
})
.then(() => this.checkUser())
.then(() => this.mountApp())
.then(() => this.waitForRouterReady())
.then(async () => this.markAsReady())
}
async waitForAppMount () {
if (this.$app._container?.children?.length > 0) {
return Promise.resolve()
}
return new Promise((resolve) => {
nextTick(() => {
resolve()
})
})
}
async waitForRouterReady () {
await this.$router.isReady()
}
async checkUser () {
if (window.opener) {
return useAccountAuthStore().checkIfAuthenticated().catch(e => e)
}
return Promise.resolve()
}
async mountApp () {
this.$app.mount('#app')
}
markAsReady () {
this.isReady = true
if (this.readyResolve) {
this.readyResolve()
}
}
/**
* Wait for the application to be ready
* @returns {Promise} Promise that resolves when app is ready
*/
whenReady () {
if (this.isReady) {
return Promise.resolve()
}
return this.readyPromise
}
}
let BootstrapServiceInstance = null
/**
* @param {{app: import('vue').App, router: import('vue-router').Router, services?: Object}} options - Constructor options
* @returns {BootstrapService}
*/
export function createBootstrapService ({
app,
router,
services = {}
} = {}) {
if (!BootstrapServiceInstance) {
BootstrapServiceInstance = new BootstrapService({
app,
router,
services
})
}
return BootstrapServiceInstance
}
/**
* @returns {BootstrapService}
*/
export default createBootstrapService