comments
This commit is contained in:
parent
0a487f2744
commit
10dc4372c0
1 changed files with 30 additions and 6 deletions
|
@ -67,30 +67,54 @@ export const useRouteStore = defineStore('routeStore', {
|
||||||
_breadcrumbs: [] as Link[]
|
_breadcrumbs: [] as Link[]
|
||||||
}),
|
}),
|
||||||
actions: {
|
actions: {
|
||||||
|
/**
|
||||||
|
* Determines whether a route has showed a warning or not
|
||||||
|
* @param route the route to check
|
||||||
|
* @returns `true` if previously warned, `false` otherwise
|
||||||
|
*/
|
||||||
doesRouteRememberWarning(route: string) {
|
doesRouteRememberWarning(route: string) {
|
||||||
return this._routesAlreadyWarned[route]
|
return this._routesAlreadyWarned[route]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remembers whether a route showed a warning or not
|
||||||
|
* @param route the route to remember
|
||||||
|
*/
|
||||||
rememberRouteWarning(route: string) {
|
rememberRouteWarning(route: string) {
|
||||||
this._routesAlreadyWarned[route] = true
|
this._routesAlreadyWarned[route] = true
|
||||||
},
|
},
|
||||||
setBreadcrumbs(currentRoute: RouteLocationNormalizedLoaded, resolvedTitle?: string) {
|
|
||||||
if (currentRoute.path === '/') {
|
/**
|
||||||
|
* Sets the breadcrumbs array in the store
|
||||||
|
* @param route the current route
|
||||||
|
* @param resolvedTitle a title related to dynamic content loaded from a list-based template when in the view for that list
|
||||||
|
*/
|
||||||
|
setBreadcrumbs(route: RouteLocationNormalizedLoaded, resolvedTitle?: string) {
|
||||||
|
// breadcrumb shouldn't show on home page
|
||||||
|
if (route.path === '/') {
|
||||||
this._breadcrumbs = []
|
this._breadcrumbs = []
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const split = currentRoute.path.split('/')
|
// split '/my/path' into '', 'my', 'path'
|
||||||
|
const split = route.path.split('/')
|
||||||
|
// adjust for root; '', 'my', 'path' becomes '/', 'my', 'path'
|
||||||
split[0] = '/'
|
split[0] = '/'
|
||||||
|
// compile paths from the split through some array functions
|
||||||
const paths = [] as string[]
|
const paths = [] as string[]
|
||||||
split.forEach((val, i) => {
|
split.forEach((val, i) => {
|
||||||
|
// get the paths leading up to the current index plus the next one
|
||||||
const sliced = split.slice(0, i + 1)
|
const sliced = split.slice(0, i + 1)
|
||||||
if (sliced.length > 0) {
|
// reduce converts '/', 'my', 'path' to a breadcrumb trail '/', '/my', '/my/path'
|
||||||
paths.push(sliced.reduce((prev, curr) => prev === '/' ? `/${curr}` : `${prev}/${curr}`))
|
// the conditional '/' check prevents accidentally prepending '//' to each breadcrumb
|
||||||
}
|
paths.push(sliced.reduce((prev, curr) => prev === '/' ? `/${curr}` : `${prev}/${curr}`))
|
||||||
})
|
})
|
||||||
|
// map paths into breadcrumb info
|
||||||
this._breadcrumbs = paths.map((path, index) => {
|
this._breadcrumbs = paths.map((path, index) => {
|
||||||
return {
|
return {
|
||||||
href: path,
|
href: path,
|
||||||
|
// the tail end should be the resolvedTitle from a view route if specified,
|
||||||
|
// otherwise use the title in the route definition
|
||||||
caption: index === paths.length - 1 && !!resolvedTitle ? resolvedTitle : this._routes[path]?.title,
|
caption: index === paths.length - 1 && !!resolvedTitle ? resolvedTitle : this._routes[path]?.title,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue