2021-08-05 13:36:47 -07:00
|
|
|
/*
|
|
|
|
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';
|
|
|
|
|
|
|
|
export const Expandable: React.FunctionComponent<{
|
2022-03-29 20:06:11 -08:00
|
|
|
title: JSX.Element | string,
|
2021-08-05 13:36:47 -07:00
|
|
|
setExpanded: Function,
|
|
|
|
expanded: Boolean,
|
|
|
|
style?: React.CSSProperties,
|
2022-03-29 20:06:11 -08:00
|
|
|
children: JSX.Element | JSX.Element[] | string,
|
|
|
|
}> = ({ title, children, setExpanded, expanded, style }) => {
|
2021-08-05 13:36:47 -07:00
|
|
|
return <div style={{ ...style, display: 'flex', flexDirection: 'column' }}>
|
2022-03-29 12:27:37 -08:00
|
|
|
<div style={{ display: 'flex', flexDirection: 'row', alignItems: 'center', whiteSpace: 'nowrap' }}>
|
2021-08-05 13:36:47 -07:00
|
|
|
<div
|
|
|
|
className={'codicon codicon-' + (expanded ? 'chevron-down' : 'chevron-right')}
|
2021-09-27 18:58:08 +02:00
|
|
|
style={{ cursor: 'pointer', color: 'var(--color)', marginRight: '4px' }}
|
2021-08-05 13:36:47 -07:00
|
|
|
onClick={() => setExpanded(!expanded)} />
|
|
|
|
{title}
|
|
|
|
</div>
|
2022-03-29 20:06:11 -08:00
|
|
|
{ expanded && <div style={{ display: 'flex', flex: 'auto', margin: '5px 0 5px 20px' }}>{children}</div> }
|
2021-08-05 13:36:47 -07:00
|
|
|
</div>;
|
|
|
|
};
|