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
49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
var dispose = require('../lib/dispose');
|
|
const {theme} = require('app/client/ui2018/cssVars');
|
|
const {CellStyle} = require('app/client/widgets/CellStyle');
|
|
const {dom} = require('grainjs');
|
|
|
|
/**
|
|
* AbstractWidget - The base of the inheritance tree for widgets.
|
|
* @param {Function} field - The RowModel for this view field.
|
|
* @param {string|undefined} options.defaultTextColor - CSS value of the default
|
|
* text color for the widget. Defaults to the current theme's cell fg color.
|
|
*
|
|
*/
|
|
function AbstractWidget(field, opts = {}) {
|
|
this.field = field;
|
|
this.options = field.widgetOptionsJson;
|
|
this.valueFormatter = this.field.visibleColFormatter;
|
|
this.defaultTextColor = opts.defaultTextColor ?? theme.cellFg.toString();
|
|
}
|
|
dispose.makeDisposable(AbstractWidget);
|
|
|
|
/**
|
|
* Builds the DOM showing configuration buttons and fields in the sidebar.
|
|
*/
|
|
AbstractWidget.prototype.buildConfigDom = function() {
|
|
throw new Error("Not Implemented");
|
|
};
|
|
|
|
/**
|
|
* Builds the transform prompt config DOM in the few cases where it is necessary.
|
|
* Child classes need not override this function if they do not require transform config options.
|
|
*/
|
|
AbstractWidget.prototype.buildTransformConfigDom = function() {
|
|
return null;
|
|
};
|
|
|
|
/**
|
|
* Builds the data cell DOM.
|
|
* @param {DataRowModel} row - The rowModel object.
|
|
*/
|
|
AbstractWidget.prototype.buildDom = function(row) {
|
|
throw new Error("Not Implemented");
|
|
};
|
|
|
|
AbstractWidget.prototype.buildColorConfigDom = function(gristDoc) {
|
|
return dom.create(CellStyle, this.field, gristDoc, this.defaultTextColor);
|
|
};
|
|
|
|
module.exports = AbstractWidget;
|