Changes to commands in search window (#996)

- changes to commands in search window
This commit is contained in:
brendanlaschke 2023-07-30 22:29:10 +02:00 committed by GitHub
parent eafa30a9cf
commit 20a1946b35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,6 +77,33 @@ export function CommandMenu() {
}); });
const activities = activityData?.searchResults ?? []; const activities = activityData?.searchResults ?? [];
const commands = [
{
to: '/people',
label: 'Go to People',
shortcuts: ['G', 'P'],
},
{
to: '/companies',
label: 'Go to Companies',
shortcuts: ['G', 'C'],
},
{
to: '/opportunities',
label: 'Go to Opportunities',
shortcuts: ['G', 'O'],
},
{
to: '/settings/profile',
label: 'Go to Settings',
shortcuts: ['G', 'S'],
},
];
const matchingCommand = commands.find(
(cmd) => cmd.shortcuts.join('') === search?.toUpperCase(),
);
/* /*
TODO: Allow performing actions on page through CommandBar TODO: Allow performing actions on page through CommandBar
@ -132,6 +159,16 @@ export function CommandMenu() {
/> />
<StyledList> <StyledList>
<StyledEmpty>No results found.</StyledEmpty> <StyledEmpty>No results found.</StyledEmpty>
{matchingCommand && (
<StyledGroup heading="Navigate">
<CommandMenuItem
key={matchingCommand.shortcuts?.join('')}
to={matchingCommand.to}
label={matchingCommand.label}
shortcuts={matchingCommand.shortcuts}
/>
</StyledGroup>
)}
{!!people.length && ( {!!people.length && (
<StyledGroup heading="People"> <StyledGroup heading="People">
{people.map((person) => ( {people.map((person) => (
@ -182,28 +219,22 @@ export function CommandMenu() {
))} ))}
</StyledGroup> </StyledGroup>
)} )}
{!matchingCommand && (
<StyledGroup heading="Navigate"> <StyledGroup heading="Navigate">
{commands
.filter((cmd) =>
cmd.shortcuts?.join('').includes(search?.toUpperCase()),
)
.map((cmd) => (
<CommandMenuItem <CommandMenuItem
to="/people" key={cmd.shortcuts.join('')}
label="Go to People" to={cmd.to}
shortcuts={['G', 'P']} label={cmd.label}
/> shortcuts={cmd.shortcuts}
<CommandMenuItem
to="/companies"
label="Go to Companies"
shortcuts={['G', 'C']}
/>
<CommandMenuItem
to="/opportunities"
label="Go to Opportunities"
shortcuts={['G', 'O']}
/>
<CommandMenuItem
to="/settings/profile"
label="Go to Settings"
shortcuts={['G', 'S']}
/> />
))}
</StyledGroup> </StyledGroup>
)}
</StyledList> </StyledList>
</StyledDialog> </StyledDialog>
); );