* Remove tan warning from ml commands, move to experimental green branding * Oops * Removed unused var --------- Co-authored-by: Frank Noirot <frankjohnson1993@gmail.com>
280 lines
10 KiB
TypeScript
280 lines
10 KiB
TypeScript
import React, { useMemo, useState } from 'react'
|
|
import { useHotkeys } from 'react-hotkeys-hook'
|
|
|
|
import { ActionButton } from '@src/components/ActionButton'
|
|
import { CustomIcon } from '@src/components/CustomIcon'
|
|
import Tooltip from '@src/components/Tooltip'
|
|
import type {
|
|
KclCommandValue,
|
|
KclExpressionWithVariable,
|
|
} from '@src/lib/commandTypes'
|
|
import type { Selections } from '@src/lib/selections'
|
|
import { getSelectionTypeDisplayText } from '@src/lib/selections'
|
|
import { roundOff } from '@src/lib/utils'
|
|
import { commandBarActor, useCommandBarState } from '@src/lib/singletons'
|
|
|
|
function CommandBarHeader({ children }: React.PropsWithChildren<object>) {
|
|
const commandBarState = useCommandBarState()
|
|
const {
|
|
context: { selectedCommand, currentArgument, argumentsToSubmit },
|
|
} = commandBarState
|
|
const nonHiddenArgs = useMemo(() => {
|
|
if (!selectedCommand?.args) return undefined
|
|
const s = { ...selectedCommand.args }
|
|
for (const [name, arg] of Object.entries(s)) {
|
|
if (
|
|
typeof arg.hidden === 'function'
|
|
? arg.hidden(commandBarState.context)
|
|
: arg.hidden
|
|
)
|
|
delete s[name]
|
|
}
|
|
return s
|
|
}, [selectedCommand])
|
|
const isReviewing = commandBarState.matches('Review')
|
|
const [showShortcuts, setShowShortcuts] = useState(false)
|
|
|
|
useHotkeys(
|
|
'alt',
|
|
() => setShowShortcuts(true),
|
|
{ enableOnFormTags: true, enableOnContentEditable: true },
|
|
[showShortcuts]
|
|
)
|
|
useHotkeys(
|
|
'alt',
|
|
() => setShowShortcuts(false),
|
|
{ keyup: true, enableOnFormTags: true, enableOnContentEditable: true },
|
|
[showShortcuts]
|
|
)
|
|
useHotkeys(
|
|
[
|
|
'alt+1',
|
|
'alt+2',
|
|
'alt+3',
|
|
'alt+4',
|
|
'alt+5',
|
|
'alt+6',
|
|
'alt+7',
|
|
'alt+8',
|
|
'alt+9',
|
|
'alt+0',
|
|
],
|
|
(_, b) => {
|
|
if (b.keys && !Number.isNaN(parseInt(b.keys[0], 10))) {
|
|
if (!nonHiddenArgs) return
|
|
const argName = Object.keys(nonHiddenArgs)[parseInt(b.keys[0], 10) - 1]
|
|
const arg = nonHiddenArgs[argName]
|
|
if (!argName || !arg) return
|
|
commandBarActor.send({
|
|
type: 'Change current argument',
|
|
data: { arg: { ...arg, name: argName } },
|
|
})
|
|
}
|
|
},
|
|
{ keyup: true, enableOnFormTags: true, enableOnContentEditable: true },
|
|
[argumentsToSubmit, selectedCommand]
|
|
)
|
|
|
|
return (
|
|
selectedCommand &&
|
|
argumentsToSubmit && (
|
|
<>
|
|
<div className="group px-4 text-sm flex gap-4 items-start">
|
|
<div className="flex flex-1 flex-wrap gap-2">
|
|
<p
|
|
data-command-name={selectedCommand?.name}
|
|
className="pr-2 flex gap-2 items-center"
|
|
>
|
|
{selectedCommand &&
|
|
'icon' in selectedCommand &&
|
|
selectedCommand.icon && (
|
|
<CustomIcon name={selectedCommand.icon} className="w-5 h-5" />
|
|
)}
|
|
<span data-testid="command-name">
|
|
{selectedCommand.displayName || selectedCommand.name}
|
|
</span>
|
|
{selectedCommand.status === 'experimental' ? (
|
|
<span className="text-ml-black text-xs bg-ml-green rounded-full ml-2 px-2 py-1">
|
|
experimental
|
|
</span>
|
|
) : (
|
|
<span className="pr-2" />
|
|
)}
|
|
</p>
|
|
{Object.entries(nonHiddenArgs || {})
|
|
.filter(([_, argConfig]) =>
|
|
typeof argConfig.required === 'function'
|
|
? argConfig.required(commandBarState.context)
|
|
: argConfig.required
|
|
)
|
|
.map(([argName, arg], i) => {
|
|
const argValue =
|
|
(typeof argumentsToSubmit[argName] === 'function'
|
|
? argumentsToSubmit[argName](commandBarState.context)
|
|
: argumentsToSubmit[argName]) || ''
|
|
|
|
return (
|
|
<button
|
|
data-testid="cmd-bar-input-tab"
|
|
data-is-current-arg={
|
|
argName === currentArgument?.name ? 'true' : 'false'
|
|
}
|
|
disabled={!isReviewing && currentArgument?.name === argName}
|
|
onClick={() => {
|
|
commandBarActor.send({
|
|
type: isReviewing
|
|
? 'Edit argument'
|
|
: 'Change current argument',
|
|
data: { arg: { ...arg, name: argName } },
|
|
})
|
|
}}
|
|
key={argName}
|
|
className={`relative w-fit px-2 py-1 rounded-sm flex gap-2 items-center border ${
|
|
argName === currentArgument?.name
|
|
? selectedCommand.status === 'experimental'
|
|
? 'disabled:bg-ml-green/10 dark:disabled:bg-ml-green/20 disabled:border-ml-green dark:disabled:border-ml-green disabled:text-chalkboard-100 dark:disabled:text-chalkboard-10'
|
|
: 'disabled:bg-primary/10 dark:disabled:bg-primary/20 disabled:border-primary dark:disabled:border-primary disabled:text-chalkboard-100 dark:disabled:text-chalkboard-10'
|
|
: 'bg-chalkboard-20/50 dark:bg-chalkboard-80/50 border-chalkboard-20 dark:border-chalkboard-80'
|
|
}`}
|
|
>
|
|
<span
|
|
data-testid={`arg-name-${argName.toLowerCase()}`}
|
|
data-test-name="arg-name"
|
|
className="capitalize"
|
|
>
|
|
{arg.displayName || argName}
|
|
</span>
|
|
<span className="sr-only">: </span>
|
|
<span data-testid="header-arg-value">
|
|
{argValue ? (
|
|
arg.inputType === 'selection' ||
|
|
arg.inputType === 'selectionMixed' ? (
|
|
getSelectionTypeDisplayText(argValue as Selections)
|
|
) : arg.inputType === 'kcl' ? (
|
|
roundOff(
|
|
Number(
|
|
(argValue as KclCommandValue).valueCalculated
|
|
),
|
|
4
|
|
)
|
|
) : arg.inputType === 'text' && !arg.valueSummary ? (
|
|
`${argValue.slice(0, 12)}${argValue.length > 12 ? '...' : ''}`
|
|
) : typeof argValue === 'object' ? (
|
|
arg.valueSummary ? (
|
|
arg.valueSummary(argValue)
|
|
) : (
|
|
JSON.stringify(argValue)
|
|
)
|
|
) : (
|
|
<em>
|
|
{arg.valueSummary
|
|
? arg.valueSummary(argValue)
|
|
: argValue}
|
|
</em>
|
|
)
|
|
) : null}
|
|
</span>
|
|
{showShortcuts && (
|
|
<small className="absolute -top-[1px] right-full translate-x-1/2 px-0.5 rounded-sm bg-chalkboard-80 text-chalkboard-10 dark:bg-primary dark:text-chalkboard-100">
|
|
<span className="sr-only">Hotkey: </span>
|
|
{i + 1}
|
|
</small>
|
|
)}
|
|
{arg.inputType === 'kcl' &&
|
|
!!argValue &&
|
|
typeof argValue === 'object' &&
|
|
'variableName' in (argValue as KclCommandValue) && (
|
|
<>
|
|
<CustomIcon
|
|
name="make-variable"
|
|
className="w-4 h-4"
|
|
/>
|
|
<Tooltip position="bottom">
|
|
New variable:{' '}
|
|
{
|
|
(
|
|
argumentsToSubmit[
|
|
argName
|
|
] as KclExpressionWithVariable
|
|
).variableName
|
|
}
|
|
</Tooltip>
|
|
</>
|
|
)}
|
|
</button>
|
|
)
|
|
})}
|
|
</div>
|
|
{isReviewing ? (
|
|
<ReviewingButton
|
|
bgClassName={
|
|
selectedCommand.status === 'experimental' ? '!bg-ml-green' : ''
|
|
}
|
|
iconClassName={
|
|
selectedCommand.status === 'experimental'
|
|
? '!text-ml-black'
|
|
: ''
|
|
}
|
|
/>
|
|
) : (
|
|
<GatheringArgsButton
|
|
bgClassName={
|
|
selectedCommand.status === 'experimental' ? '!bg-ml-green' : ''
|
|
}
|
|
iconClassName={
|
|
selectedCommand.status === 'experimental'
|
|
? '!text-ml-black'
|
|
: ''
|
|
}
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="block w-full my-2 h-[1px] bg-chalkboard-20 dark:bg-chalkboard-80" />
|
|
{children}
|
|
</>
|
|
)
|
|
)
|
|
}
|
|
|
|
type ButtonProps = { bgClassName?: string; iconClassName?: string }
|
|
function ReviewingButton({ bgClassName, iconClassName }: ButtonProps) {
|
|
return (
|
|
<ActionButton
|
|
Element="button"
|
|
autoFocus
|
|
type="submit"
|
|
form="review-form"
|
|
className="w-fit !p-0 rounded-sm hover:shadow"
|
|
data-testid="command-bar-submit"
|
|
iconStart={{
|
|
icon: 'checkmark',
|
|
bgClassName: `p-1 rounded-sm !bg-primary hover:brightness-110 ${bgClassName}`,
|
|
iconClassName: `!text-chalkboard-10 ${iconClassName}`,
|
|
}}
|
|
>
|
|
<span className="sr-only">Submit command</span>
|
|
</ActionButton>
|
|
)
|
|
}
|
|
|
|
function GatheringArgsButton({ bgClassName, iconClassName }: ButtonProps) {
|
|
return (
|
|
<ActionButton
|
|
Element="button"
|
|
type="submit"
|
|
form="arg-form"
|
|
className="w-fit !p-0 rounded-sm hover:shadow"
|
|
data-testid="command-bar-continue"
|
|
iconStart={{
|
|
icon: 'arrowRight',
|
|
bgClassName: `p-1 rounded-sm !bg-primary hover:brightness-110 ${bgClassName}`,
|
|
iconClassName: `!text-chalkboard-10 ${iconClassName}`,
|
|
}}
|
|
>
|
|
<span className="sr-only">Continue</span>
|
|
</ActionButton>
|
|
)
|
|
}
|
|
|
|
export default CommandBarHeader
|