1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 05:05:24 +00:00

fixed element not found bug

This commit is contained in:
Bram Wiepjes 2025-04-01 21:57:51 +02:00
parent 6c7315ff5b
commit 358a51a6dc
5 changed files with 68 additions and 2 deletions
web-frontend/modules

View file

@ -221,6 +221,7 @@ export default function CoreModule(options) {
this.appendPlugin({ src: path.resolve(__dirname, 'plugins/posthog.js') })
this.appendPlugin({ src: path.resolve(__dirname, 'plugins/router.js') })
this.appendPlugin({ src: path.resolve(__dirname, 'plugins/version.js') })
this.appendPlugin({ src: path.resolve(__dirname, 'plugins/routeMounted.js') })
this.extendRoutes((configRoutes) => {
// Remove all the routes created by nuxt.

View file

@ -76,6 +76,7 @@ import integrationStore from '@baserow/modules/core/store/integration'
import userSourceStore from '@baserow/modules/core/store/userSource'
import notificationStore from '@baserow/modules/core/store/notification'
import userSourceUserStore from '@baserow/modules/core/store/userSourceUser'
import routeMounted from '@baserow/modules/core/store/routeMounted'
import en from '@baserow/modules/core/locales/en.json'
import fr from '@baserow/modules/core/locales/fr.json'
@ -203,6 +204,7 @@ export default (context, inject) => {
store.registerModule('userSource', userSourceStore)
store.registerModule('notification', notificationStore)
store.registerModule('userSourceUser', userSourceUserStore)
store.registerModule('routeMounted', routeMounted)
registry.register('authProvider', new PasswordAuthProviderType(context))
registry.register('job', new DuplicateApplicationJobType(context))

View file

@ -0,0 +1,36 @@
import Vue from 'vue'
/**
* This is a global mixin that's registered for every component. The purpose is to
* bind to the `mounted` hook and set the related route to the `routeMounted` store.
* This is used so that there is a reactive state of the mounted route. It can be
* used by any other process to reactively check if a route has fully loaded and is
* mounted, which can be needed if it depends on DOM elements to be rendered.
*/
Vue.mixin({
mounted() {
if (
this.$options.__file &&
this.$route &&
// Skip components that don't have a layout because those are not Nuxt pages.
this.$options.layout !== undefined
) {
this.$store.commit('routeMounted/SET_ROUTE_MOUNTED', {
mounted: true,
route: this.$route,
})
}
},
beforeDestroy() {
if (
this.$options.__file &&
this.$route &&
this.$options.layout !== undefined
) {
this.$store.commit('routeMounted/SET_ROUTE_MOUNTED', {
mounted: false,
route: null,
})
}
},
})

View file

@ -0,0 +1,24 @@
export const state = () => ({
routeComponentMounted: false,
currentRoute: null,
})
export const mutations = {
SET_ROUTE_MOUNTED(state, { mounted, route }) {
state.routeComponentMounted = mounted
state.currentRoute = route
},
}
export const getters = {
routeMounted(state) {
return state.routeComponentMounted ? state.currentRoute : null
},
}
export default {
namespaced: true,
state,
getters,
mutations,
}

View file

@ -155,9 +155,12 @@ export class DatabaseGuidedTourType extends GuidedTourType {
return 200
}
isActive(route) {
isActive() {
return (
route.name === 'database-table' &&
// Use the `routeMounted` because that gives us the route that's actually
// mounted, making sure that the selector elements have been rendered.
this.app.store.getters['routeMounted/routeMounted']?.name ===
'database-table' &&
// This tour is only compatible with the grid view.
this.app.store.getters['view/getSelected']?.type ===
GridViewType.getType()