diff options
Diffstat (limited to 'src/lib/CommandPalette/actions.ts')
| -rw-r--r-- | src/lib/CommandPalette/actions.ts | 47 |
1 files changed, 44 insertions, 3 deletions
diff --git a/src/lib/CommandPalette/actions.ts b/src/lib/CommandPalette/actions.ts index 16179864..49efa536 100644 --- a/src/lib/CommandPalette/actions.ts +++ b/src/lib/CommandPalette/actions.ts @@ -11,12 +11,46 @@ export const defaultActions: CommandPaletteAction[] = [ { name: 'Home', url: '/', - tags: ['main', 'manga', 'anime', 'light', 'dashboard', 'start', 'begin', 'novels'] + tags: ['main', 'manga', 'anime', 'light', 'dashboard', 'start', 'begin', 'novels', 'list'], + actions: [ + { + name: 'Upcoming Episodes', + url: '/', + tags: ['anime', 'list'] + }, + { + name: 'Not Yet Released', + url: '/', + tags: ['anime', 'schedule', 'list'] + }, + { + name: 'Due Episodes', + url: '/', + tags: ['anime', 'list'] + }, + { + name: 'Manga & Light Novels', + url: '/', + tags: ['novels', 'manga', 'list'] + } + ] }, { name: 'Completed', url: '/completed', - tags: ['finish', 'end', 'done', 'finish', 'end', 'done', 'anime', 'novels', 'manga'] + tags: ['finish', 'end', 'done', 'finish', 'end', 'done', 'anime', 'novels', 'manga'], + actions: [ + { + name: 'Anime', + url: '/completed', + tags: ['anime', 'list'] + }, + { + name: 'Manga & Light Novels', + url: '/completed', + tags: ['novels', 'manga', 'list'] + } + ] }, { name: 'Subtitle Schedule', @@ -97,7 +131,14 @@ export const defaultActions: CommandPaletteAction[] = [ { name: 'My Profile', url: '/user', - tags: ['user', 'me', 'settings'] + tags: ['user', 'me', 'settings'], + actions: [ + { + name: 'User Preferences', + url: '/user', + tags: ['user', 'me', 'settings'] + } + ] }, { name: 'My Badge Wall', |