semanticdb-core 1.1.18 → 1.1.19

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.
@@ -1,4 +1,5 @@
1
1
  import { RepresentationType } from '../common/representation';
2
+ import { PropertyType } from '../schema/property';
2
3
  import { SchemaType } from '../schema/schema';
3
4
  import { QueryType } from './types/query';
4
5
  export interface PredItemType {
@@ -20,6 +21,7 @@ export interface GroupbyItemType {
20
21
  name?: string;
21
22
  schema?: SchemaType;
22
23
  order?: string[];
24
+ property?: Pick<PropertyType, 'type' | 'primal_type'>;
23
25
  }
24
26
  export interface LogicformType {
25
27
  schema: string;
@@ -40,9 +40,9 @@ const getDrilldownDimensions = (schema_1, schemasDict_1, logicform_1, ...args_1)
40
40
  const addToArrayWithProperty = (property, prefix, schema) => {
41
41
  if (usage === 'analyze' && property.is_analyzable === false)
42
42
  return;
43
- const pushToPropNames = (propertyName, level, prefix, schema) => {
43
+ const pushToPropNames = (property, level, prefix, schema) => {
44
44
  const groupbyItem = {
45
- _id: prefix ? `${prefix}_${propertyName}` : propertyName,
45
+ _id: prefix ? `${prefix}_${property.name}` : property.name,
46
46
  };
47
47
  if (level) {
48
48
  groupbyItem.level = level;
@@ -50,6 +50,10 @@ const getDrilldownDimensions = (schema_1, schemasDict_1, logicform_1, ...args_1)
50
50
  if (schema) {
51
51
  groupbyItem.schema = schema;
52
52
  }
53
+ groupbyItem.property = {
54
+ type: property.type,
55
+ primal_type: property.primal_type,
56
+ };
53
57
  drilldownProps.push(groupbyItem);
54
58
  };
55
59
  if (property.isArray)
@@ -59,7 +63,7 @@ const getDrilldownDimensions = (schema_1, schemasDict_1, logicform_1, ...args_1)
59
63
  if (property.can_drilldown === false)
60
64
  return;
61
65
  if (property.is_categorical) {
62
- pushToPropNames(property.name, undefined, prefix, schema);
66
+ pushToPropNames(property, undefined, prefix, schema);
63
67
  }
64
68
  else if (property.ref && schemasDict[property.ref]) {
65
69
  if (schemasDict[property.ref].drilldown) {
@@ -67,17 +71,17 @@ const getDrilldownDimensions = (schema_1, schemasDict_1, logicform_1, ...args_1)
67
71
  if (!h._id.startsWith('_')) {
68
72
  property.name = h._id ? `${property.name}_${h._id}` : property.name;
69
73
  }
70
- pushToPropNames(property.name, h.level, prefix, schema);
74
+ pushToPropNames(property, h.level, prefix, schema);
71
75
  });
72
76
  return;
73
77
  }
74
78
  else if (schemasDict[property.ref].hierarchy) {
75
79
  schemasDict[property.ref].hierarchy.forEach((h) => {
76
- pushToPropNames(property.name, h.name, prefix, schema);
80
+ pushToPropNames(property, h.name, prefix, schema);
77
81
  });
78
82
  }
79
83
  else {
80
- pushToPropNames(property.name, undefined, prefix, schema);
84
+ pushToPropNames(property, undefined, prefix, schema);
81
85
  }
82
86
  // 这里要获取其他schema的属性
83
87
  if (!prefix || prefix.split('_').length < 3) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "semanticdb-core",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [