Fix navbar links not rendering active when thread is open
This commit is contained in:
parent
cf3fb3e6ef
commit
a3494184c8
3 changed files with 61 additions and 9 deletions
|
@ -239,9 +239,11 @@ function deleteItem() {
|
|||
function openThread(e: MouseEvent | TouchEvent, index: number) {
|
||||
e.preventDefault();
|
||||
if (!dragged.value) {
|
||||
router.push(
|
||||
isSelected(index) ? props.baseUrl :
|
||||
`${props.baseUrl}/${props.item.source}/${props.item.sourceItem}/${index}`);
|
||||
if (isSelected(index)) {
|
||||
emits("deselect");
|
||||
} else {
|
||||
router.push(`${props.baseUrl}/${props.item.source}/${props.item.sourceItem}/${index}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
60
src/main.ts
60
src/main.ts
|
@ -11,11 +11,61 @@ import Unsorted from "./components/pages/Unsorted.vue";
|
|||
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{ path: '/', component: Todo, name: 'home' },
|
||||
{ path: '/todo/:source(\\d+)?/:sourceItem(\\d+)?/:thread(\\d+)?', component: Todo, name: 'todo' },
|
||||
{ path: '/snoozed/:source(\\d+)?/:sourceItem(\\d+)?/:thread(\\d+)?', component: Snoozed, name: 'snoozed' },
|
||||
{ path: '/low/:source(\\d+)?/:sourceItem(\\d+)?/:thread(\\d+)?', component: LowPriority, name: 'low' },
|
||||
{ path: '/source/:source(\\d+)/:sourceItem(\\d+)?/:thread(\\d+)?/:event(\\d+)?', component: Source, name: 'source' },
|
||||
{ path: '/unsorted/:source(\\d+)?/:sourceItem(\\d+)?/:thread(\\d+)?', component: Unsorted, name: 'unsorted' },
|
||||
{
|
||||
path: '/todo',
|
||||
component: Todo,
|
||||
name: 'todo',
|
||||
children: [
|
||||
{
|
||||
path: ':source(\\d+)/:sourceItem(\\d+)/:thread(\\d+)',
|
||||
component: Todo
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/snoozed',
|
||||
component: Snoozed,
|
||||
name: 'snoozed',
|
||||
children: [
|
||||
{
|
||||
path: ':source(\\d+)/:sourceItem(\\d+)/:thread(\\d+)',
|
||||
component: Snoozed
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/low',
|
||||
component: LowPriority,
|
||||
name: 'low',
|
||||
children: [
|
||||
{
|
||||
path: ':source(\\d+)/:sourceItem(\\d+)/:thread(\\d+)',
|
||||
component: LowPriority
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/source/:source(\\d+)',
|
||||
component: Source,
|
||||
name: 'source',
|
||||
children: [
|
||||
{
|
||||
path: ':sourceItem(\\d+)/:thread(\\d+)/:event(\\d+)?',
|
||||
component: Source
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/unsorted',
|
||||
component: Unsorted,
|
||||
name: 'unsorted',
|
||||
children: [
|
||||
{
|
||||
path: ':source(\\d+)/:sourceItem(\\d+)/:thread(\\d+)',
|
||||
component: Unsorted
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
const router = createRouter({
|
||||
|
|
Loading…
Reference in a new issue