mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
1654a2681f
Summary: This moves all client code to core, and makes minimal fix-ups to get grist and grist-core to compile correctly. The client works in core, but I'm leaving clean-up around the build and bundles to follow-up. Test Plan: existing tests pass; server-dev bundle looks sane Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2627
146 lines
3.4 KiB
TypeScript
146 lines
3.4 KiB
TypeScript
/**
|
|
* UI 2018 Checkboxes
|
|
*
|
|
* Includes:
|
|
* - squareCheckbox
|
|
* - circleCheckbox
|
|
* - labeledSquareCheckbox
|
|
* - labeledCircleCheckbox
|
|
*
|
|
* Checkboxes support passing in DomElementArgs, which can be used to register click handlers, set
|
|
* the disabled property, and other HTML <input> element behaviors.
|
|
*
|
|
* Examples:
|
|
* squareCheckbox(observable(true)),
|
|
* labeledSquareCheckbox(observable(false), 'Include other values', dom.prop('disabled', true)),
|
|
*/
|
|
|
|
import { colors } from 'app/client/ui2018/cssVars';
|
|
import { dom, DomArg, styled } from 'grainjs';
|
|
import { Observable } from 'grainjs';
|
|
|
|
export const cssLabel = styled('label', `
|
|
position: relative;
|
|
display: inline-flex;
|
|
min-width: 0px;
|
|
margin-bottom: 0px;
|
|
|
|
outline: none;
|
|
user-select: none;
|
|
|
|
--color: ${colors.darkGrey};
|
|
&:hover {
|
|
--color: ${colors.hover};
|
|
}
|
|
`);
|
|
|
|
// TODO: the !important markings are to trump bootstrap, and should be removed when it's gone.
|
|
export const cssCheckboxSquare = styled('input', `
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
margin: 0 !important;
|
|
padding: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
outline: none !important;
|
|
|
|
--radius: 3px;
|
|
|
|
&:checked:enabled {
|
|
--color: ${colors.lightGreen};
|
|
}
|
|
|
|
&:disabled {
|
|
--color: ${colors.darkGrey};
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.${cssLabel.className}:hover > &:checked:enabled {
|
|
--color: ${colors.darkGreen};
|
|
}
|
|
|
|
|
|
&::before, &::after {
|
|
content: '';
|
|
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
height: 16px;
|
|
width: 16px;
|
|
|
|
box-sizing: border-box;
|
|
border: 1px solid var(--color);
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
&:checked::before, &:disabled::before {
|
|
background-color: var(--color);
|
|
}
|
|
|
|
&:checked::after {
|
|
content: '';
|
|
position: absolute;
|
|
height: 16px;
|
|
width: 16px;
|
|
-webkit-mask-image: var(--icon-Tick);
|
|
-webkit-mask-size: contain;
|
|
-webkit-mask-position: center;
|
|
-webkit-mask-repeat: no-repeat;
|
|
background-color: ${colors.light};
|
|
}
|
|
|
|
&:not(:disabled)::after {
|
|
background-color: ${colors.light};
|
|
}
|
|
`);
|
|
|
|
export const cssCheckboxCircle = styled(cssCheckboxSquare, `
|
|
--radius: 100%;
|
|
`);
|
|
|
|
export const cssLabelText = styled('span', `
|
|
margin-left: 8px;
|
|
color: ${colors.dark};
|
|
font-weight: initial; /* negate bootstrap */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
`);
|
|
|
|
type CheckboxArg = DomArg<HTMLInputElement>;
|
|
|
|
function checkbox(
|
|
obs: Observable<boolean>, cssCheckbox: typeof cssCheckboxSquare, label: string = '', ...domArgs: CheckboxArg[]
|
|
) {
|
|
return cssLabel(
|
|
cssCheckbox(
|
|
{ type: 'checkbox' },
|
|
dom.prop('checked', obs),
|
|
dom.on('change', (ev, el) => obs.set(el.checked)),
|
|
...domArgs
|
|
),
|
|
label ? cssLabelText(label) : null
|
|
);
|
|
}
|
|
|
|
export function squareCheckbox(obs: Observable<boolean>, ...domArgs: CheckboxArg[]) {
|
|
return checkbox(obs, cssCheckboxSquare, '', ...domArgs);
|
|
}
|
|
|
|
export function circleCheckbox(obs: Observable<boolean>, ...domArgs: CheckboxArg[]) {
|
|
return checkbox(obs, cssCheckboxCircle, '', ...domArgs);
|
|
}
|
|
|
|
export function labeledSquareCheckbox(obs: Observable<boolean>, label: string, ...domArgs: CheckboxArg[]) {
|
|
return checkbox(obs, cssCheckboxSquare, label, ...domArgs);
|
|
}
|
|
|
|
export function labeledCircleCheckbox(obs: Observable<boolean>, label: string, ...domArgs: CheckboxArg[]) {
|
|
return checkbox(obs, cssCheckboxCircle, label, ...domArgs);
|
|
}
|