f5e1d7825a
* Some cleaning * Fix seeds * Fix all sign in, sign up flow and apiKey optimistic rendering * Fix
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import {
|
|
IconBuildingSkyscraper,
|
|
IconCheckbox,
|
|
IconSettings,
|
|
IconTargetArrow,
|
|
IconUser,
|
|
} from '@/ui/display/icon';
|
|
|
|
import { Command, CommandType } from '../types/Command';
|
|
|
|
export const commandMenuCommands: Command[] = [
|
|
{
|
|
to: '/objects/people',
|
|
label: 'Go to People',
|
|
type: CommandType.Navigate,
|
|
firstHotKey: 'G',
|
|
secondHotKey: 'P',
|
|
Icon: IconUser,
|
|
},
|
|
{
|
|
to: '/objects/companies',
|
|
label: 'Go to Companies',
|
|
type: CommandType.Navigate,
|
|
firstHotKey: 'G',
|
|
secondHotKey: 'C',
|
|
Icon: IconBuildingSkyscraper,
|
|
},
|
|
{
|
|
to: '/objects/opportunities',
|
|
label: 'Go to Opportunities',
|
|
type: CommandType.Navigate,
|
|
firstHotKey: 'G',
|
|
secondHotKey: 'O',
|
|
Icon: IconTargetArrow,
|
|
},
|
|
{
|
|
to: '/settings/profile',
|
|
label: 'Go to Settings',
|
|
type: CommandType.Navigate,
|
|
firstHotKey: 'G',
|
|
secondHotKey: 'S',
|
|
Icon: IconSettings,
|
|
},
|
|
{
|
|
to: '/tasks',
|
|
label: 'Go to Tasks',
|
|
type: CommandType.Navigate,
|
|
firstHotKey: 'G',
|
|
secondHotKey: 'T',
|
|
Icon: IconCheckbox,
|
|
},
|
|
];
|