gristlabs_grist-core/app/client/widgets/UserType.js
George Gevoian 2f900f68f8 (core) Add color options to choice config UI
Summary:
Includes overhauled choice configuration UI for choice and choice list
columns based on the TokenField library. Features include rich copy
and paste support, keyboard shortcuts for token manipulation, and
drag-and-drop support for arrangement.

Configured choice colors are visible throughout the application, such
as in the autocomplete window for both choice and choice list cells, and
in table cells directly.

Choice cells in particular are now styled closer to choice list cells,
and render their contents as colored tokens. Choice cells now also
use the improved autocomplete component that choice lists use, with
some room for future improvement (e.g. allowing new choice items to be
added inline like in choice list's autocomplete).

Also includes a minor fix for choice list cells where right align
was not working.

Test Plan: Browser tests updated.

Reviewers: jarek, dsagal

Reviewed By: jarek, dsagal

Subscribers: jarek

Differential Revision: https://phab.getgrist.com/D2890
2021-07-09 12:07:38 -07:00

257 lines
5.7 KiB
JavaScript

var _ = require('underscore');
/**
* Given a widget name and a type, return the name of the widget that would
* actually be used for that type (hopefully the same, unless falling back
* on a default if widget name is unlisted), and all default configuration
* information for that widget/type combination.
* Returns something of form:
* {
* name:"WidgetName",
* config: {
* cons: "NameOfWidgetClass",
* editCons: "NameOfEditorClass",
* options: { ... default options for widget ... }
* }
* }
*/
function getWidgetConfiguration(widgetName, type) {
const oneTypeDef = typeDefs[type] || typeDefs.Text;
if (!(widgetName in oneTypeDef.widgets)) {
widgetName = oneTypeDef.default;
}
return {
name: widgetName,
config: oneTypeDef.widgets[widgetName]
};
}
exports.getWidgetConfiguration = getWidgetConfiguration;
function mergeOptions(options, type) {
const {name, config} = getWidgetConfiguration(options.widget, type);
return _.defaults({widget: name}, options, config.options);
}
exports.mergeOptions = mergeOptions;
// Contains the list of types with their storage types, possible widgets, default widgets,
// and defaults for all widget settings
// The names of widgets are used, instead of the actual classes needed, in order to limit
// the spread of dependencies. See ./UserTypeImpl for actual classes.
var typeDefs = {
Any: {
label: 'Any',
icon: 'FieldAny',
widgets: {
TextBox: {
cons: 'TextBox',
editCons: 'TextEditor',
icon: 'FieldTextbox',
options: {
alignment: 'left'
}
}
},
default: 'TextBox'
},
Text: {
label: 'Text',
icon: 'FieldText',
widgets: {
TextBox: {
cons: 'TextBox',
editCons: 'TextEditor',
icon: 'FieldTextbox',
options: {
alignment: 'left',
}
},
HyperLink: {
cons: 'HyperLinkTextBox',
editCons: 'HyperLinkEditor',
icon: 'FieldLink',
options: {
alignment: 'left',
}
}
},
default: 'TextBox'
},
Numeric: {
label: 'Numeric',
icon: 'FieldNumeric',
widgets: {
TextBox: {
cons: 'NumericTextBox',
editCons: 'TextEditor',
icon: 'FieldTextbox',
options: {
alignment: 'right'
}
},
Spinner: {
cons: 'Spinner',
editCons: 'TextEditor',
icon: 'FieldSpinner',
options: {
alignment: 'right'
}
}
},
default: 'TextBox'
},
Int: {
label: 'Integer',
icon: 'FieldInteger',
widgets: {
TextBox: {
cons: 'NumericTextBox',
editCons: 'TextEditor',
icon: 'FieldTextbox',
options: {
decimals: 0,
alignment: 'right'
}
},
Spinner: {
cons: 'Spinner',
editCons: 'TextEditor',
icon: 'FieldSpinner',
options: {
decimals: 0,
alignment: 'right'
}
}
},
default: 'TextBox'
},
Bool: {
label: 'Toggle',
icon: 'FieldToggle',
widgets: {
TextBox: {
cons: 'TextBox',
editCons: 'TextEditor',
icon: 'FieldTextbox',
options: {
alignment: 'center'
}
},
CheckBox: {
cons: 'CheckBox',
editCons: 'CheckBoxEditor',
icon: 'FieldCheckbox',
options: {}
},
Switch: {
cons: 'Switch',
editCons: 'CheckBoxEditor',
icon: 'FieldSwitcher',
options: {}
}
},
default: 'CheckBox'
},
Date: {
label: 'Date',
icon: 'FieldDate',
widgets: {
TextBox: {
cons: 'DateTextBox',
editCons: 'DateEditor',
icon: 'FieldTextbox',
options: {
dateFormat: 'YYYY-MM-DD',
isCustomDateFormat: false,
alignment: 'left'
}
}
},
default: 'TextBox'
},
DateTime: {
label: 'DateTime',
icon: 'FieldDateTime',
widgets: {
TextBox: {
cons: 'DateTimeTextBox',
editCons: 'DateTimeEditor',
icon: 'FieldTextbox',
options: {
dateFormat: 'YYYY-MM-DD', // Default to ISO standard: https://xkcd.com/1179/
timeFormat: 'h:mma',
isCustomDateFormat: false,
isCustomTimeFormat: false,
alignment: 'left'
}
}
},
default: 'TextBox'
},
Choice: {
label: 'Choice',
icon: 'FieldChoice',
widgets: {
TextBox: {
cons: 'ChoiceTextBox',
editCons: 'ChoiceEditor',
icon: 'FieldTextbox',
options: {
alignment: 'left',
choices: null,
choiceOptions: null
}
}
},
default: 'TextBox'
},
ChoiceList: {
label: 'Choice List',
icon: 'FieldChoice',
widgets: {
TextBox: {
cons: 'ChoiceListCell',
editCons: 'ChoiceListEditor',
icon: 'FieldTextbox',
options: {
alignment: 'left',
choices: null,
choiceOptions: null
}
}
},
default: 'TextBox'
},
Ref: {
label: 'Reference',
icon: 'FieldReference',
widgets: {
Reference: {
cons: 'Reference',
editCons: 'ReferenceEditor',
icon: 'FieldReference',
options: {
alignment: 'left'
}
}
},
default: 'Reference'
},
Attachments: {
label: 'Attachment',
icon: 'FieldAttachment',
widgets: {
Attachments: {
cons: 'AttachmentsWidget',
editCons: 'AttachmentsEditor',
icon: 'FieldAttachment',
options: {
height: '36'
}
}
},
default: 'Attachments'
}
};
exports.typeDefs = typeDefs;