Rename system to SIB: update translations, logos, views, stores and logs
This commit is contained in:
@ -140,7 +140,7 @@ export const useAuthStore = defineStore('auth', () => {
|
||||
if (!error) {
|
||||
userProfile.value = { ...userProfile.value, ...updates }
|
||||
} else {
|
||||
console.error('SIBU | Error al actualizar perfil:', error)
|
||||
console.error('SIB | Error al actualizar perfil:', error)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ export const useFavoritesStore = defineStore('favorites', () => {
|
||||
// Safety: si la red está inestable al awakening del background, no quedar cargando
|
||||
const safetyTimer = setTimeout(() => {
|
||||
if (isLoading.value) {
|
||||
console.warn('SIBU | favoritesStore: safety timeout — reseteando isLoading')
|
||||
console.warn('SIB | favoritesStore: safety timeout — reseteando isLoading')
|
||||
isLoading.value = false
|
||||
}
|
||||
}, 12000)
|
||||
|
||||
@ -25,7 +25,7 @@ export const useRouteStore = defineStore('route', () => {
|
||||
if (_routesSafetyTimer) clearTimeout(_routesSafetyTimer)
|
||||
_routesSafetyTimer = setTimeout(() => {
|
||||
if (isLoadingRoutes.value) {
|
||||
console.warn('SIBU | routeStore: routes safety timeout — reseteando isLoadingRoutes')
|
||||
console.warn('SIB | routeStore: routes safety timeout — reseteando isLoadingRoutes')
|
||||
isLoadingRoutes.value = false
|
||||
}
|
||||
}, 12000)
|
||||
@ -34,7 +34,7 @@ export const useRouteStore = defineStore('route', () => {
|
||||
if (_stopsSafetyTimer) clearTimeout(_stopsSafetyTimer)
|
||||
_stopsSafetyTimer = setTimeout(() => {
|
||||
if (isLoadingStops.value) {
|
||||
console.warn('SIBU | routeStore: stops safety timeout — reseteando isLoadingStops')
|
||||
console.warn('SIB | routeStore: stops safety timeout — reseteando isLoadingStops')
|
||||
isLoadingStops.value = false
|
||||
}
|
||||
}, 12000)
|
||||
|
||||
@ -15,7 +15,7 @@ export const useScheduleStore = defineStore('schedule', () => {
|
||||
_clearSafetyTimer()
|
||||
_safetyTimer = setTimeout(() => {
|
||||
if (isLoading.value) {
|
||||
console.warn('SIBU | scheduleStore: safety timeout — reseteando isLoading')
|
||||
console.warn('SIB | scheduleStore: safety timeout — reseteando isLoading')
|
||||
isLoading.value = false
|
||||
}
|
||||
}, 12000)
|
||||
|
||||
@ -16,7 +16,7 @@ export const useShuttleStore = defineStore('shuttle', () => {
|
||||
_clearSafetyTimer()
|
||||
_safetyTimer = setTimeout(() => {
|
||||
if (isLoading.value) {
|
||||
console.warn('SIBU | shuttleStore: safety timeout — reseteando isLoading')
|
||||
console.warn('SIB | shuttleStore: safety timeout — reseteando isLoading')
|
||||
isLoading.value = false
|
||||
}
|
||||
}, 12000)
|
||||
|
||||
@ -16,7 +16,7 @@ export const useTaxiStore = defineStore('taxi', () => {
|
||||
_clearSafetyTimer()
|
||||
_safetyTimer = setTimeout(() => {
|
||||
if (isLoading.value) {
|
||||
console.warn('SIBU | taxiStore: safety timeout — reseteando isLoading')
|
||||
console.warn('SIB | taxiStore: safety timeout — reseteando isLoading')
|
||||
isLoading.value = false
|
||||
}
|
||||
}, 12000)
|
||||
|
||||
Reference in New Issue
Block a user