mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
import {theme, vars} from 'app/client/ui2018/cssVars';
|
|
import {icon} from 'app/client/ui2018/icons';
|
|
import {dom, DomElementArg, Observable, styled} from "grainjs";
|
|
import {t} from 'app/client/lib/localization';
|
|
|
|
export function addNewButton(isOpen: Observable<boolean> | boolean = true, ...args: DomElementArg[]) {
|
|
return cssAddNewButton(
|
|
cssAddNewButton.cls('-open', isOpen),
|
|
// Setting spacing as flex items allows them to shrink faster when there isn't enough space.
|
|
cssLeftMargin(),
|
|
cssAddText(t('AddNewButton.AddNew')),
|
|
dom('div', {style: 'flex: 1 1 16px'}),
|
|
cssPlusButton(cssPlusIcon('Plus')),
|
|
dom('div', {style: 'flex: 0 1 16px'}),
|
|
...args,
|
|
);
|
|
}
|
|
|
|
export const cssAddNewButton = styled('div', `
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 22px 0px 22px 0px;
|
|
height: 40px;
|
|
color: ${theme.controlPrimaryFg};
|
|
border: none;
|
|
border-radius: 4px;
|
|
|
|
cursor: default;
|
|
text-align: left;
|
|
font-size: ${vars.bigControlFontSize};
|
|
font-weight: bold;
|
|
overflow: hidden;
|
|
|
|
--circle-color: ${theme.addNewCircleSmallBg};
|
|
|
|
&:hover, &.weasel-popup-open {
|
|
--circle-color: ${theme.addNewCircleSmallHoverBg};
|
|
}
|
|
&-open {
|
|
margin: 22px 16px 22px 16px;
|
|
background-color: ${theme.controlPrimaryBg};
|
|
--circle-color: ${theme.addNewCircleBg};
|
|
}
|
|
&-open:hover, &-open.weasel-popup-open {
|
|
background-color: ${theme.controlPrimaryHoverBg};
|
|
--circle-color: ${theme.addNewCircleHoverBg};
|
|
}
|
|
`);
|
|
const cssLeftMargin = styled('div', `
|
|
flex: 0 1 24px;
|
|
display: none;
|
|
.${cssAddNewButton.className}-open & {
|
|
display: block;
|
|
}
|
|
`);
|
|
const cssAddText = styled('div', `
|
|
color: ${theme.controlPrimaryFg};
|
|
flex: 0 0.5 content;
|
|
white-space: nowrap;
|
|
min-width: 0px;
|
|
display: none;
|
|
.${cssAddNewButton.className}-open & {
|
|
display: block;
|
|
}
|
|
`);
|
|
const cssPlusButton = styled('div', `
|
|
flex: none;
|
|
height: 28px;
|
|
width: 28px;
|
|
border-radius: 14px;
|
|
background-color: var(--circle-color);
|
|
text-align: center;
|
|
`);
|
|
const cssPlusIcon = styled(icon, `
|
|
background-color: ${theme.addNewCircleFg};
|
|
margin-top: 6px;
|
|
`);
|