@robosystems/report-components 0.1.0 → 0.1.1
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.
- package/dist/adapters/index.d.ts +1 -5
- package/dist/adapters/index.js +2 -2
- package/dist/adapters/index.js.map +1 -1
- package/dist/chunk-K67BB5QI.js +264 -0
- package/dist/chunk-K67BB5QI.js.map +1 -0
- package/dist/{model.d.ts → index-2pOwdKOv.d.ts} +60 -17
- package/dist/index.d.ts +118 -23
- package/dist/index.js +491 -23
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/dist/adapters/cypher.d.ts +0 -21
- package/dist/adapters/cypher.d.ts.map +0 -1
- package/dist/adapters/cypher.js +0 -9
- package/dist/adapters/cypher.js.map +0 -1
- package/dist/adapters/index.d.ts.map +0 -1
- package/dist/adapters/trig.d.ts +0 -7
- package/dist/adapters/trig.d.ts.map +0 -1
- package/dist/adapters/trig.js +0 -183
- package/dist/adapters/trig.js.map +0 -1
- package/dist/adapters/types.d.ts +0 -16
- package/dist/adapters/types.d.ts.map +0 -1
- package/dist/adapters/types.js +0 -2
- package/dist/adapters/types.js.map +0 -1
- package/dist/components/FactInspector.d.ts +0 -11
- package/dist/components/FactInspector.d.ts.map +0 -1
- package/dist/components/FactInspector.js +0 -79
- package/dist/components/FactInspector.js.map +0 -1
- package/dist/components/ReportView.d.ts +0 -9
- package/dist/components/ReportView.d.ts.map +0 -1
- package/dist/components/ReportView.js +0 -51
- package/dist/components/ReportView.js.map +0 -1
- package/dist/components/StatementTable.d.ts +0 -15
- package/dist/components/StatementTable.d.ts.map +0 -1
- package/dist/components/StatementTable.js +0 -86
- package/dist/components/StatementTable.js.map +0 -1
- package/dist/constants.d.ts +0 -71
- package/dist/constants.d.ts.map +0 -1
- package/dist/constants.js +0 -115
- package/dist/constants.js.map +0 -1
- package/dist/format.d.ts +0 -17
- package/dist/format.d.ts.map +0 -1
- package/dist/format.js +0 -34
- package/dist/format.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/model.d.ts.map +0 -1
- package/dist/model.js +0 -15
- package/dist/model.js.map +0 -1
- package/dist/project.d.ts +0 -39
- package/dist/project.d.ts.map +0 -1
- package/dist/project.js +0 -201
- package/dist/project.js.map +0 -1
package/dist/constants.d.ts
DELETED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* RDF vocabulary and display helpers shared across adapters and projection.
|
|
3
|
-
*
|
|
4
|
-
* A `holon.trig` mixes several vocabularies: `rs:` for structure, `skos:` for
|
|
5
|
-
* human labels, and the XBRL family (`xlink:` / `xbrli:` / `link:`) for the
|
|
6
|
-
* networks. These constants are the single source of truth for the full IRIs.
|
|
7
|
-
*/
|
|
8
|
-
export declare const NS: {
|
|
9
|
-
readonly rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
|
|
10
|
-
readonly rs: "https://robosystems.ai/vocab/";
|
|
11
|
-
readonly rsgaap: "https://robosystems.ai/taxonomy/rs-gaap/v1/";
|
|
12
|
-
readonly skos: "http://www.w3.org/2004/02/skos/core#";
|
|
13
|
-
readonly xlink: "http://www.w3.org/1999/xlink#";
|
|
14
|
-
readonly xbrli: "http://www.xbrl.org/2003/instance#";
|
|
15
|
-
readonly link: "http://www.xbrl.org/2003/linkbase#";
|
|
16
|
-
readonly iso4217: "http://www.xbrl.org/2003/iso4217#";
|
|
17
|
-
};
|
|
18
|
-
/** Frequently-referenced full IRIs, pre-concatenated for terseness. */
|
|
19
|
-
export declare const IRI: {
|
|
20
|
-
readonly type: string;
|
|
21
|
-
readonly Report: string;
|
|
22
|
-
readonly Fact: string;
|
|
23
|
-
readonly InformationBlock: string;
|
|
24
|
-
readonly Structure: string;
|
|
25
|
-
readonly Association: string;
|
|
26
|
-
readonly Element: string;
|
|
27
|
-
readonly Period: string;
|
|
28
|
-
readonly Unit: string;
|
|
29
|
-
readonly Entity: string;
|
|
30
|
-
readonly element: string;
|
|
31
|
-
readonly period: string;
|
|
32
|
-
readonly unit: string;
|
|
33
|
-
readonly entity: string;
|
|
34
|
-
readonly factSet: string;
|
|
35
|
-
readonly numericValue: string;
|
|
36
|
-
readonly decimals: string;
|
|
37
|
-
readonly blockType: string;
|
|
38
|
-
readonly associationType: string;
|
|
39
|
-
readonly hasAssociation: string;
|
|
40
|
-
readonly roleUri: string;
|
|
41
|
-
readonly structureName: string;
|
|
42
|
-
readonly abstract: string;
|
|
43
|
-
readonly monetary: string;
|
|
44
|
-
readonly legalName: string;
|
|
45
|
-
readonly country: string;
|
|
46
|
-
readonly prefLabel: string;
|
|
47
|
-
readonly from: string;
|
|
48
|
-
readonly to: string;
|
|
49
|
-
readonly role: string;
|
|
50
|
-
readonly instant: string;
|
|
51
|
-
readonly startDate: string;
|
|
52
|
-
readonly endDate: string;
|
|
53
|
-
readonly periodType: string;
|
|
54
|
-
readonly balance: string;
|
|
55
|
-
readonly measure: string;
|
|
56
|
-
readonly order: string;
|
|
57
|
-
readonly weight: string;
|
|
58
|
-
};
|
|
59
|
-
/** Compact a concept IRI to `prefix:Local` (e.g. `rs-gaap:Assets`). */
|
|
60
|
-
export declare function qname(iri: string): string;
|
|
61
|
-
/**
|
|
62
|
-
* Readable concept name from a local name when no `skos:prefLabel` is present —
|
|
63
|
-
* splits CamelCase into words (`AssetsCurrent` → `Assets Current`). A graceful
|
|
64
|
-
* fallback for bundles that predate label emit.
|
|
65
|
-
*/
|
|
66
|
-
export declare function humanize(iri: string): string;
|
|
67
|
-
/** Stable display order for the canonical statement blocks; others fall after. */
|
|
68
|
-
export declare const BLOCK_ORDER: Record<string, number>;
|
|
69
|
-
/** Friendly section headings keyed by block type. */
|
|
70
|
-
export declare const BLOCK_TITLES: Record<string, string>;
|
|
71
|
-
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,eAAO,MAAM,EAAE;;;;;;;;;CASL,CAAA;AAEV,uEAAuE;AACvE,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CN,CAAA;AAmBV,uEAAuE;AACvE,wBAAgB,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CASzC;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAG5C;AAED,kFAAkF;AAClF,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAK9C,CAAA;AAED,qDAAqD;AACrD,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAK/C,CAAA"}
|
package/dist/constants.js
DELETED
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* RDF vocabulary and display helpers shared across adapters and projection.
|
|
3
|
-
*
|
|
4
|
-
* A `holon.trig` mixes several vocabularies: `rs:` for structure, `skos:` for
|
|
5
|
-
* human labels, and the XBRL family (`xlink:` / `xbrli:` / `link:`) for the
|
|
6
|
-
* networks. These constants are the single source of truth for the full IRIs.
|
|
7
|
-
*/
|
|
8
|
-
export const NS = {
|
|
9
|
-
rdf: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
|
|
10
|
-
rs: 'https://robosystems.ai/vocab/',
|
|
11
|
-
rsgaap: 'https://robosystems.ai/taxonomy/rs-gaap/v1/',
|
|
12
|
-
skos: 'http://www.w3.org/2004/02/skos/core#',
|
|
13
|
-
xlink: 'http://www.w3.org/1999/xlink#',
|
|
14
|
-
xbrli: 'http://www.xbrl.org/2003/instance#',
|
|
15
|
-
link: 'http://www.xbrl.org/2003/linkbase#',
|
|
16
|
-
iso4217: 'http://www.xbrl.org/2003/iso4217#',
|
|
17
|
-
};
|
|
18
|
-
/** Frequently-referenced full IRIs, pre-concatenated for terseness. */
|
|
19
|
-
export const IRI = {
|
|
20
|
-
type: NS.rdf + 'type',
|
|
21
|
-
// rs: classes
|
|
22
|
-
Report: NS.rs + 'Report',
|
|
23
|
-
Fact: NS.rs + 'Fact',
|
|
24
|
-
InformationBlock: NS.rs + 'InformationBlock',
|
|
25
|
-
Structure: NS.rs + 'Structure',
|
|
26
|
-
Association: NS.rs + 'Association',
|
|
27
|
-
Element: NS.rs + 'Element',
|
|
28
|
-
Period: NS.rs + 'Period',
|
|
29
|
-
Unit: NS.rs + 'Unit',
|
|
30
|
-
Entity: NS.rs + 'Entity',
|
|
31
|
-
// rs: predicates
|
|
32
|
-
element: NS.rs + 'element',
|
|
33
|
-
period: NS.rs + 'period',
|
|
34
|
-
unit: NS.rs + 'unit',
|
|
35
|
-
entity: NS.rs + 'entity',
|
|
36
|
-
factSet: NS.rs + 'factSet',
|
|
37
|
-
numericValue: NS.rs + 'numericValue',
|
|
38
|
-
decimals: NS.rs + 'decimals',
|
|
39
|
-
blockType: NS.rs + 'blockType',
|
|
40
|
-
associationType: NS.rs + 'associationType',
|
|
41
|
-
hasAssociation: NS.rs + 'hasAssociation',
|
|
42
|
-
roleUri: NS.rs + 'roleUri',
|
|
43
|
-
structureName: NS.rs + 'structureName',
|
|
44
|
-
abstract: NS.rs + 'abstract',
|
|
45
|
-
monetary: NS.rs + 'monetary',
|
|
46
|
-
legalName: NS.rs + 'legalName',
|
|
47
|
-
country: NS.rs + 'country',
|
|
48
|
-
// skos:
|
|
49
|
-
prefLabel: NS.skos + 'prefLabel',
|
|
50
|
-
// xlink:
|
|
51
|
-
from: NS.xlink + 'from',
|
|
52
|
-
to: NS.xlink + 'to',
|
|
53
|
-
role: NS.xlink + 'role',
|
|
54
|
-
// xbrli:
|
|
55
|
-
instant: NS.xbrli + 'instant',
|
|
56
|
-
startDate: NS.xbrli + 'startDate',
|
|
57
|
-
endDate: NS.xbrli + 'endDate',
|
|
58
|
-
periodType: NS.xbrli + 'periodType',
|
|
59
|
-
balance: NS.xbrli + 'balance',
|
|
60
|
-
measure: NS.xbrli + 'measure',
|
|
61
|
-
// link:
|
|
62
|
-
order: NS.link + 'order',
|
|
63
|
-
weight: NS.link + 'weight',
|
|
64
|
-
};
|
|
65
|
-
/**
|
|
66
|
-
* Prefixes for compacting concept IRIs to `prefix:Local`. Order matters — the
|
|
67
|
-
* most specific namespace must come first so `rs-gaap:` wins over `rs:`.
|
|
68
|
-
*/
|
|
69
|
-
const PREFIXES = [
|
|
70
|
-
['rs-gaap', NS.rsgaap],
|
|
71
|
-
['disclosures', 'https://robosystems.ai/taxonomy/rs-gaap/disclosures/v1/'],
|
|
72
|
-
['us-gaap', 'http://fasb.org/us-gaap/'],
|
|
73
|
-
['dei', 'http://xbrl.sec.gov/dei/'],
|
|
74
|
-
['rs', NS.rs],
|
|
75
|
-
['skos', NS.skos],
|
|
76
|
-
['xbrli', NS.xbrli],
|
|
77
|
-
['xlink', NS.xlink],
|
|
78
|
-
['link', NS.link],
|
|
79
|
-
['iso4217', NS.iso4217],
|
|
80
|
-
];
|
|
81
|
-
/** Compact a concept IRI to `prefix:Local` (e.g. `rs-gaap:Assets`). */
|
|
82
|
-
export function qname(iri) {
|
|
83
|
-
for (const [prefix, ns] of PREFIXES) {
|
|
84
|
-
if (iri.startsWith(ns)) {
|
|
85
|
-
return `${prefix}:${iri.slice(ns.length)}`;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
const slash = iri.lastIndexOf('/');
|
|
89
|
-
const hash = iri.lastIndexOf('#');
|
|
90
|
-
return iri.slice(Math.max(slash, hash) + 1);
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* Readable concept name from a local name when no `skos:prefLabel` is present —
|
|
94
|
-
* splits CamelCase into words (`AssetsCurrent` → `Assets Current`). A graceful
|
|
95
|
-
* fallback for bundles that predate label emit.
|
|
96
|
-
*/
|
|
97
|
-
export function humanize(iri) {
|
|
98
|
-
const local = qname(iri).split(':').pop() ?? iri;
|
|
99
|
-
return local.replace(/(?<=[a-z0-9])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])/g, ' ');
|
|
100
|
-
}
|
|
101
|
-
/** Stable display order for the canonical statement blocks; others fall after. */
|
|
102
|
-
export const BLOCK_ORDER = {
|
|
103
|
-
balance_sheet: 0,
|
|
104
|
-
income_statement: 1,
|
|
105
|
-
cash_flow_statement: 2,
|
|
106
|
-
equity_statement: 3,
|
|
107
|
-
};
|
|
108
|
-
/** Friendly section headings keyed by block type. */
|
|
109
|
-
export const BLOCK_TITLES = {
|
|
110
|
-
balance_sheet: 'Balance Sheet',
|
|
111
|
-
income_statement: 'Income Statement',
|
|
112
|
-
cash_flow_statement: 'Cash Flow Statement',
|
|
113
|
-
equity_statement: 'Statement of Changes in Equity',
|
|
114
|
-
};
|
|
115
|
-
//# sourceMappingURL=constants.js.map
|
package/dist/constants.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,CAAC,MAAM,EAAE,GAAG;IAChB,GAAG,EAAE,6CAA6C;IAClD,EAAE,EAAE,+BAA+B;IACnC,MAAM,EAAE,6CAA6C;IACrD,IAAI,EAAE,sCAAsC;IAC5C,KAAK,EAAE,+BAA+B;IACtC,KAAK,EAAE,oCAAoC;IAC3C,IAAI,EAAE,oCAAoC;IAC1C,OAAO,EAAE,mCAAmC;CACpC,CAAA;AAEV,uEAAuE;AACvE,MAAM,CAAC,MAAM,GAAG,GAAG;IACjB,IAAI,EAAE,EAAE,CAAC,GAAG,GAAG,MAAM;IACrB,cAAc;IACd,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,QAAQ;IACxB,IAAI,EAAE,EAAE,CAAC,EAAE,GAAG,MAAM;IACpB,gBAAgB,EAAE,EAAE,CAAC,EAAE,GAAG,kBAAkB;IAC5C,SAAS,EAAE,EAAE,CAAC,EAAE,GAAG,WAAW;IAC9B,WAAW,EAAE,EAAE,CAAC,EAAE,GAAG,aAAa;IAClC,OAAO,EAAE,EAAE,CAAC,EAAE,GAAG,SAAS;IAC1B,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,QAAQ;IACxB,IAAI,EAAE,EAAE,CAAC,EAAE,GAAG,MAAM;IACpB,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,QAAQ;IACxB,iBAAiB;IACjB,OAAO,EAAE,EAAE,CAAC,EAAE,GAAG,SAAS;IAC1B,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,QAAQ;IACxB,IAAI,EAAE,EAAE,CAAC,EAAE,GAAG,MAAM;IACpB,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,QAAQ;IACxB,OAAO,EAAE,EAAE,CAAC,EAAE,GAAG,SAAS;IAC1B,YAAY,EAAE,EAAE,CAAC,EAAE,GAAG,cAAc;IACpC,QAAQ,EAAE,EAAE,CAAC,EAAE,GAAG,UAAU;IAC5B,SAAS,EAAE,EAAE,CAAC,EAAE,GAAG,WAAW;IAC9B,eAAe,EAAE,EAAE,CAAC,EAAE,GAAG,iBAAiB;IAC1C,cAAc,EAAE,EAAE,CAAC,EAAE,GAAG,gBAAgB;IACxC,OAAO,EAAE,EAAE,CAAC,EAAE,GAAG,SAAS;IAC1B,aAAa,EAAE,EAAE,CAAC,EAAE,GAAG,eAAe;IACtC,QAAQ,EAAE,EAAE,CAAC,EAAE,GAAG,UAAU;IAC5B,QAAQ,EAAE,EAAE,CAAC,EAAE,GAAG,UAAU;IAC5B,SAAS,EAAE,EAAE,CAAC,EAAE,GAAG,WAAW;IAC9B,OAAO,EAAE,EAAE,CAAC,EAAE,GAAG,SAAS;IAC1B,QAAQ;IACR,SAAS,EAAE,EAAE,CAAC,IAAI,GAAG,WAAW;IAChC,SAAS;IACT,IAAI,EAAE,EAAE,CAAC,KAAK,GAAG,MAAM;IACvB,EAAE,EAAE,EAAE,CAAC,KAAK,GAAG,IAAI;IACnB,IAAI,EAAE,EAAE,CAAC,KAAK,GAAG,MAAM;IACvB,SAAS;IACT,OAAO,EAAE,EAAE,CAAC,KAAK,GAAG,SAAS;IAC7B,SAAS,EAAE,EAAE,CAAC,KAAK,GAAG,WAAW;IACjC,OAAO,EAAE,EAAE,CAAC,KAAK,GAAG,SAAS;IAC7B,UAAU,EAAE,EAAE,CAAC,KAAK,GAAG,YAAY;IACnC,OAAO,EAAE,EAAE,CAAC,KAAK,GAAG,SAAS;IAC7B,OAAO,EAAE,EAAE,CAAC,KAAK,GAAG,SAAS;IAC7B,QAAQ;IACR,KAAK,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO;IACxB,MAAM,EAAE,EAAE,CAAC,IAAI,GAAG,QAAQ;CAClB,CAAA;AAEV;;;GAGG;AACH,MAAM,QAAQ,GAA6C;IACzD,CAAC,SAAS,EAAE,EAAE,CAAC,MAAM,CAAC;IACtB,CAAC,aAAa,EAAE,yDAAyD,CAAC;IAC1E,CAAC,SAAS,EAAE,0BAA0B,CAAC;IACvC,CAAC,KAAK,EAAE,0BAA0B,CAAC;IACnC,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,CAAC;IACb,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,CAAC;IACjB,CAAC,OAAO,EAAE,EAAE,CAAC,KAAK,CAAC;IACnB,CAAC,OAAO,EAAE,EAAE,CAAC,KAAK,CAAC;IACnB,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,CAAC;IACjB,CAAC,SAAS,EAAE,EAAE,CAAC,OAAO,CAAC;CACxB,CAAA;AAED,uEAAuE;AACvE,MAAM,UAAU,KAAK,CAAC,GAAW;IAC/B,KAAK,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,QAAQ,EAAE,CAAC;QACpC,IAAI,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC;YACvB,OAAO,GAAG,MAAM,IAAI,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAA;QAC5C,CAAC;IACH,CAAC;IACD,MAAM,KAAK,GAAG,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IAClC,MAAM,IAAI,GAAG,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,CAAA;IACjC,OAAO,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;AAC7C,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,QAAQ,CAAC,GAAW;IAClC,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,GAAG,CAAA;IAChD,OAAO,KAAK,CAAC,OAAO,CAAC,kDAAkD,EAAE,GAAG,CAAC,CAAA;AAC/E,CAAC;AAED,kFAAkF;AAClF,MAAM,CAAC,MAAM,WAAW,GAA2B;IACjD,aAAa,EAAE,CAAC;IAChB,gBAAgB,EAAE,CAAC;IACnB,mBAAmB,EAAE,CAAC;IACtB,gBAAgB,EAAE,CAAC;CACpB,CAAA;AAED,qDAAqD;AACrD,MAAM,CAAC,MAAM,YAAY,GAA2B;IAClD,aAAa,EAAE,eAAe;IAC9B,gBAAgB,EAAE,kBAAkB;IACpC,mBAAmB,EAAE,qBAAqB;IAC1C,gBAAgB,EAAE,gCAAgC;CACnD,CAAA"}
|
package/dist/format.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Pure formatting helpers shared by the projection and the components. No React
|
|
3
|
-
* here, so the projection can depend on it without pulling in a renderer.
|
|
4
|
-
*/
|
|
5
|
-
import type { PeriodInfo } from './model';
|
|
6
|
-
/**
|
|
7
|
-
* Accounting-style money: negatives in parentheses, no sign, an em-dash for
|
|
8
|
-
* absent values. Matches the RoboLedger statement renderer.
|
|
9
|
-
*/
|
|
10
|
-
export declare function formatMoney(value: number | null | undefined, opts?: {
|
|
11
|
-
currencySymbol?: string;
|
|
12
|
-
}): string;
|
|
13
|
-
/** `2024-03-31` → `Mar 31, 2024`. Falls back to the raw string if unparseable. */
|
|
14
|
-
export declare function formatDate(iso: string | null | undefined): string;
|
|
15
|
-
/** A human description of a period — "As of …" for instants, a span for durations. */
|
|
16
|
-
export declare function formatPeriod(period: PeriodInfo): string;
|
|
17
|
-
//# sourceMappingURL=format.d.ts.map
|
package/dist/format.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"format.d.ts","sourceRoot":"","sources":["../src/format.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAEzC;;;GAGG;AACH,wBAAgB,WAAW,CACzB,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAChC,IAAI,GAAE;IAAE,cAAc,CAAC,EAAE,MAAM,CAAA;CAAO,GACrC,MAAM,CAQR;AAID,kFAAkF;AAClF,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAOjE;AAED,sFAAsF;AACtF,wBAAgB,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM,CAKvD"}
|
package/dist/format.js
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Accounting-style money: negatives in parentheses, no sign, an em-dash for
|
|
3
|
-
* absent values. Matches the RoboLedger statement renderer.
|
|
4
|
-
*/
|
|
5
|
-
export function formatMoney(value, opts = {}) {
|
|
6
|
-
if (value === null || value === undefined || Number.isNaN(value))
|
|
7
|
-
return '—';
|
|
8
|
-
const symbol = opts.currencySymbol ?? '$';
|
|
9
|
-
const abs = Math.abs(value).toLocaleString('en-US', {
|
|
10
|
-
minimumFractionDigits: 2,
|
|
11
|
-
maximumFractionDigits: 2,
|
|
12
|
-
});
|
|
13
|
-
return value < 0 ? `${symbol}(${abs})` : `${symbol}${abs}`;
|
|
14
|
-
}
|
|
15
|
-
const MONTHS = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
|
16
|
-
/** `2024-03-31` → `Mar 31, 2024`. Falls back to the raw string if unparseable. */
|
|
17
|
-
export function formatDate(iso) {
|
|
18
|
-
if (!iso)
|
|
19
|
-
return '';
|
|
20
|
-
const m = /^(\d{4})-(\d{2})-(\d{2})/.exec(iso);
|
|
21
|
-
if (!m)
|
|
22
|
-
return iso;
|
|
23
|
-
const [, year, month, day] = m;
|
|
24
|
-
const idx = Number(month) - 1;
|
|
25
|
-
return `${MONTHS[idx] ?? month} ${Number(day)}, ${year}`;
|
|
26
|
-
}
|
|
27
|
-
/** A human description of a period — "As of …" for instants, a span for durations. */
|
|
28
|
-
export function formatPeriod(period) {
|
|
29
|
-
if (period.type === 'instant') {
|
|
30
|
-
return `As of ${formatDate(period.instant ?? period.end)}`;
|
|
31
|
-
}
|
|
32
|
-
return `${formatDate(period.startDate)} – ${formatDate(period.endDate ?? period.end)}`;
|
|
33
|
-
}
|
|
34
|
-
//# sourceMappingURL=format.js.map
|
package/dist/format.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"format.js","sourceRoot":"","sources":["../src/format.ts"],"names":[],"mappings":"AAMA;;;GAGG;AACH,MAAM,UAAU,WAAW,CACzB,KAAgC,EAChC,OAAoC,EAAE;IAEtC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,IAAI,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;QAAE,OAAO,GAAG,CAAA;IAC5E,MAAM,MAAM,GAAG,IAAI,CAAC,cAAc,IAAI,GAAG,CAAA;IACzC,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,OAAO,EAAE;QAClD,qBAAqB,EAAE,CAAC;QACxB,qBAAqB,EAAE,CAAC;KACzB,CAAC,CAAA;IACF,OAAO,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,IAAI,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,GAAG,EAAE,CAAA;AAC5D,CAAC;AAED,MAAM,MAAM,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAA;AAEnG,kFAAkF;AAClF,MAAM,UAAU,UAAU,CAAC,GAA8B;IACvD,IAAI,CAAC,GAAG;QAAE,OAAO,EAAE,CAAA;IACnB,MAAM,CAAC,GAAG,0BAA0B,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAC9C,IAAI,CAAC,CAAC;QAAE,OAAO,GAAG,CAAA;IAClB,MAAM,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC,GAAG,CAAC,CAAA;IAC9B,MAAM,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;IAC7B,OAAO,GAAG,MAAM,CAAC,GAAG,CAAC,IAAI,KAAK,IAAI,MAAM,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAA;AAC1D,CAAC;AAED,sFAAsF;AACtF,MAAM,UAAU,YAAY,CAAC,MAAkB;IAC7C,IAAI,MAAM,CAAC,IAAI,KAAK,SAAS,EAAE,CAAC;QAC9B,OAAO,SAAS,UAAU,CAAC,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,GAAG,CAAC,EAAE,CAAA;IAC5D,CAAC;IACD,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,UAAU,CAAC,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,GAAG,CAAC,EAAE,CAAA;AACxF,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAGH,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AAC5E,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AAGzB,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,YAAY,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAA;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAA;AACpD,YAAY,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAC5D,YAAY,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AAGtE,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AACjD,YAAY,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAC5D,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAC5D,YAAY,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA"}
|
package/dist/model.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../src/model.ts"],"names":[],"mappings":"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"}
|
package/dist/model.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The normalized report model — the load-bearing seam of the library.
|
|
3
|
-
*
|
|
4
|
-
* An **adapter** turns its source (a `holon.trig` file, a cypher endpoint, a
|
|
5
|
-
* live ledger) into a `NormalizedReport`: the raw facts, Information Blocks,
|
|
6
|
-
* elements / periods / units / entity, and the calculation + presentation
|
|
7
|
-
* association networks. Nothing more.
|
|
8
|
-
*
|
|
9
|
-
* The **projection** (`project.ts`) and **components** turn that normalized
|
|
10
|
-
* model into rendered statements — the presentation-order walk, the calculation
|
|
11
|
-
* subtotals, the table layout. That work is identical for every adapter, which
|
|
12
|
-
* is what makes the rendering source-agnostic.
|
|
13
|
-
*/
|
|
14
|
-
export {};
|
|
15
|
-
//# sourceMappingURL=model.js.map
|
package/dist/model.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","sourceRoot":"","sources":["../src/model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG"}
|
package/dist/project.d.ts
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import type { ElementInfo, NormalizedReport, Statement } from './model';
|
|
2
|
-
interface OrderEntry {
|
|
3
|
-
order: number;
|
|
4
|
-
depth: number;
|
|
5
|
-
}
|
|
6
|
-
/**
|
|
7
|
-
* Post-order the presentation arcs of one structure → `{element: {order, depth}}`.
|
|
8
|
-
* Roots (a `from` that is never a `to`) are visited by their subtree's leading
|
|
9
|
-
* arc order, so a balance sheet's roots (Assets, then Liabilities and Equity)
|
|
10
|
-
* come out in the right sequence.
|
|
11
|
-
*/
|
|
12
|
-
export declare function presentationOrder(model: NormalizedReport, structureId: string): Map<string, OrderEntry>;
|
|
13
|
-
/** Concepts that are calculation parents — the authoritative subtotal set. */
|
|
14
|
-
export declare function calcSubtotals(model: NormalizedReport): Set<string>;
|
|
15
|
-
/** Reconstruct every statement in the report, in canonical block order. */
|
|
16
|
-
export declare function buildStatements(model: NormalizedReport): Statement[];
|
|
17
|
-
export interface FootTerm {
|
|
18
|
-
element: ElementInfo;
|
|
19
|
-
weight: number;
|
|
20
|
-
value: number | null;
|
|
21
|
-
}
|
|
22
|
-
export interface FootCheck {
|
|
23
|
-
element: ElementInfo;
|
|
24
|
-
columnIndex: number;
|
|
25
|
-
terms: FootTerm[];
|
|
26
|
-
/** Σ child·weight over the present terms, or null if none are present. */
|
|
27
|
-
expected: number | null;
|
|
28
|
-
/** The subtotal's own reported value in this column. */
|
|
29
|
-
actual: number | null;
|
|
30
|
-
ok: boolean;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Foot a subtotal live: sum its calculation children (× weight) and compare to
|
|
34
|
-
* its reported value, e.g. `13,550 + 900 = 14,450 ✓`. Returns `null` when the
|
|
35
|
-
* element is not a calculation parent (nothing to foot).
|
|
36
|
-
*/
|
|
37
|
-
export declare function footCheck(model: NormalizedReport, statement: Statement, elementId: string, columnIndex: number): FootCheck | null;
|
|
38
|
-
export {};
|
|
39
|
-
//# sourceMappingURL=project.d.ts.map
|
package/dist/project.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../src/project.ts"],"names":[],"mappings":"AAqBA,OAAO,KAAK,EAEV,WAAW,EAGX,gBAAgB,EAGhB,SAAS,EAIV,MAAM,SAAS,CAAA;AAEhB,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd;AAcD;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,gBAAgB,EACvB,WAAW,EAAE,MAAM,GAClB,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAuCzB;AAED,8EAA8E;AAC9E,wBAAgB,aAAa,CAAC,KAAK,EAAE,gBAAgB,GAAG,GAAG,CAAC,MAAM,CAAC,CAIlE;AAoFD,2EAA2E;AAC3E,wBAAgB,eAAe,CAAC,KAAK,EAAE,gBAAgB,GAAG,SAAS,EAAE,CASpE;AAID,MAAM,WAAW,QAAQ;IACvB,OAAO,EAAE,WAAW,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;CACrB;AAED,MAAM,WAAW,SAAS;IACxB,OAAO,EAAE,WAAW,CAAA;IACpB,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,QAAQ,EAAE,CAAA;IACjB,0EAA0E;IAC1E,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;IACvB,wDAAwD;IACxD,MAAM,EAAE,MAAM,GAAG,IAAI,CAAA;IACrB,EAAE,EAAE,OAAO,CAAA;CACZ;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CACvB,KAAK,EAAE,gBAAgB,EACvB,SAAS,EAAE,SAAS,EACpB,SAAS,EAAE,MAAM,EACjB,WAAW,EAAE,MAAM,GAClB,SAAS,GAAG,IAAI,CAiClB"}
|
package/dist/project.js
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Reconstruction: a `NormalizedReport` → renderable `Statement`s.
|
|
3
|
-
*
|
|
4
|
-
* This is the source-agnostic half of the library — the part that is identical
|
|
5
|
-
* for every adapter. It is a TypeScript port of the RoboSystems platform's
|
|
6
|
-
* DataBook converter:
|
|
7
|
-
*
|
|
8
|
-
* - **presentation walk** — a post-order DFS of the presentation network, so a
|
|
9
|
-
* total renders *after* its components (cash + receivables … then *Assets,
|
|
10
|
-
* Current*; the section subtotals last). `order` is the flattened post-order
|
|
11
|
-
* position; `depth` is the tree depth (drives indentation).
|
|
12
|
-
* - **subtotal detection** — a concept is a subtotal iff it is a *calculation
|
|
13
|
-
* parent*. A presentation leaf can still be a subtotal (Gross Profit is a
|
|
14
|
-
* presentation sibling but a calculation parent), so bolding off the calc
|
|
15
|
-
* tree marks exactly the right rows.
|
|
16
|
-
* - **table projection** — collect a block's facts by `factSet`, key by
|
|
17
|
-
* element, derive period columns from the facts themselves, lay rows out in
|
|
18
|
-
* presentation order.
|
|
19
|
-
*/
|
|
20
|
-
import { BLOCK_ORDER, BLOCK_TITLES, humanize, qname } from './constants';
|
|
21
|
-
import { formatDate } from './format';
|
|
22
|
-
function fallbackElement(id) {
|
|
23
|
-
return {
|
|
24
|
-
id,
|
|
25
|
-
qname: qname(id),
|
|
26
|
-
label: humanize(id),
|
|
27
|
-
balance: null,
|
|
28
|
-
periodType: null,
|
|
29
|
-
abstract: false,
|
|
30
|
-
monetary: false,
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Post-order the presentation arcs of one structure → `{element: {order, depth}}`.
|
|
35
|
-
* Roots (a `from` that is never a `to`) are visited by their subtree's leading
|
|
36
|
-
* arc order, so a balance sheet's roots (Assets, then Liabilities and Equity)
|
|
37
|
-
* come out in the right sequence.
|
|
38
|
-
*/
|
|
39
|
-
export function presentationOrder(model, structureId) {
|
|
40
|
-
const children = new Map();
|
|
41
|
-
const froms = new Set();
|
|
42
|
-
const tos = new Set();
|
|
43
|
-
for (const assoc of model.presAssociations) {
|
|
44
|
-
if (assoc.structure !== structureId)
|
|
45
|
-
continue;
|
|
46
|
-
const kids = children.get(assoc.parent) ?? [];
|
|
47
|
-
kids.push([assoc.order, assoc.child]);
|
|
48
|
-
children.set(assoc.parent, kids);
|
|
49
|
-
froms.add(assoc.parent);
|
|
50
|
-
tos.add(assoc.child);
|
|
51
|
-
}
|
|
52
|
-
for (const kids of children.values()) {
|
|
53
|
-
kids.sort((a, b) => a[0] - b[0]);
|
|
54
|
-
}
|
|
55
|
-
const out = new Map();
|
|
56
|
-
const seen = new Set();
|
|
57
|
-
let counter = 0;
|
|
58
|
-
const walk = (node, depth) => {
|
|
59
|
-
if (seen.has(node))
|
|
60
|
-
return;
|
|
61
|
-
seen.add(node);
|
|
62
|
-
for (const [, child] of children.get(node) ?? []) {
|
|
63
|
-
walk(child, depth + 1);
|
|
64
|
-
}
|
|
65
|
-
out.set(node, { order: counter, depth });
|
|
66
|
-
counter += 1;
|
|
67
|
-
};
|
|
68
|
-
const rootKey = (root) => {
|
|
69
|
-
const kids = children.get(root);
|
|
70
|
-
return kids && kids.length ? kids[0][0] : 0;
|
|
71
|
-
};
|
|
72
|
-
const roots = [...froms].filter((f) => !tos.has(f)).sort((a, b) => rootKey(a) - rootKey(b));
|
|
73
|
-
for (const root of roots)
|
|
74
|
-
walk(root, 0);
|
|
75
|
-
return out;
|
|
76
|
-
}
|
|
77
|
-
/** Concepts that are calculation parents — the authoritative subtotal set. */
|
|
78
|
-
export function calcSubtotals(model) {
|
|
79
|
-
const out = new Set();
|
|
80
|
-
for (const assoc of model.calcAssociations)
|
|
81
|
-
out.add(assoc.parent);
|
|
82
|
-
return out;
|
|
83
|
-
}
|
|
84
|
-
function structureForBlock(model, blockType) {
|
|
85
|
-
return model.structures.find((s) => s.blockType === blockType) ?? null;
|
|
86
|
-
}
|
|
87
|
-
function columnLabel(period) {
|
|
88
|
-
return formatDate(period.end);
|
|
89
|
-
}
|
|
90
|
-
/** Period columns derived from the facts in one block, keyed and sorted by end. */
|
|
91
|
-
function deriveColumns(model, facts) {
|
|
92
|
-
const byEnd = new Map();
|
|
93
|
-
for (const fact of facts) {
|
|
94
|
-
const period = model.periods[fact.period];
|
|
95
|
-
if (!period || !period.end)
|
|
96
|
-
continue;
|
|
97
|
-
const existing = byEnd.get(period.end);
|
|
98
|
-
// Prefer a duration as the column representative — it carries the span.
|
|
99
|
-
if (!existing || (existing.type === 'instant' && period.type === 'duration')) {
|
|
100
|
-
byEnd.set(period.end, period);
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
return [...byEnd.values()]
|
|
104
|
-
.sort((a, b) => {
|
|
105
|
-
const aStart = a.startDate ?? a.end;
|
|
106
|
-
const bStart = b.startDate ?? b.end;
|
|
107
|
-
return aStart.localeCompare(bStart) || a.end.localeCompare(b.end);
|
|
108
|
-
})
|
|
109
|
-
.map((period) => ({ key: period.end, label: columnLabel(period), period }));
|
|
110
|
-
}
|
|
111
|
-
function buildStatement(model, ib, subtotals) {
|
|
112
|
-
const structure = structureForBlock(model, ib.blockType);
|
|
113
|
-
const order = structure ? presentationOrder(model, structure.id) : new Map();
|
|
114
|
-
const facts = model.facts.filter((f) => f.factSet !== null && f.factSet === ib.factSet);
|
|
115
|
-
const columns = deriveColumns(model, facts);
|
|
116
|
-
const colIndex = new Map(columns.map((c, i) => [c.key, i]));
|
|
117
|
-
const cellsByElement = new Map();
|
|
118
|
-
for (const fact of facts) {
|
|
119
|
-
const period = model.periods[fact.period];
|
|
120
|
-
if (!period)
|
|
121
|
-
continue;
|
|
122
|
-
const idx = colIndex.get(period.end);
|
|
123
|
-
if (idx === undefined)
|
|
124
|
-
continue;
|
|
125
|
-
let cells = cellsByElement.get(fact.element);
|
|
126
|
-
if (!cells) {
|
|
127
|
-
cells = columns.map(() => ({ value: null, fact: null }));
|
|
128
|
-
cellsByElement.set(fact.element, cells);
|
|
129
|
-
}
|
|
130
|
-
cells[idx] = { value: fact.value, fact };
|
|
131
|
-
}
|
|
132
|
-
const rows = [...cellsByElement.keys()]
|
|
133
|
-
.map((id) => {
|
|
134
|
-
const entry = order.get(id);
|
|
135
|
-
return {
|
|
136
|
-
id,
|
|
137
|
-
order: entry ? entry.order : Number.MAX_SAFE_INTEGER,
|
|
138
|
-
depth: entry ? entry.depth : 0,
|
|
139
|
-
};
|
|
140
|
-
})
|
|
141
|
-
.sort((a, b) => a.order - b.order || a.id.localeCompare(b.id))
|
|
142
|
-
.map(({ id, depth }) => ({
|
|
143
|
-
element: model.elements[id] ?? fallbackElement(id),
|
|
144
|
-
depth,
|
|
145
|
-
isSubtotal: subtotals.has(id),
|
|
146
|
-
cells: cellsByElement.get(id),
|
|
147
|
-
}));
|
|
148
|
-
return {
|
|
149
|
-
ib,
|
|
150
|
-
blockType: ib.blockType,
|
|
151
|
-
title: BLOCK_TITLES[ib.blockType] ?? ib.label ?? ib.blockType,
|
|
152
|
-
structureName: structure?.structureName ?? ib.label ?? null,
|
|
153
|
-
columns,
|
|
154
|
-
rows,
|
|
155
|
-
};
|
|
156
|
-
}
|
|
157
|
-
/** Reconstruct every statement in the report, in canonical block order. */
|
|
158
|
-
export function buildStatements(model) {
|
|
159
|
-
const subtotals = calcSubtotals(model);
|
|
160
|
-
return [...model.informationBlocks]
|
|
161
|
-
.sort((a, b) => (BLOCK_ORDER[a.blockType] ?? 99) - (BLOCK_ORDER[b.blockType] ?? 99) ||
|
|
162
|
-
a.blockType.localeCompare(b.blockType))
|
|
163
|
-
.map((ib) => buildStatement(model, ib, subtotals));
|
|
164
|
-
}
|
|
165
|
-
/**
|
|
166
|
-
* Foot a subtotal live: sum its calculation children (× weight) and compare to
|
|
167
|
-
* its reported value, e.g. `13,550 + 900 = 14,450 ✓`. Returns `null` when the
|
|
168
|
-
* element is not a calculation parent (nothing to foot).
|
|
169
|
-
*/
|
|
170
|
-
export function footCheck(model, statement, elementId, columnIndex) {
|
|
171
|
-
const kids = model.calcAssociations.filter((a) => a.parent === elementId);
|
|
172
|
-
if (!kids.length)
|
|
173
|
-
return null;
|
|
174
|
-
const valueOf = (id) => {
|
|
175
|
-
const row = statement.rows.find((r) => r.element.id === id);
|
|
176
|
-
return row ? (row.cells[columnIndex]?.value ?? null) : null;
|
|
177
|
-
};
|
|
178
|
-
const terms = kids
|
|
179
|
-
.slice()
|
|
180
|
-
.sort((a, b) => a.order - b.order)
|
|
181
|
-
.map((a) => ({
|
|
182
|
-
element: model.elements[a.child] ?? fallbackElement(a.child),
|
|
183
|
-
weight: a.weight,
|
|
184
|
-
value: valueOf(a.child),
|
|
185
|
-
}));
|
|
186
|
-
const present = terms.filter((t) => t.value !== null);
|
|
187
|
-
const expected = present.length
|
|
188
|
-
? present.reduce((sum, t) => sum + t.value * t.weight, 0)
|
|
189
|
-
: null;
|
|
190
|
-
const actual = valueOf(elementId);
|
|
191
|
-
const ok = expected !== null && actual !== null && Math.abs(expected - actual) < 0.005;
|
|
192
|
-
return {
|
|
193
|
-
element: model.elements[elementId] ?? fallbackElement(elementId),
|
|
194
|
-
columnIndex,
|
|
195
|
-
terms,
|
|
196
|
-
expected,
|
|
197
|
-
actual,
|
|
198
|
-
ok,
|
|
199
|
-
};
|
|
200
|
-
}
|
|
201
|
-
//# sourceMappingURL=project.js.map
|
package/dist/project.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"project.js","sourceRoot":"","sources":["../src/project.ts"],"names":[],"mappings":"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"}
|