mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
4befca1c92
trad: make the widgets and the Welcome Tour translatable feat(translation): create automatisation for synchronize key in other locals than en trad: add french translations fix(trad): remove all useless code fix(trad): convert tab to space indentation fix(trad): add line to english trads
102 lines
3.4 KiB
TypeScript
102 lines
3.4 KiB
TypeScript
import { makeT } from 'app/client/lib/localization';
|
|
import {allCommands} from 'app/client/components/commands';
|
|
import {GristDoc} from 'app/client/components/GristDoc';
|
|
import {ViewFieldRec} from 'app/client/models/entities/ViewFieldRec';
|
|
import {textButton} from 'app/client/ui2018/buttons';
|
|
import {ColorOption, colorSelect} from 'app/client/ui2018/ColorSelect';
|
|
import {theme, vars} from 'app/client/ui2018/cssVars';
|
|
import {ConditionalStyle} from 'app/client/widgets/ConditionalStyle';
|
|
import {Computed, Disposable, dom, DomContents, fromKo, styled} from 'grainjs';
|
|
|
|
const t = makeT('CellStyle');
|
|
|
|
export class CellStyle extends Disposable {
|
|
|
|
constructor(
|
|
private _field: ViewFieldRec,
|
|
private _gristDoc: GristDoc,
|
|
private _defaultTextColor: string
|
|
) {
|
|
super();
|
|
}
|
|
|
|
public buildDom(): DomContents {
|
|
return [
|
|
cssLine(
|
|
cssLabel(t('CELL STYLE')),
|
|
cssButton(t('Open row styles'), dom.on('click', allCommands.viewTabOpen.run)),
|
|
),
|
|
cssRow(
|
|
dom.domComputedOwned(fromKo(this._field.config.style), (holder, options) => {
|
|
const textColor = fromKo(options.prop("textColor"));
|
|
const fillColor = fromKo(options.prop("fillColor"));
|
|
const fontBold = fromKo(options.prop("fontBold"));
|
|
const fontUnderline = fromKo(options.prop("fontUnderline"));
|
|
const fontItalic = fromKo(options.prop("fontItalic"));
|
|
const fontStrikethrough = fromKo(options.prop("fontStrikethrough"));
|
|
const hasMixedStyle = Computed.create(holder, use => {
|
|
if (!use(this._field.config.multiselect)) { return false; }
|
|
const commonStyle = [
|
|
use(options.mixed('textColor')),
|
|
use(options.mixed('fillColor')),
|
|
use(options.mixed('fontBold')),
|
|
use(options.mixed('fontUnderline')),
|
|
use(options.mixed('fontItalic')),
|
|
use(options.mixed('fontStrikethrough'))
|
|
];
|
|
return commonStyle.some(Boolean);
|
|
});
|
|
return colorSelect(
|
|
{
|
|
textColor: new ColorOption(
|
|
{ color: textColor, defaultColor: this._defaultTextColor, noneText: 'default'}
|
|
),
|
|
fillColor: new ColorOption(
|
|
{ color: fillColor, allowsNone: true, noneText: 'none'}
|
|
),
|
|
fontBold: fontBold,
|
|
fontItalic: fontItalic,
|
|
fontUnderline: fontUnderline,
|
|
fontStrikethrough: fontStrikethrough
|
|
}, {
|
|
onSave: () => options.save(),
|
|
onRevert: () => options.revert(),
|
|
placeholder: use => use(hasMixedStyle) ? t('Mixed style') : t('Default cell style')
|
|
}
|
|
);
|
|
}),
|
|
),
|
|
dom.create(ConditionalStyle, t("Cell Style"), this._field, this._gristDoc, fromKo(this._field.config.multiselect))
|
|
];
|
|
}
|
|
}
|
|
|
|
const cssLine = styled('div', `
|
|
display: flex;
|
|
margin: 16px 16px 12px 16px;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
`);
|
|
|
|
const cssLabel = styled('div', `
|
|
color: ${theme.text};
|
|
text-transform: uppercase;
|
|
font-size: ${vars.xsmallFontSize};
|
|
`);
|
|
|
|
const cssButton = styled(textButton, `
|
|
font-size: ${vars.mediumFontSize};
|
|
`);
|
|
|
|
const cssRow = styled('div', `
|
|
display: flex;
|
|
margin: 8px 16px;
|
|
align-items: center;
|
|
&-top-space {
|
|
margin-top: 24px;
|
|
}
|
|
&-disabled {
|
|
color: ${theme.disabledText};
|
|
}
|
|
`);
|