You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.7 KiB
TypeScript
111 lines
2.7 KiB
TypeScript
import React, { ReactNode } from 'react';
|
|
import styled, { CSSProperties } from 'styled-components';
|
|
|
|
// NOTE Used for descendant components
|
|
export const StyledContent = styled.div<{ disabled: boolean }>`
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
color: ${props => (props.disabled ? 'var(--disabled-color)' : 'inherit')};
|
|
`;
|
|
|
|
export const StyledText = styled.span`
|
|
font-size: var(--font-size-md);
|
|
font-weight: 500;
|
|
margin-inline-start: var(--margins-lg);
|
|
margin-inline-end: var(--margins-lg);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
/* TODO needs RTL support */
|
|
text-align: left;
|
|
`;
|
|
|
|
export const PanelLabel = styled.p`
|
|
color: var(--text-secondary-color);
|
|
width: 100%;
|
|
margin: 0;
|
|
padding-left: calc(var(--margins-lg) * 2 + var(--margins-sm));
|
|
padding-bottom: var(--margins-sm);
|
|
`;
|
|
|
|
const StyledRoundedPanelButtonGroup = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
background: var(--right-panel-item-background-color);
|
|
border-radius: 16px;
|
|
padding: var(--margins-lg);
|
|
margin: 0 var(--margins-lg);
|
|
width: -webkit-fill-available;
|
|
`;
|
|
|
|
const PanelButtonContainer = styled.div`
|
|
overflow: auto;
|
|
min-height: 50px;
|
|
max-height: 100%;
|
|
`;
|
|
|
|
type PanelButtonGroupProps = {
|
|
children: ReactNode;
|
|
style?: CSSProperties;
|
|
};
|
|
|
|
export const PanelButtonGroup = (props: PanelButtonGroupProps) => {
|
|
const { children, style } = props;
|
|
return (
|
|
<StyledRoundedPanelButtonGroup style={style}>
|
|
<PanelButtonContainer>{children}</PanelButtonContainer>
|
|
</StyledRoundedPanelButtonGroup>
|
|
);
|
|
};
|
|
|
|
const StyledPanelButton = styled.button<{
|
|
disabled: boolean;
|
|
}>`
|
|
cursor: ${props => (props.disabled ? 'not-allowed' : 'pointer')};
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-shrink: 0;
|
|
flex-grow: 1;
|
|
font-family: var(--font-default);
|
|
padding: 0px var(--margins-sm);
|
|
min-height: 50px;
|
|
width: 100%;
|
|
transition: var(--default-duration);
|
|
color: ${props => (props.disabled ? 'var(--disabled-color)' : 'inherit')};
|
|
|
|
:not(:last-child) {
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
`;
|
|
|
|
export type PanelButtonProps = {
|
|
// https://styled-components.com/docs/basics#styling-any-component
|
|
className?: string;
|
|
disabled?: boolean;
|
|
children: ReactNode;
|
|
onClick: (...args: Array<any>) => void;
|
|
dataTestId: string;
|
|
style?: CSSProperties;
|
|
};
|
|
|
|
export const PanelButton = (props: PanelButtonProps) => {
|
|
const { className, disabled = false, children, onClick, dataTestId, style } = props;
|
|
|
|
return (
|
|
<StyledPanelButton
|
|
className={className}
|
|
disabled={disabled}
|
|
onClick={onClick}
|
|
style={style}
|
|
data-testid={dataTestId}
|
|
>
|
|
{children}
|
|
</StyledPanelButton>
|
|
);
|
|
};
|