mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
273b976cab
Summary: Polishes support for dark mode and enables syncing with the OS theme by default. Test Plan: Manual. Reviewers: JakubSerafin Reviewed By: JakubSerafin Subscribers: JakubSerafin Differential Revision: https://phab.getgrist.com/D4041
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import {makeT} from 'app/client/lib/localization';
|
|
import {KoSaveableObservable} from 'app/client/models/modelUtil';
|
|
import {autoGrow} from 'app/client/ui/forms';
|
|
import {textarea} from 'app/client/ui/inputs';
|
|
import {cssLabel, cssRow} from 'app/client/ui/RightPanelStyles';
|
|
import {testId, theme} from 'app/client/ui2018/cssVars';
|
|
import {CursorPos} from 'app/plugin/GristAPI';
|
|
import {dom, fromKo, MultiHolder, styled} from 'grainjs';
|
|
|
|
const t = makeT('DescriptionConfig');
|
|
|
|
export function buildDescriptionConfig(
|
|
owner: MultiHolder,
|
|
description: KoSaveableObservable<string>,
|
|
options: {
|
|
cursor: ko.Computed<CursorPos>,
|
|
testPrefix: string,
|
|
},
|
|
) {
|
|
|
|
// We will listen to cursor position and force a blur event on
|
|
// the text input, which will trigger save before the column observable
|
|
// will change its value.
|
|
// Otherwise, blur will be invoked after column change and save handler will
|
|
// update a different column.
|
|
let editor: HTMLTextAreaElement | undefined;
|
|
owner.autoDispose(
|
|
options.cursor.subscribe(() => {
|
|
editor?.blur();
|
|
})
|
|
);
|
|
|
|
return [
|
|
cssLabel(t("DESCRIPTION")),
|
|
cssRow(
|
|
editor = cssTextArea(fromKo(description),
|
|
{ onInput: false },
|
|
{ rows: '3' },
|
|
dom.on('blur', async (e, elem) => {
|
|
await description.saveOnly(elem.value);
|
|
}),
|
|
testId(`${options.testPrefix}-description`),
|
|
autoGrow(fromKo(description))
|
|
)
|
|
),
|
|
];
|
|
}
|
|
|
|
const cssTextArea = styled(textarea, `
|
|
color: ${theme.inputFg};
|
|
background-color: ${theme.mainPanelBg};
|
|
border: 1px solid ${theme.inputBorder};
|
|
width: 100%;
|
|
outline: none;
|
|
border-radius: 3px;
|
|
padding: 3px 7px;
|
|
min-height: calc(3em * 1.5);
|
|
resize: none;
|
|
|
|
&::placeholder {
|
|
color: ${theme.inputPlaceholderFg};
|
|
}
|
|
|
|
&[readonly] {
|
|
background-color: ${theme.inputDisabledBg};
|
|
color: ${theme.inputDisabledFg};
|
|
}
|
|
`);
|