mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
aa3faae25b
Summary: Fixes a test util that broke after a sync with grist-core, and upgrades fixtures after a migration was added. Test Plan: N/A Reviewers: paulfitz Reviewed By: paulfitz Subscribers: paulfitz Differential Revision: https://phab.getgrist.com/D3810
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import {CursorPos} from 'app/client/components/Cursor';
|
|
import {makeT} from 'app/client/lib/localization';
|
|
import {ColumnRec} from 'app/client/models/DocModel';
|
|
import {textarea} from 'app/client/ui/inputs';
|
|
import {cssLabel, cssRow} from 'app/client/ui/RightPanelStyles';
|
|
import {testId, theme} from 'app/client/ui2018/cssVars';
|
|
import {dom, fromKo, MultiHolder, styled} from 'grainjs';
|
|
|
|
const t = makeT('FieldConfig');
|
|
|
|
export function buildDescriptionConfig(
|
|
owner: MultiHolder,
|
|
origColumn: ColumnRec,
|
|
cursor: ko.Computed<CursorPos>,
|
|
) {
|
|
|
|
// 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(
|
|
cursor.subscribe(() => {
|
|
editor?.blur();
|
|
})
|
|
);
|
|
|
|
return [
|
|
cssLabel(t("DESCRIPTION")),
|
|
cssRow(
|
|
editor = cssTextArea(fromKo(origColumn.description),
|
|
{ onInput: false },
|
|
{ rows: '3' },
|
|
dom.on('blur', async (e, elem) => {
|
|
await origColumn.description.saveOnly(elem.value);
|
|
}),
|
|
testId('column-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;
|
|
|
|
&::placeholder {
|
|
color: ${theme.inputPlaceholderFg};
|
|
}
|
|
|
|
&[readonly] {
|
|
background-color: ${theme.inputDisabledBg};
|
|
color: ${theme.inputDisabledFg};
|
|
}
|
|
`);
|