-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathField.ts
178 lines (158 loc) · 5.5 KB
/
Field.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
* This file belongs to Hoist, an application development toolkit
* developed by Extremely Heavy Industries (www.xh.io | [email protected])
*
* Copyright © 2025 Extremely Heavy Industries Inc.
*/
import {XH} from '@xh/hoist/core';
import {isLocalDate, LocalDate} from '@xh/hoist/utils/datetime';
import {withDefault} from '@xh/hoist/utils/js';
import {Rule, RuleLike} from './validation/Rule';
import equal from 'fast-deep-equal';
import {isDate, isString, toNumber, isFinite, startCase, isFunction, castArray} from 'lodash';
import DOMPurify from 'dompurify';
/**
* Constructor arguments for a Hoist data package Field.
*/
export interface FieldSpec {
/** Unique key representing this field. */
name: string;
/** default `'auto` indicates no conversion.*/
type?: FieldType;
/**
* User-facing / longer name for display, defaults to `name`
* transformed via `genDisplayName()` (e.g. 'myField' translates to 'My Field').
*/
displayName?: string;
/** Value to be used for records with a null, or non-existent value. */
defaultValue?: any;
/** Rules to apply to this field. */
rules?: RuleLike[];
/**
* True to disable built-in XSS (cross-site scripting) protection, applied by default to all
* incoming String values using {@link https://github.com/cure53/DOMPurify | DOMPurify}.
*
* DOMPurify provides fast escaping of dangerous HTML, scripting, and other content that can be
* used to execute XSS attacks, while allowing common and expected HTML and style tags.
*
* Please contact XH if you find yourself needing to disable this protection!
*/
disableXssProtection?: boolean;
}
/** Metadata for an individual data field within a {@link StoreRecord}. */
export class Field {
get isField() {
return true;
}
readonly name: string;
readonly type: FieldType;
readonly displayName: string;
readonly defaultValue: any;
readonly rules: Rule[];
readonly disableXssProtection: boolean;
constructor({
name,
type = 'auto',
displayName,
defaultValue = null,
rules = [],
disableXssProtection = XH.appSpec.disableXssProtection
}: FieldSpec) {
this.name = name;
this.type = type;
this.displayName = withDefault(displayName, genDisplayName(name));
this.defaultValue = defaultValue;
this.rules = this.processRuleSpecs(rules);
this.disableXssProtection = disableXssProtection;
}
parseVal(val: any): any {
const {type, defaultValue, disableXssProtection} = this;
return parseFieldValue(val, type, defaultValue, disableXssProtection);
}
isEqual(val1: any, val2: any): boolean {
return equal(val1, val2);
}
//------------------------
// Implementation
//------------------------
private processRuleSpecs(ruleSpecs: RuleLike[]): Rule[] {
return ruleSpecs.map(spec => {
if (spec instanceof Rule) return spec;
if (isFunction(spec)) return new Rule({check: spec});
return new Rule(spec);
});
}
}
/**
* Parse a value according to a field type.
* @param val - raw value to parse.
* @param type - data type of the field to use for possible conversion.
* @param defaultValue - typed value to return if `val` undefined or null.
* @param disableXssProtection - true to disable XSS (cross-site scripting) protection.
* @see {@link FieldConfig} docs for additional details.
* @returns resulting value, potentially parsed or cast as per type.
*/
export function parseFieldValue(
val: any,
type: FieldType,
defaultValue: any = null,
disableXssProtection = XH.appSpec.disableXssProtection
): any {
if (val === undefined || val === null) val = defaultValue;
if (val === null) return val;
const sanitizeValue = v => {
if (disableXssProtection || !isString(v)) return v;
return DOMPurify.sanitize(v);
};
switch (type) {
case 'tags':
val = castArray(val);
val = val.map(v => {
v = sanitizeValue(v);
return v.toString();
});
return val;
case 'auto':
case 'json':
return sanitizeValue(val);
case 'int':
val = toNumber(val);
return isFinite(val) ? Math.trunc(val) : null;
case 'number':
return toNumber(val);
case 'bool':
return !!val;
case 'pwd':
case 'string':
val = sanitizeValue(val);
return val.toString();
case 'date':
return isDate(val) ? val : new Date(val);
case 'localDate':
return isLocalDate(val) ? val : LocalDate.get(val);
}
throw XH.exception(`Unknown field type '${type}'`);
}
/** Data types for Fields used within Hoist Store Records and Cubes. */
export const FieldType = Object.freeze({
TAGS: 'tags',
AUTO: 'auto',
BOOL: 'bool',
DATE: 'date',
INT: 'int',
JSON: 'json',
LOCAL_DATE: 'localDate',
NUMBER: 'number',
PWD: 'pwd',
STRING: 'string'
});
// eslint-disable-next-line
export type FieldType = (typeof FieldType)[keyof typeof FieldType];
/**
* @param fieldName - short name / code for a field.
* @returns fieldName transformed into user-facing / longer name for display.
*/
export function genDisplayName(fieldName: string): string {
// Handle common cases of "id" -> "ID" and "foo_id" -> "Foo ID" (vs "Foo Id")
return startCase(fieldName).replace(/(^| )Id\b/g, '$1ID');
}