71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
/*
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
import './chip.css';
|
|
import './colors.css';
|
|
import './common.css';
|
|
import * as icons from './icons';
|
|
import { clsx } from '@web/uiUtils';
|
|
import { type AnchorID, useAnchor } from './links';
|
|
|
|
export const Chip: React.FC<{
|
|
header: JSX.Element | string,
|
|
expanded?: boolean,
|
|
noInsets?: boolean,
|
|
setExpanded?: (expanded: boolean) => void,
|
|
children?: any,
|
|
dataTestId?: string,
|
|
}> = ({ header, expanded, setExpanded, children, noInsets, dataTestId }) => {
|
|
const id = React.useId();
|
|
return <div className='chip' data-testid={dataTestId}>
|
|
<div
|
|
role='button'
|
|
aria-expanded={!!expanded}
|
|
aria-controls={id}
|
|
className={clsx('chip-header', setExpanded && ' expanded-' + expanded)}
|
|
onClick={() => setExpanded?.(!expanded)}
|
|
title={typeof header === 'string' ? header : undefined}>
|
|
{setExpanded && !!expanded && icons.downArrow()}
|
|
{setExpanded && !expanded && icons.rightArrow()}
|
|
{header}
|
|
</div>
|
|
{(!setExpanded || expanded) && <div id={id} role='region' className={clsx('chip-body', noInsets && 'chip-body-no-insets')}>{children}</div>}
|
|
</div>;
|
|
};
|
|
|
|
export const AutoChip: React.FC<{
|
|
header: JSX.Element | string,
|
|
initialExpanded?: boolean,
|
|
noInsets?: boolean,
|
|
children?: any,
|
|
dataTestId?: string,
|
|
revealOnAnchorId?: AnchorID,
|
|
}> = ({ header, initialExpanded, noInsets, children, dataTestId, revealOnAnchorId }) => {
|
|
const [expanded, setExpanded] = React.useState(initialExpanded ?? true);
|
|
const onReveal = React.useCallback(() => setExpanded(true), []);
|
|
useAnchor(revealOnAnchorId, onReveal);
|
|
return <Chip
|
|
header={header}
|
|
expanded={expanded}
|
|
setExpanded={setExpanded}
|
|
noInsets={noInsets}
|
|
dataTestId={dataTestId}
|
|
>
|
|
{children}
|
|
</Chip>;
|
|
};
|