@xh/hoist 71.0.0-SNAPSHOT.1734627276913 → 71.0.0-SNAPSHOT.1735047359409

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,10 +16,7 @@ export declare class CompoundFilter extends Filter {
16
16
  * @internal
17
17
  */
18
18
  constructor({ filters, op }: CompoundFilterSpec);
19
- toJSON(): {
20
- filters: any[];
21
- op: CompoundFilterOperator;
22
- };
23
19
  getTestFn(store?: Store): FilterTestFn;
24
20
  equals(other: Filter): boolean;
21
+ toJSON(): CompoundFilterSpec;
25
22
  }
@@ -1,4 +1,3 @@
1
- import { FieldType } from '../Field';
2
1
  import { Store } from '../Store';
3
2
  import { Filter } from './Filter';
4
3
  import { FieldFilterOperator, FieldFilterSpec, FilterTestFn } from './Types';
@@ -23,13 +22,8 @@ export declare class FieldFilter extends Filter {
23
22
  * @internal
24
23
  */
25
24
  constructor({ field, op, value, valueType }: FieldFilterSpec);
26
- toJSON(): {
27
- valueType?: FieldType;
28
- field: string;
29
- op: FieldFilterOperator;
30
- value: any;
31
- };
32
25
  getTestFn(store?: Store): FilterTestFn;
33
26
  equals(other: Filter): boolean;
27
+ toJSON(): FieldFilterSpec;
34
28
  private get serializedValueType();
35
29
  }
@@ -1,5 +1,5 @@
1
1
  import { Store } from '../Store';
2
- import { FilterTestFn } from './Types';
2
+ import { FilterSpec, FilterTestFn } from './Types';
3
3
  /**
4
4
  * Base class for Hoist data package Filters.
5
5
  *
@@ -21,4 +21,6 @@ export declare abstract class Filter {
21
21
  abstract getTestFn(store?: Store): FilterTestFn;
22
22
  /** @returns true if the provided other Filter is equivalent to this instance.*/
23
23
  abstract equals(other: Filter): boolean;
24
+ /** @returns a JSON serializable spec that can be used to persist and recreate this filter.*/
25
+ abstract toJSON(): FilterSpec;
24
26
  }
@@ -18,4 +18,5 @@ export declare class FunctionFilter extends Filter {
18
18
  constructor({ key, testFn }: FunctionFilterSpec);
19
19
  getTestFn(store?: Store): FilterTestFn;
20
20
  equals(other: Filter): boolean;
21
+ toJSON(): FunctionFilterSpec;
21
22
  }
@@ -30,4 +30,5 @@ export interface FunctionFilterSpec {
30
30
  * @returns true if the candidate passes and should be included in filtered results.
31
31
  */
32
32
  export type FilterTestFn = (candidate: PlainObject | StoreRecord) => boolean;
33
- export type FilterLike = Filter | CompoundFilterSpec | FieldFilterSpec | FunctionFilterSpec | FilterTestFn | FilterLike[];
33
+ export type FilterSpec = FieldFilterSpec | FunctionFilterSpec | CompoundFilterSpec;
34
+ export type FilterLike = Filter | FilterSpec | FilterTestFn | FilterLike[];
@@ -4,7 +4,7 @@ import { StoreType } from 'store2';
4
4
  * Service to provide simple key/value access to browser local storage, appropriately namespaced
5
5
  * by application code and username.
6
6
  *
7
- * Relied upon by Hoist persistence mechanisms when using key 'localStorageKey`
7
+ * Relied upon by Hoist persistence mechanisms when using key 'localStorageKey'.
8
8
  */
9
9
  export declare class LocalStorageService extends BaseStorageService {
10
10
  static instance: LocalStorageService;
@@ -4,7 +4,7 @@ import { StoreType } from 'store2';
4
4
  * Service to provide simple key/value access to browser session storage, appropriately namespaced
5
5
  * by application code and username.
6
6
  *
7
- * Relied upon by Hoist persistence mechanisms when using key 'sessionStorageKey`
7
+ * Relied upon by Hoist persistence mechanisms when using key 'sessionStorageKey'.
8
8
  */
9
9
  export declare class SessionStorageService extends BaseStorageService {
10
10
  static instance: SessionStorageService;
@@ -46,13 +46,6 @@ export class CompoundFilter extends Filter {
46
46
  Object.freeze(this);
47
47
  }
48
48
 
49
- toJSON() {
50
- return {
51
- filters: this.filters.map((f: any) => f.toJSON()),
52
- op: this.op
53
- };
54
- }
55
-
56
49
  //-----------------
57
50
  // Overrides
58
51
  //-----------------
@@ -74,4 +67,11 @@ export class CompoundFilter extends Filter {
74
67
  )
75
68
  );
76
69
  }
70
+
71
+ override toJSON(): CompoundFilterSpec {
72
+ return {
73
+ filters: this.filters.map(f => f.toJSON()),
74
+ op: this.op
75
+ };
76
+ }
77
77
  }
@@ -98,11 +98,6 @@ export class FieldFilter extends Filter {
98
98
  Object.freeze(this);
99
99
  }
100
100
 
101
- toJSON() {
102
- const {field, op, value, serializedValueType} = this;
103
- return {field, op, value, ...(serializedValueType ? {valueType: serializedValueType} : {})};
104
- }
105
-
106
101
  //-----------------
107
102
  // Overrides
108
103
  //-----------------
@@ -204,6 +199,11 @@ export class FieldFilter extends Filter {
204
199
  );
205
200
  }
206
201
 
202
+ override toJSON(): FieldFilterSpec {
203
+ const {field, op, value, serializedValueType} = this;
204
+ return {field, op, value, ...(serializedValueType ? {valueType: serializedValueType} : {})};
205
+ }
206
+
207
207
  //-----------------
208
208
  // Implementation
209
209
  //-----------------
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import {Store} from '../Store';
9
- import {FilterTestFn} from './Types';
9
+ import {FilterSpec, FilterTestFn} from './Types';
10
10
 
11
11
  /**
12
12
  * Base class for Hoist data package Filters.
@@ -33,4 +33,7 @@ export abstract class Filter {
33
33
 
34
34
  /** @returns true if the provided other Filter is equivalent to this instance.*/
35
35
  abstract equals(other: Filter): boolean;
36
+
37
+ /** @returns a JSON serializable spec that can be used to persist and recreate this filter.*/
38
+ abstract toJSON(): FilterSpec;
36
39
  }
@@ -5,6 +5,7 @@
5
5
  * Copyright © 2024 Extremely Heavy Industries Inc.
6
6
  */
7
7
 
8
+ import {XH} from '@xh/hoist/core';
8
9
  import {throwIf} from '@xh/hoist/utils/js';
9
10
  import {isFunction} from 'lodash';
10
11
  import {Store} from '../Store';
@@ -51,4 +52,8 @@ export class FunctionFilter extends Filter {
51
52
  if (other === this) return true;
52
53
  return other instanceof FunctionFilter && this.testFn === other.testFn;
53
54
  }
55
+
56
+ override toJSON(): FunctionFilterSpec {
57
+ throw XH.exception('FunctionFilter.toJSON() not supported.');
58
+ }
54
59
  }
@@ -59,10 +59,6 @@ export interface FunctionFilterSpec {
59
59
  */
60
60
  export type FilterTestFn = (candidate: PlainObject | StoreRecord) => boolean;
61
61
 
62
- export type FilterLike =
63
- | Filter
64
- | CompoundFilterSpec
65
- | FieldFilterSpec
66
- | FunctionFilterSpec
67
- | FilterTestFn
68
- | FilterLike[];
62
+ export type FilterSpec = FieldFilterSpec | FunctionFilterSpec | CompoundFilterSpec;
63
+
64
+ export type FilterLike = Filter | FilterSpec | FilterTestFn | FilterLike[];
@@ -8,13 +8,7 @@ import {form, FormModel} from '@xh/hoist/cmp/form';
8
8
  import {GridFilterModel} from '@xh/hoist/cmp/grid';
9
9
  import {filler} from '@xh/hoist/cmp/layout';
10
10
  import {hoistCmp, HoistModel, lookup, managed, useLocalModel, uses} from '@xh/hoist/core';
11
- import {
12
- CompoundFilter,
13
- FieldFilter,
14
- parseFilter,
15
- required,
16
- withFilterByTypes
17
- } from '@xh/hoist/data';
11
+ import {parseFilter, required, withFilterByTypes} from '@xh/hoist/data';
18
12
  import {button} from '@xh/hoist/desktop/cmp/button';
19
13
  import {formField} from '@xh/hoist/desktop/cmp/form';
20
14
  import {jsonInput} from '@xh/hoist/desktop/cmp/input';
@@ -151,9 +145,7 @@ class GridFilterDialogLocalModel extends HoistModel {
151
145
  }
152
146
 
153
147
  loadForm() {
154
- const filter = withFilterByTypes(this.model.filter, null, 'FunctionFilter') as
155
- | CompoundFilter
156
- | FieldFilter;
148
+ const filter = withFilterByTypes(this.model.filter, null, 'FunctionFilter');
157
149
  this.formModel.init({
158
150
  filter: JSON.stringify(filter?.toJSON() ?? null, undefined, 2)
159
151
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "71.0.0-SNAPSHOT.1734627276913",
3
+ "version": "71.0.0-SNAPSHOT.1735047359409",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",
@@ -12,7 +12,7 @@ import store, {StoreType} from 'store2';
12
12
  * Service to provide simple key/value access to browser local storage, appropriately namespaced
13
13
  * by application code and username.
14
14
  *
15
- * Relied upon by Hoist persistence mechanisms when using key 'localStorageKey`
15
+ * Relied upon by Hoist persistence mechanisms when using key 'localStorageKey'.
16
16
  */
17
17
  export class LocalStorageService extends BaseStorageService {
18
18
  static instance: LocalStorageService;
@@ -12,7 +12,7 @@ import store, {StoreType} from 'store2';
12
12
  * Service to provide simple key/value access to browser session storage, appropriately namespaced
13
13
  * by application code and username.
14
14
  *
15
- * Relied upon by Hoist persistence mechanisms when using key 'sessionStorageKey`
15
+ * Relied upon by Hoist persistence mechanisms when using key 'sessionStorageKey'.
16
16
  */
17
17
  export class SessionStorageService extends BaseStorageService {
18
18
  static instance: SessionStorageService;