param-definition.ts 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. /**
  2. * Copyright (c) 2018-2024 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author David Sehnal <david.sehnal@gmail.com>
  6. */
  7. import { Color as ColorData } from './color';
  8. import { shallowEqualObjects } from './index';
  9. import { Vec2 as Vec2Data, Vec3 as Vec3Data, Mat4 as Mat4Data, EPSILON } from '../mol-math/linear-algebra';
  10. import { deepClone } from './object';
  11. import { Script as ScriptData } from '../mol-script/script';
  12. import { Legend } from './legend';
  13. import { stringToWords } from './string';
  14. import { getColorListFromName, ColorListName } from './color/lists';
  15. import { Asset } from './assets';
  16. import { ColorListEntry } from './color/color';
  17. export namespace ParamDefinition {
  18. export interface Info {
  19. label?: string,
  20. description?: string,
  21. legend?: Legend,
  22. fieldLabels?: { [name: string]: string },
  23. isHidden?: boolean,
  24. shortLabel?: boolean,
  25. twoColumns?: boolean,
  26. isEssential?: boolean,
  27. category?: string,
  28. hideIf?: (currentGroup: any) => boolean,
  29. help?: (value: any) => { description?: string, legend?: Legend }
  30. }
  31. export const Essential = { isEssential: true };
  32. function setInfo<T extends Base<any>>(param: T, info?: Info): T {
  33. if (!info) return param;
  34. if (info.label) param.label = info.label;
  35. if (info.description) param.description = info.description;
  36. if (info.legend) param.legend = info.legend;
  37. if (info.fieldLabels) param.fieldLabels = info.fieldLabels;
  38. if (info.isHidden) param.isHidden = info.isHidden;
  39. if (info.shortLabel) param.shortLabel = info.shortLabel;
  40. if (info.twoColumns) param.twoColumns = info.twoColumns;
  41. if (info.isEssential) param.isEssential = info.isEssential;
  42. if (info.category) param.category = info.category;
  43. if (info.hideIf) param.hideIf = info.hideIf;
  44. if (info.help) param.help = info.help;
  45. return param;
  46. }
  47. export interface Base<T> extends Info {
  48. isOptional?: boolean,
  49. defaultValue: T
  50. }
  51. export interface Optional<T extends Any = Any> extends Base<T['defaultValue'] | undefined> {
  52. type: T['type']
  53. }
  54. export function Optional<T>(p: Base<T>): Base<T | undefined> {
  55. const ret = { ...p };
  56. ret.isOptional = true;
  57. return ret;
  58. }
  59. export interface Value<T> extends Base<T> {
  60. type: 'value'
  61. }
  62. export function Value<T>(defaultValue: T, info?: Info): Value<T> {
  63. return setInfo<Value<T>>({ type: 'value', defaultValue }, info);
  64. }
  65. export interface Select<T> extends Base<T> {
  66. type: 'select'
  67. /** array of (value, label) tuples */
  68. options: readonly (readonly [T, string] | readonly [T, string, string | undefined])[]
  69. cycle?: boolean
  70. }
  71. export function Select<T>(defaultValue: T, options: readonly (readonly [T, string] | readonly [T, string, string | undefined])[], info?: Info & { cycle?: boolean }): Select<T> {
  72. return setInfo<Select<T>>({ type: 'select', defaultValue: checkDefaultKey(defaultValue, options), options, cycle: info?.cycle }, info);
  73. }
  74. export interface MultiSelect<E extends string> extends Base<E[]> {
  75. type: 'multi-select'
  76. /** array of (value, label) tuples */
  77. options: readonly (readonly [E, string])[],
  78. emptyValue?: string
  79. }
  80. export function MultiSelect<E extends string>(defaultValue: E[], options: readonly (readonly [E, string])[], info?: Info & { emptyValue?: string }): MultiSelect<E> {
  81. // TODO: check if default value is a subset of options?
  82. const ret = setInfo<MultiSelect<E>>({ type: 'multi-select', defaultValue, options }, info);
  83. if (info?.emptyValue) ret.emptyValue = info.emptyValue;
  84. return ret;
  85. }
  86. export interface BooleanParam extends Base<boolean> {
  87. type: 'boolean'
  88. }
  89. export function Boolean(defaultValue: boolean, info?: Info): BooleanParam {
  90. return setInfo<BooleanParam>({ type: 'boolean', defaultValue }, info);
  91. }
  92. export interface Text<T extends string = string> extends Base<T> {
  93. type: 'text',
  94. multiline?: boolean,
  95. placeholder?: string,
  96. disableInteractiveUpdates?: boolean
  97. }
  98. export function Text<T extends string = string>(defaultValue: string = '', info?: Info & { multiline?: boolean, placeholder?: string, disableInteractiveUpdates?: boolean }): Text<T> {
  99. return setInfo<Text<T>>({ type: 'text', defaultValue: defaultValue as any, multiline: info?.multiline, placeholder: info?.placeholder, disableInteractiveUpdates: info?.disableInteractiveUpdates }, info);
  100. }
  101. export interface Color extends Base<ColorData> {
  102. type: 'color'
  103. isExpanded?: boolean
  104. }
  105. export function Color(defaultValue: ColorData, info?: Info & { isExpanded?: boolean }): Color {
  106. const ret = setInfo<Color>({ type: 'color', defaultValue }, info);
  107. if (info?.isExpanded) ret.isExpanded = info.isExpanded;
  108. return ret;
  109. }
  110. export interface ColorList extends Base<{ kind: 'interpolate' | 'set', colors: ColorListEntry[] }> {
  111. type: 'color-list'
  112. offsets: boolean
  113. presetKind: 'all' | 'scale' | 'set'
  114. }
  115. export function ColorList(defaultValue: { kind: 'interpolate' | 'set', colors: ColorListEntry[] } | ColorListName, info?: Info & { presetKind?: ColorList['presetKind'], offsets?: boolean }): ColorList {
  116. let def: ColorList['defaultValue'];
  117. if (typeof defaultValue === 'string') {
  118. const colors = getColorListFromName(defaultValue);
  119. def = { kind: colors.type !== 'qualitative' ? 'interpolate' : 'set', colors: colors.list };
  120. } else {
  121. def = defaultValue;
  122. }
  123. return setInfo<ColorList>({ type: 'color-list', presetKind: info?.presetKind || 'all', defaultValue: def, offsets: !!info?.offsets }, info);
  124. }
  125. export interface Vec3 extends Base<Vec3Data>, Range {
  126. type: 'vec3'
  127. }
  128. export function Vec3(defaultValue: Vec3Data, range?: { min?: number, max?: number, step?: number }, info?: Info): Vec3 {
  129. return setInfo<Vec3>(setRange({ type: 'vec3', defaultValue }, range), info);
  130. }
  131. export interface Mat4 extends Base<Mat4Data> {
  132. type: 'mat4'
  133. }
  134. export function Mat4(defaultValue: Mat4Data, info?: Info): Mat4 {
  135. return setInfo<Mat4>({ type: 'mat4', defaultValue }, info);
  136. }
  137. export interface UrlParam extends Base<Asset.Url | string> {
  138. type: 'url'
  139. }
  140. export function Url(url: string | { url: string, body?: string }, info?: Info): UrlParam {
  141. const defaultValue = typeof url === 'string' ? Asset.Url(url) : Asset.Url(url.url, { body: url.body });
  142. const ret = setInfo<UrlParam>({ type: 'url', defaultValue }, info);
  143. return ret;
  144. }
  145. export interface FileParam extends Base<Asset.File | null> {
  146. type: 'file'
  147. accept?: string
  148. }
  149. export function File(info?: Info & { accept?: string, multiple?: boolean }): FileParam {
  150. const ret = setInfo<FileParam>({ type: 'file', defaultValue: null }, info);
  151. if (info?.accept) ret.accept = info.accept;
  152. return ret;
  153. }
  154. export interface FileListParam extends Base<Asset.File[] | null> {
  155. type: 'file-list'
  156. accept?: string
  157. }
  158. export function FileList(info?: Info & { accept?: string, multiple?: boolean }): FileListParam {
  159. const ret = setInfo<FileListParam>({ type: 'file-list', defaultValue: null }, info);
  160. if (info?.accept) ret.accept = info.accept;
  161. return ret;
  162. }
  163. export interface Range {
  164. /** If given treat as a range. */
  165. min?: number
  166. /** If given treat as a range. */
  167. max?: number
  168. /**
  169. * If given treat as a range.
  170. * If an `integer` parse value with parseInt, otherwise use parseFloat.
  171. */
  172. step?: number
  173. }
  174. function setRange<T extends Numeric | Interval | Vec3>(p: T, range?: { min?: number, max?: number, step?: number }) {
  175. if (!range) return p;
  176. if (typeof range.min !== 'undefined') p.min = range.min;
  177. if (typeof range.max !== 'undefined') p.max = range.max;
  178. if (typeof range.step !== 'undefined') p.step = range.step;
  179. return p;
  180. }
  181. export interface Numeric extends Base<number>, Range {
  182. type: 'number',
  183. immediateUpdate?: boolean
  184. }
  185. export function Numeric(defaultValue: number, range?: { min?: number, max?: number, step?: number }, info?: Info & { immediateUpdate?: boolean }): Numeric {
  186. const ret = setInfo<Numeric>(setRange({ type: 'number', defaultValue }, range), info);
  187. if (info?.immediateUpdate) ret.immediateUpdate = true;
  188. return ret;
  189. }
  190. export interface Interval extends Base<[number, number]>, Range {
  191. type: 'interval'
  192. }
  193. export function Interval(defaultValue: [number, number], range?: { min?: number, max?: number, step?: number }, info?: Info): Interval {
  194. return setInfo<Interval>(setRange({ type: 'interval', defaultValue }, range), info);
  195. }
  196. export interface LineGraph extends Base<Vec2Data[]> {
  197. type: 'line-graph',
  198. getVolume?: () => unknown
  199. }
  200. export function LineGraph(defaultValue: Vec2Data[], info?: Info & { getVolume?: (binCount?: number) => unknown }): LineGraph {
  201. const ret = setInfo<LineGraph>({ type: 'line-graph', defaultValue }, info);
  202. if (info?.getVolume) ret.getVolume = info.getVolume;
  203. return ret;
  204. }
  205. export interface Group<T> extends Base<T> {
  206. type: 'group',
  207. params: Params,
  208. presets?: Select<T>['options'],
  209. isExpanded?: boolean,
  210. isFlat?: boolean,
  211. pivot?: keyof T
  212. }
  213. export function Group<T>(params: For<T>, info?: Info & { isExpanded?: boolean, isFlat?: boolean, customDefault?: any, pivot?: keyof T, presets?: Select<T>['options'] }): Group<Normalize<T>> {
  214. const ret = setInfo<Group<Normalize<T>>>({ type: 'group', defaultValue: info?.customDefault || getDefaultValues(params as any as Params) as any, params: params as any as Params }, info);
  215. if (info?.presets) ret.presets = info.presets;
  216. if (info?.isExpanded) ret.isExpanded = info.isExpanded;
  217. if (info?.isFlat) ret.isFlat = info.isFlat;
  218. if (info?.pivot) ret.pivot = info.pivot as any;
  219. return ret;
  220. }
  221. export function EmptyGroup(info?: Info) {
  222. return Group({}, info);
  223. }
  224. export interface NamedParams<T = any, K = string> { name: K, params: T }
  225. export type NamedParamUnion<P extends Params, K extends keyof P = keyof P> = K extends any ? NamedParams<P[K]['defaultValue'], K> : never
  226. export interface Mapped<T extends NamedParams<any, any>> extends Base<T> {
  227. type: 'mapped',
  228. select: Select<string>,
  229. map(name: string): Any
  230. }
  231. export function Mapped<T>(defaultKey: string, names: ([string, string] | [string, string, string])[], map: (name: string) => Any, info?: Info & { cycle?: boolean }): Mapped<NamedParams<T>> {
  232. const name = checkDefaultKey(defaultKey, names);
  233. return setInfo<Mapped<NamedParams<T>>>({
  234. type: 'mapped',
  235. defaultValue: { name, params: map(name).defaultValue as any },
  236. select: Select<string>(name, names, info),
  237. map
  238. }, info);
  239. }
  240. export function MappedStatic<C extends Params>(defaultKey: keyof C, map: C, info?: Info & { options?: [keyof C, string][], cycle?: boolean }): Mapped<NamedParamUnion<C>> {
  241. const options: [string, string][] = info?.options
  242. ? info.options as [string, string][]
  243. : Object.keys(map).map(k => [k, map[k].label || stringToWords(k)]) as [string, string][];
  244. const name = checkDefaultKey(defaultKey, options);
  245. return setInfo<Mapped<NamedParamUnion<C>>>({
  246. type: 'mapped',
  247. defaultValue: { name, params: map[name].defaultValue } as any,
  248. select: Select<string>(name as string, options, info),
  249. map: key => map[key]
  250. }, info);
  251. }
  252. export interface ObjectList<T = any> extends Base<T[]> {
  253. type: 'object-list',
  254. element: Params,
  255. ctor(): T,
  256. getLabel(t: T): string
  257. }
  258. export function ObjectList<T>(element: For<T>, getLabel: (e: T) => string, info?: Info & { defaultValue?: T[], ctor?: () => T }): ObjectList<Normalize<T>> {
  259. return setInfo<ObjectList<Normalize<T>>>({ type: 'object-list', element: element as any as Params, getLabel, ctor: _defaultObjectListCtor, defaultValue: (info?.defaultValue) || [] }, info);
  260. }
  261. function _defaultObjectListCtor(this: ObjectList) { return getDefaultValues(this.element) as any; }
  262. function unsetGetValue() {
  263. throw new Error('getValue not set. Fix runtime.');
  264. }
  265. // getValue needs to be assigned by a runtime because it might not be serializable
  266. export interface ValueRef<T = any> extends Base<{ ref: string, getValue: () => T }> {
  267. type: 'value-ref',
  268. resolveRef: (ref: string, getData: (ref: string) => any) => T,
  269. // a provider because the list changes over time
  270. getOptions: (ctx: any) => Select<string>['options'],
  271. }
  272. export function ValueRef<T>(getOptions: ValueRef['getOptions'], resolveRef: ValueRef<T>['resolveRef'], info?: Info & { defaultRef?: string }) {
  273. return setInfo<ValueRef<T>>({ type: 'value-ref', defaultValue: { ref: info?.defaultRef ?? '', getValue: unsetGetValue as any }, getOptions, resolveRef }, info);
  274. }
  275. export interface DataRef<T = any> extends Base<{ ref: string, getValue: () => T }> {
  276. type: 'data-ref'
  277. }
  278. export function DataRef<T>(info?: Info & { defaultRef?: string }) {
  279. return setInfo<DataRef<T>>({ type: 'data-ref', defaultValue: { ref: info?.defaultRef ?? '', getValue: unsetGetValue as any } }, info);
  280. }
  281. export interface Converted<T, C> extends Base<T> {
  282. type: 'converted',
  283. converted: Any,
  284. /** converts from prop value to display value */
  285. fromValue(v: T): C,
  286. /** converts from display value to prop value */
  287. toValue(v: C): T
  288. }
  289. export function Converted<T, C extends Any>(fromValue: (v: T) => C['defaultValue'], toValue: (v: C['defaultValue']) => T, converted: C): Converted<T, C['defaultValue']> {
  290. return setInfo({ type: 'converted', defaultValue: toValue(converted.defaultValue), converted, fromValue, toValue }, converted);
  291. }
  292. export interface Conditioned<T, P extends Base<T>, C = { [k: string]: P }> extends Base<T> {
  293. type: 'conditioned',
  294. select: Select<string>,
  295. conditionParams: C
  296. conditionForValue(v: T): keyof C
  297. conditionedValue(v: T, condition: keyof C): T,
  298. }
  299. export function Conditioned<T, P extends Base<T>, C extends {} = { [k: string]: P }>(defaultValue: T, conditionParams: C, conditionForValue: (v: T) => keyof C, conditionedValue: (v: T, condition: keyof C) => T, info?: Info): Conditioned<T, P, C> {
  300. const options = Object.keys(conditionParams).map(k => [k, k]) as [string, string][];
  301. return setInfo({ type: 'conditioned', select: Select<string>(conditionForValue(defaultValue) as string, options, info), defaultValue, conditionParams, conditionForValue, conditionedValue }, info);
  302. }
  303. export interface Script extends Base<ScriptData> {
  304. type: 'script'
  305. }
  306. export function Script(defaultValue: Script['defaultValue'], info?: Info): Script {
  307. return setInfo<Script>({ type: 'script', defaultValue }, info);
  308. }
  309. export type Any =
  310. | Value<any> | Select<any> | MultiSelect<any> | BooleanParam | Text | Color | Vec3 | Mat4 | Numeric | FileParam | UrlParam | FileListParam | Interval | LineGraph
  311. | ColorList | Group<any> | Mapped<any> | Converted<any, any> | Conditioned<any, any, any> | Script | ObjectList | ValueRef | DataRef
  312. export type Params = { [k: string]: Any }
  313. export type Values<T extends Params = Params> = { [k in keyof T]: T[k]['defaultValue'] }
  314. /** This is required for params with optional values */
  315. export type ValuesFor<T extends For<any>> = Normalize<{ [k in keyof T]: T[k]['defaultValue'] }>
  316. type Optionals<P> = { [K in keyof P]-?: undefined extends P[K] ? K : never }[keyof P]
  317. type NonOptionals<P> = { [K in keyof P]-?: undefined extends P[K] ? never : K }[keyof P]
  318. export type Normalize<P> = Pick<P, NonOptionals<P>> & Partial<Pick<P, Optionals<P>>>
  319. export type For<P> = { [K in keyof P]-?: Base<P[K]> }
  320. export type Def<P> = { [K in keyof P]: Any }
  321. export function For<P>(params: For<P>): For<P> {
  322. return 0 as any;
  323. }
  324. export function getDefaultValues<T extends Params>(params: T) {
  325. const d: { [k: string]: any } = {};
  326. for (const k of Object.keys(params)) {
  327. if (params[k].isOptional) continue;
  328. d[k] = params[k].defaultValue;
  329. }
  330. return d as Values<T>;
  331. }
  332. function _resolveRef(resolve: (ref: string, getData: (ref: string) => any) => any, ref: string, getData: (ref: string) => any) {
  333. return () => resolve(ref, getData);
  334. }
  335. function resolveRefValue(p: Any, value: any, getData: (ref: string) => any) {
  336. if (!value) return;
  337. if (p.type === 'value-ref') {
  338. const v = value as ValueRef['defaultValue'];
  339. if (!v.ref) v.getValue = () => { throw new Error('Unset ref in ValueRef value.'); };
  340. else v.getValue = _resolveRef(p.resolveRef, v.ref, getData);
  341. } else if (p.type === 'data-ref') {
  342. const v = value as ValueRef['defaultValue'];
  343. if (!v.ref) v.getValue = () => { throw new Error('Unset ref in ValueRef value.'); };
  344. else v.getValue = _resolveRef(getData, v.ref, getData);
  345. } else if (p.type === 'group') {
  346. resolveRefs(p.params, value, getData);
  347. } else if (p.type === 'mapped') {
  348. const v = value as NamedParams;
  349. const param = p.map(v.name);
  350. resolveRefValue(param, v.params, getData);
  351. } else if (p.type === 'object-list') {
  352. if (!hasValueRef(p.element)) return;
  353. for (const e of value) {
  354. resolveRefs(p.element, e, getData);
  355. }
  356. }
  357. }
  358. function hasParamValueRef(p: Any) {
  359. if (p.type === 'value-ref' || p.type === 'data-ref') {
  360. return true;
  361. } else if (p.type === 'group') {
  362. if (hasValueRef(p.params)) return true;
  363. } else if (p.type === 'mapped') {
  364. for (const [o] of p.select.options) {
  365. if (hasParamValueRef(p.map(o))) return true;
  366. }
  367. } else if (p.type === 'object-list') {
  368. return hasValueRef(p.element);
  369. }
  370. return false;
  371. }
  372. function hasValueRef(params: Params) {
  373. for (const n of Object.keys(params)) {
  374. if (hasParamValueRef(params[n])) return true;
  375. }
  376. return false;
  377. }
  378. export function resolveRefs(params: Params, values: any, getData: (ref: string) => any) {
  379. for (const n of Object.keys(params)) {
  380. resolveRefValue(params[n], values?.[n], getData);
  381. }
  382. }
  383. export function setDefaultValues<T extends Params>(params: T, defaultValues: Values<T>) {
  384. for (const k of Object.keys(params)) {
  385. if (params[k].isOptional) continue;
  386. params[k].defaultValue = defaultValues[k];
  387. }
  388. }
  389. export function clone<P extends Params>(params: P): P {
  390. return deepClone(params);
  391. }
  392. /**
  393. * List of [error text, pathToValue]
  394. * i.e. ['Missing Nested Id', ['group1', 'id']]
  395. */
  396. export type ParamErrors = [string, string | string[]][]
  397. export function validate(params: Params, values: any): ParamErrors | undefined {
  398. // TODO
  399. return void 0;
  400. }
  401. export function areEqual(params: Params, a: any, b: any): boolean {
  402. if (a === b) return true;
  403. if (typeof a !== 'object' || typeof b !== 'object') return false;
  404. for (const k of Object.keys(params)) {
  405. if (!isParamEqual(params[k], a[k], b[k])) return false;
  406. }
  407. return true;
  408. }
  409. export function isParamEqual(p: Any, a: any, b: any): boolean {
  410. if (a === b) return true;
  411. if (p.type === 'group') {
  412. return areEqual(p.params, a, b);
  413. } else if (p.type === 'mapped') {
  414. const u = a as NamedParams, v = b as NamedParams;
  415. if (u.name !== v.name) return false;
  416. const map = p.map(u.name);
  417. return isParamEqual(map, u.params, v.params);
  418. } else if (p.type === 'multi-select') {
  419. const u = a as MultiSelect<any>['defaultValue'], v = b as MultiSelect<any>['defaultValue'];
  420. if (u.length !== v.length) return false;
  421. if (u.length < 10) {
  422. for (let i = 0, _i = u.length; i < _i; i++) {
  423. if (u[i] === v[i]) continue;
  424. if (v.indexOf(u[i]) < 0) return false;
  425. }
  426. } else {
  427. // TODO: should the value of multiselect be a set?
  428. const vSet = new Set(v);
  429. for (let i = 0, _i = u.length; i < _i; i++) {
  430. if (u[i] === v[i]) continue;
  431. if (!vSet.has(u[i])) return false;
  432. }
  433. }
  434. return true;
  435. } else if (p.type === 'interval') {
  436. return a[0] === b[0] && a[1] === b[1];
  437. } else if (p.type === 'line-graph') {
  438. const u = a as LineGraph['defaultValue'], v = b as LineGraph['defaultValue'];
  439. if (u.length !== v.length) return false;
  440. for (let i = 0, _i = u.length; i < _i; i++) {
  441. if (!Vec2Data.areEqual(u[i], v[i])) return false;
  442. }
  443. return true;
  444. } else if (p.type === 'vec3') {
  445. return Vec3Data.equals(a, b);
  446. } else if (p.type === 'mat4') {
  447. return Mat4Data.areEqual(a, b, EPSILON);
  448. } else if (p.type === 'script') {
  449. const u = a as Script['defaultValue'], v = b as Script['defaultValue'];
  450. return u.language === v.language && u.expression === v.expression;
  451. } else if (p.type === 'object-list') {
  452. const u = a as ObjectList['defaultValue'], v = b as ObjectList['defaultValue'];
  453. const l = u.length;
  454. if (l !== v.length) return false;
  455. for (let i = 0; i < l; i++) {
  456. if (!areEqual(p.element, u[i], v[i])) return false;
  457. }
  458. return true;
  459. } else if (typeof a === 'object' && typeof b === 'object') {
  460. return shallowEqualObjects(a, b);
  461. }
  462. // a === b was checked at the top.
  463. return false;
  464. }
  465. export function merge<P extends Params>(params: P, a: any, b: any): Values<P> {
  466. if (a === undefined) return { ...b };
  467. if (b === undefined) return { ...a };
  468. const o = Object.create(null);
  469. for (const k of Object.keys(params)) {
  470. o[k] = mergeParam(params[k], a[k], b[k]);
  471. }
  472. return o;
  473. }
  474. export function mergeParam(p: Any, a: any, b: any): any {
  475. if (a === undefined) return typeof b === 'object' && !Array.isArray(b) ? { ...b } : b;
  476. if (b === undefined) return typeof a === 'object' && !Array.isArray(a) ? { ...a } : a;
  477. if (p.type === 'group') {
  478. return merge(p.params, a, b);
  479. } else if (p.type === 'mapped') {
  480. const u = a as NamedParams, v = b as NamedParams;
  481. if (u.name !== v.name) return { ...v };
  482. const map = p.map(v.name);
  483. return {
  484. name: v.name,
  485. params: mergeParam(map, u.params, v.params)
  486. };
  487. } else if (p.type === 'value') {
  488. return b;
  489. } else if (typeof a === 'object' && typeof b === 'object') {
  490. if (Array.isArray(b)) {
  491. return b;
  492. }
  493. return { ...a, ...b };
  494. } else {
  495. return b;
  496. }
  497. }
  498. function selectHasOption(p: Select<any> | MultiSelect<any>, v: any) {
  499. for (const o of p.options) {
  500. if (o[0] === v) return true;
  501. }
  502. return false;
  503. }
  504. function normalizeParam(p: Any, value: any, defaultIfUndefined: boolean): any {
  505. if (value === void 0 || value === null) {
  506. return defaultIfUndefined ? p.defaultValue : void 0;
  507. }
  508. // TODO: is this a good idea and will work well?
  509. // if (typeof p.defaultValue !== typeof value) {
  510. // return p.defaultValue;
  511. // }
  512. if (p.type === 'value') {
  513. return value;
  514. } else if (p.type === 'group') {
  515. const ret = Object.create(null);
  516. for (const key of Object.keys(p.params)) {
  517. const param = p.params[key];
  518. if (value[key] === void 0) {
  519. if (defaultIfUndefined) ret[key] = param.defaultValue;
  520. } else {
  521. ret[key] = normalizeParam(param, value[key], defaultIfUndefined);
  522. }
  523. }
  524. return ret;
  525. } else if (p.type === 'mapped') {
  526. const v = value as NamedParams;
  527. if (typeof v.name !== 'string') {
  528. return p.defaultValue;
  529. }
  530. if (typeof v.params === 'undefined') {
  531. return defaultIfUndefined ? p.defaultValue : void 0;
  532. }
  533. if (!selectHasOption(p.select, v.name)) {
  534. return p.defaultValue;
  535. }
  536. const param = p.map(v.name);
  537. return {
  538. name: v.name,
  539. params: normalizeParam(param, v.params, defaultIfUndefined)
  540. };
  541. } else if (p.type === 'select') {
  542. if (!selectHasOption(p, value)) return p.defaultValue;
  543. return value;
  544. } else if (p.type === 'multi-select') {
  545. if (!Array.isArray(value)) return p.defaultValue;
  546. const ret = value.filter(function (this: MultiSelect<any>, v: any) { return selectHasOption(this, v); }, p);
  547. if (value.length > 0 && ret.length === 0) return p.defaultValue;
  548. return ret;
  549. } else if (p.type === 'object-list') {
  550. if (!Array.isArray(value)) return p.defaultValue;
  551. return value.map(v => normalizeParams(p.element, v, defaultIfUndefined ? 'all' : 'skip'));
  552. }
  553. // TODO: validate/normalize all param types "properly"??
  554. return value;
  555. }
  556. export function normalizeParams(p: Params, value: any, defaultIfUndefined: 'all' | 'children' | 'skip') {
  557. if (typeof value !== 'object' || value === null) {
  558. return defaultIfUndefined ? getDefaultValues(p) : value;
  559. }
  560. const ret = Object.create(null);
  561. for (const key of Object.keys(p)) {
  562. const param = p[key];
  563. if (value[key] === void 0) {
  564. if (defaultIfUndefined === 'all') ret[key] = param.defaultValue;
  565. } else {
  566. ret[key] = normalizeParam(param, value[key], defaultIfUndefined !== 'skip');
  567. }
  568. }
  569. return ret;
  570. }
  571. /**
  572. * Map an object to a list of [K, string][] to be used as options, stringToWords for key used by default (or identity of null).
  573. *
  574. * if options is { [string]: string } and mapping is not provided, use the Value.
  575. */
  576. export function objectToOptions<K extends string, V>(options: { [k in K]: V }, f?: null | ((k: K, v: V) => string | [string, string])): [K, string][] {
  577. const ret: ([K, string] | [K, string, string])[] = [];
  578. for (const k of Object.keys(options) as K[]) {
  579. if (!f) {
  580. if (typeof options[k as K] === 'string') ret.push([k as K, options[k as K] as any]);
  581. else ret.push([k as K, f === null ? k : stringToWords(k)]);
  582. } else {
  583. const o = f(k as K, options[k as K]);
  584. ret.push(typeof o === 'string' ? [k, o] : [k, o[0], o[1]]);
  585. }
  586. }
  587. return ret as [K, string][];
  588. }
  589. /**
  590. * Map array of options using stringToWords by default (or identity of null).
  591. */
  592. export function arrayToOptions<V extends string>(xs: readonly V[], f?: null | ((v: V) => string)): [V, string][] {
  593. const ret: [V, string][] = [];
  594. for (const x of xs) {
  595. if (!f) {
  596. ret.push([x, f === null ? x : stringToWords(x)]);
  597. } else {
  598. ret.push([x, f(x)]);
  599. }
  600. }
  601. return ret;
  602. }
  603. export function optionLabel<T>(param: Select<T>, value: T) {
  604. for (const o of param.options) {
  605. if (o[0] === value) return o[1];
  606. }
  607. return '';
  608. }
  609. function checkDefaultKey<T>(k: T, options: readonly (readonly [T, string] | readonly [T, string, string | undefined])[]) {
  610. for (const o of options) {
  611. if (o[0] === k) return k;
  612. }
  613. return options.length > 0 ? options[0][0] : void 0 as any as T;
  614. }
  615. }