@sorb/core 0.1.0 → 0.2.0
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/LICENSE +201 -0
- package/package.json +2 -2
- package/src/connectors.test.js +131 -0
- package/src/index.js +201 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright contributors
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sorb/core",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Shared
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Shared contract for Sorb, the design-token bridge for your running app — typedefs + tier ordering so the contract can't drift. (Core.)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"keywords": [
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
// Contract test for the connector registry — proves dispatch is REAL (a
|
|
2
|
+
// registered impl round-trips through get*), not just JSDoc types.
|
|
3
|
+
import test from 'node:test'
|
|
4
|
+
import assert from 'node:assert/strict'
|
|
5
|
+
import {
|
|
6
|
+
connectors,
|
|
7
|
+
registerSource,
|
|
8
|
+
registerCodeSource,
|
|
9
|
+
registerTarget,
|
|
10
|
+
getSource,
|
|
11
|
+
getCodeSource,
|
|
12
|
+
getTarget,
|
|
13
|
+
resolveConnectorIds,
|
|
14
|
+
DEFAULT_SOURCE_ID,
|
|
15
|
+
DEFAULT_CODE_SOURCE_ID,
|
|
16
|
+
DEFAULT_TARGET_ID,
|
|
17
|
+
} from './index.js'
|
|
18
|
+
|
|
19
|
+
test('source connector registers and round-trips via getSource', () => {
|
|
20
|
+
const dummy = {
|
|
21
|
+
id: 'dummy-source',
|
|
22
|
+
async listUnits() {
|
|
23
|
+
return [{ id: 'u1', name: 'Unit 1' }]
|
|
24
|
+
},
|
|
25
|
+
async captureGeometry() {
|
|
26
|
+
return { type: 'FRAME' }
|
|
27
|
+
},
|
|
28
|
+
async readTokens() {
|
|
29
|
+
return { 'color.bg': '#fff' }
|
|
30
|
+
},
|
|
31
|
+
}
|
|
32
|
+
const returned = registerSource(dummy)
|
|
33
|
+
assert.equal(returned, dummy)
|
|
34
|
+
assert.equal(getSource('dummy-source'), dummy)
|
|
35
|
+
assert.equal(connectors.source.get('dummy-source'), dummy)
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
test('codeSource connector registers and round-trips via getCodeSource', () => {
|
|
39
|
+
const dummy = {
|
|
40
|
+
id: 'dummy-code',
|
|
41
|
+
async resolveAppUrl() {
|
|
42
|
+
return 'http://localhost:5173'
|
|
43
|
+
},
|
|
44
|
+
resolveProjectRoot() {
|
|
45
|
+
return '/tmp/proj'
|
|
46
|
+
},
|
|
47
|
+
}
|
|
48
|
+
registerCodeSource(dummy)
|
|
49
|
+
assert.equal(getCodeSource('dummy-code'), dummy)
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
test('target adapter registers and round-trips via getTarget', () => {
|
|
53
|
+
const dummy = {
|
|
54
|
+
id: 'dummy-target',
|
|
55
|
+
emitFormat: 'SORB_TOKENSET',
|
|
56
|
+
expectPrefixes: ['bs-'],
|
|
57
|
+
}
|
|
58
|
+
registerTarget(dummy)
|
|
59
|
+
assert.equal(getTarget('dummy-target'), dummy)
|
|
60
|
+
})
|
|
61
|
+
|
|
62
|
+
test('target adapter darkMode field is optional — undefined ⇒ single-mode', () => {
|
|
63
|
+
const dummy = {
|
|
64
|
+
id: 'dummy-target-no-dark',
|
|
65
|
+
emitFormat: 'SORB_TOKENSET',
|
|
66
|
+
expectPrefixes: ['bs-'],
|
|
67
|
+
}
|
|
68
|
+
registerTarget(dummy)
|
|
69
|
+
assert.equal(getTarget('dummy-target-no-dark').darkMode, undefined)
|
|
70
|
+
})
|
|
71
|
+
|
|
72
|
+
test('target adapter round-trips a darkMode convention (attribute strategy)', () => {
|
|
73
|
+
const dummy = {
|
|
74
|
+
id: 'dummy-target-dark',
|
|
75
|
+
emitFormat: 'SORB_TOKENSET',
|
|
76
|
+
expectPrefixes: ['bs-'],
|
|
77
|
+
darkMode: {
|
|
78
|
+
strategy: 'attribute',
|
|
79
|
+
attribute: 'data-bs-theme',
|
|
80
|
+
darkSelector: '[data-bs-theme="dark"]',
|
|
81
|
+
lightSelector: '[data-bs-theme="light"]',
|
|
82
|
+
},
|
|
83
|
+
}
|
|
84
|
+
registerTarget(dummy)
|
|
85
|
+
const got = getTarget('dummy-target-dark')
|
|
86
|
+
assert.equal(got.darkMode.strategy, 'attribute')
|
|
87
|
+
assert.equal(got.darkMode.attribute, 'data-bs-theme')
|
|
88
|
+
assert.equal(got.darkMode.darkSelector, '[data-bs-theme="dark"]')
|
|
89
|
+
assert.equal(got.darkMode.lightSelector, '[data-bs-theme="light"]')
|
|
90
|
+
})
|
|
91
|
+
|
|
92
|
+
test('get* throws a clear error on unknown id', () => {
|
|
93
|
+
assert.throws(() => getSource('nope'), /Unknown source connector: "nope"/)
|
|
94
|
+
assert.throws(() => getCodeSource('nope'), /Unknown codeSource connector: "nope"/)
|
|
95
|
+
assert.throws(() => getTarget('nope'), /Unknown target adapter: "nope"/)
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
test('resolveConnectorIds returns all three defaults for empty config', () => {
|
|
99
|
+
assert.deepEqual(resolveConnectorIds({}), {
|
|
100
|
+
source: DEFAULT_SOURCE_ID,
|
|
101
|
+
codeSource: DEFAULT_CODE_SOURCE_ID,
|
|
102
|
+
target: DEFAULT_TARGET_ID,
|
|
103
|
+
})
|
|
104
|
+
// Same with no argument at all.
|
|
105
|
+
assert.deepEqual(resolveConnectorIds(), {
|
|
106
|
+
source: DEFAULT_SOURCE_ID,
|
|
107
|
+
codeSource: DEFAULT_CODE_SOURCE_ID,
|
|
108
|
+
target: DEFAULT_TARGET_ID,
|
|
109
|
+
})
|
|
110
|
+
})
|
|
111
|
+
|
|
112
|
+
test('resolveConnectorIds overrides only the provided axis', () => {
|
|
113
|
+
assert.deepEqual(resolveConnectorIds({ source: 'x' }), {
|
|
114
|
+
source: 'x',
|
|
115
|
+
codeSource: DEFAULT_CODE_SOURCE_ID,
|
|
116
|
+
target: DEFAULT_TARGET_ID,
|
|
117
|
+
})
|
|
118
|
+
})
|
|
119
|
+
|
|
120
|
+
test('default ids match the frozen contract', () => {
|
|
121
|
+
assert.equal(DEFAULT_SOURCE_ID, 'storybook-dom')
|
|
122
|
+
assert.equal(DEFAULT_CODE_SOURCE_ID, 'local')
|
|
123
|
+
assert.equal(DEFAULT_TARGET_ID, 'react-bootstrap')
|
|
124
|
+
})
|
|
125
|
+
|
|
126
|
+
test('connectors container is frozen; its axis Maps are mutable', () => {
|
|
127
|
+
assert.ok(Object.isFrozen(connectors))
|
|
128
|
+
assert.ok(connectors.source instanceof Map)
|
|
129
|
+
assert.ok(connectors.codeSource instanceof Map)
|
|
130
|
+
assert.ok(connectors.target instanceof Map)
|
|
131
|
+
})
|
package/src/index.js
CHANGED
|
@@ -98,4 +98,205 @@ export const TIER_RANK = Object.freeze({ component: 0, semantic: 1, primitive: 2
|
|
|
98
98
|
* @property {Object.<string, StoryEntry>} stories storyId → entry.
|
|
99
99
|
*/
|
|
100
100
|
|
|
101
|
+
/**
|
|
102
|
+
* Identifies a component variant by its dot-path prefix.
|
|
103
|
+
* e.g. "button.tertiary" covers all tokens whose id starts with "button.tertiary."
|
|
104
|
+
* @typedef {Object} VariantSpec
|
|
105
|
+
* @property {string} componentId Top-level component key, e.g. "button".
|
|
106
|
+
* @property {string} variantId Full dot-path of the variant, e.g. "button.tertiary".
|
|
107
|
+
* @property {string} [fromVariant] Dot-path of the source variant to clone from (addVariant only).
|
|
108
|
+
* @property {string} [replacedBy] Dot-path that replaces this variant (deprecateVariant only).
|
|
109
|
+
*/
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* The result of a lifecycle action — what changed.
|
|
113
|
+
* @typedef {Object} VariantChangeset
|
|
114
|
+
* @property {'add'|'deprecate'} action
|
|
115
|
+
* @property {string} variantId The variant that was added or deprecated.
|
|
116
|
+
* @property {string[]} tokenIds All token ids affected (added or deprecated).
|
|
117
|
+
* @property {string} newVersion The component set's new $version after the change.
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
// ─── Connector contract (v1: additive) ─────────────────────────────────────────
|
|
121
|
+
//
|
|
122
|
+
// Three pluggable axes — SOURCE (where tokens + geometry come IN), CODE-SOURCE
|
|
123
|
+
// (where the running app / codebase lives), and TARGET (how tokens bind into the
|
|
124
|
+
// app) — plus a runtime registry that dispatches by `id`. Core only defines the
|
|
125
|
+
// contract + registry + default ids; the default implementations are registered
|
|
126
|
+
// by sorb-seed / sorb-juice / sorb-leaf in later phases. See
|
|
127
|
+
// spec/sorb/connectors-architecture.md. `config` everywhere below is the app's
|
|
128
|
+
// `sorb.config.json`-shaped object.
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* A design unit to capture — one addressable thing a SourceConnector can turn
|
|
132
|
+
* into geometry (today's Storybook "story entry" is one). Opaque-ish: only `id`
|
|
133
|
+
* is guaranteed; connectors carry whatever extra metadata they need.
|
|
134
|
+
* @typedef {Object} DesignUnit
|
|
135
|
+
* @property {string} id Stable unit id (e.g. a Storybook story id).
|
|
136
|
+
* @property {string} [name] Human-readable label.
|
|
137
|
+
*/
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* SOURCE axis — where design tokens + geometry come IN. A real source pulls BOTH
|
|
141
|
+
* tokens and geometry from the tool (founder decision 2026-08-28).
|
|
142
|
+
* @typedef {Object} SourceConnector
|
|
143
|
+
* @property {string} id Registry key (default `'storybook-dom'`).
|
|
144
|
+
* @property {(config: Object) => Promise<DesignUnit[]>} listUnits
|
|
145
|
+
* Discover the design units to capture.
|
|
146
|
+
* @property {(unit: DesignUnit, config: Object) => Promise<LayerNode>} captureGeometry
|
|
147
|
+
* Capture one unit as a raw (un-annotated) LayerNode tree.
|
|
148
|
+
* @property {(config: Object) => Promise<TokenSet>} readTokens
|
|
149
|
+
* Read the DTCG token set for this source.
|
|
150
|
+
*/
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* CODE-SOURCE axis — where the running app / codebase lives.
|
|
154
|
+
* @typedef {Object} CodeSourceConnector
|
|
155
|
+
* @property {string} id Registry key (default `'local'`).
|
|
156
|
+
* @property {(config: Object) => Promise<string|null>} resolveAppUrl
|
|
157
|
+
* Resolve the running app's URL (today = `appUrl` / `localhost:5173`).
|
|
158
|
+
* @property {(config: Object) => string} resolveProjectRoot
|
|
159
|
+
* Resolve the project root dir (today = `process.cwd()`).
|
|
160
|
+
* @property {(config: Object) => Promise<void>} [provision]
|
|
161
|
+
* Optional: clone/build a repo → hosted preview (future code sources).
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* TARGET axis — how tokens bind into the running app (the component-compat seam).
|
|
166
|
+
* @typedef {Object} TargetAdapter
|
|
167
|
+
* @property {string} id Registry key (default `'react-bootstrap'`).
|
|
168
|
+
* @property {string} emitFormat A Style-Dictionary format id (e.g. `SORB_TOKENSET`).
|
|
169
|
+
* @property {string[]} expectPrefixes Vocab-guard namespace(s), e.g. `['bs-']`.
|
|
170
|
+
* @property {(tokens: TokenSet, config: Object) => void} [inject]
|
|
171
|
+
* Optional: bind tokens into non-React hosts (the `sorbInit` seam).
|
|
172
|
+
* @property {DarkModeConvention} [darkMode]
|
|
173
|
+
* Optional: this target's dark-mode convention (real-dark-mode spec D1).
|
|
174
|
+
* Undefined ⇒ single-mode (no dark) — the target has no notion of a dark
|
|
175
|
+
* variant and mode-aware emit/inject should fall back to flat `:root` output.
|
|
176
|
+
*/
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* How a TargetAdapter's host framework expresses light/dark mode. v1 only
|
|
180
|
+
* ships `'attribute'` (Bootstrap 5.3's `[data-bs-theme]`); `'class'`
|
|
181
|
+
* (Tailwind's `.dark`) and `'media'` (OS-only, no manual override) are named
|
|
182
|
+
* here for forward-compat but not yet implemented by any shipped adapter —
|
|
183
|
+
* see real-dark-mode-implementation spec §3 "Deferred to phase 2".
|
|
184
|
+
* @typedef {Object} DarkModeConvention
|
|
185
|
+
* @property {'attribute'|'class'|'media'} strategy
|
|
186
|
+
* How the manual override is expressed. `'attribute'` sets/reads a DOM
|
|
187
|
+
* attribute (e.g. `data-bs-theme`); `'class'` toggles a class on
|
|
188
|
+
* `documentElement`; `'media'` means OS-only, no manual override.
|
|
189
|
+
* @property {string} [attribute]
|
|
190
|
+
* The attribute name for `strategy: 'attribute'` (e.g. `'data-bs-theme'`).
|
|
191
|
+
* @property {string} darkSelector
|
|
192
|
+
* The CSS selector matching the dark-mode override (e.g.
|
|
193
|
+
* `'[data-bs-theme="dark"]'`).
|
|
194
|
+
* @property {string} [lightSelector]
|
|
195
|
+
* The CSS selector matching an explicit light-mode override (e.g.
|
|
196
|
+
* `'[data-bs-theme="light"]'`) — lets a manual "light" choice beat an OS
|
|
197
|
+
* `prefers-color-scheme: dark` setting.
|
|
198
|
+
*/
|
|
199
|
+
|
|
200
|
+
/** Default SOURCE connector id (registered by sorb-seed). @type {string} */
|
|
201
|
+
export const DEFAULT_SOURCE_ID = 'storybook-dom'
|
|
202
|
+
|
|
203
|
+
/** Default CODE-SOURCE connector id (registered by sorb-juice). @type {string} */
|
|
204
|
+
export const DEFAULT_CODE_SOURCE_ID = 'local'
|
|
205
|
+
|
|
206
|
+
/** Default TARGET adapter id (registered by sorb-leaf). @type {string} */
|
|
207
|
+
export const DEFAULT_TARGET_ID = 'react-bootstrap'
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* The runtime connector registry — id → impl per axis. The Maps are mutable by
|
|
211
|
+
* design so consumer packages register their defaults into them; the container
|
|
212
|
+
* itself is frozen so the axis set can't drift.
|
|
213
|
+
* @typedef {Object} ConnectorRegistry
|
|
214
|
+
* @property {Map<string, SourceConnector>} source
|
|
215
|
+
* @property {Map<string, CodeSourceConnector>} codeSource
|
|
216
|
+
* @property {Map<string, TargetAdapter>} target
|
|
217
|
+
* @type {ConnectorRegistry}
|
|
218
|
+
*/
|
|
219
|
+
export const connectors = Object.freeze({
|
|
220
|
+
source: new Map(),
|
|
221
|
+
codeSource: new Map(),
|
|
222
|
+
target: new Map(),
|
|
223
|
+
})
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Register a SOURCE connector by its `id`.
|
|
227
|
+
* @param {SourceConnector} conn
|
|
228
|
+
* @returns {SourceConnector} the registered connector.
|
|
229
|
+
*/
|
|
230
|
+
export function registerSource(conn) {
|
|
231
|
+
connectors.source.set(conn.id, conn)
|
|
232
|
+
return conn
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Register a CODE-SOURCE connector by its `id`.
|
|
237
|
+
* @param {CodeSourceConnector} conn
|
|
238
|
+
* @returns {CodeSourceConnector} the registered connector.
|
|
239
|
+
*/
|
|
240
|
+
export function registerCodeSource(conn) {
|
|
241
|
+
connectors.codeSource.set(conn.id, conn)
|
|
242
|
+
return conn
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Register a TARGET adapter by its `id`.
|
|
247
|
+
* @param {TargetAdapter} adapter
|
|
248
|
+
* @returns {TargetAdapter} the registered adapter.
|
|
249
|
+
*/
|
|
250
|
+
export function registerTarget(adapter) {
|
|
251
|
+
connectors.target.set(adapter.id, adapter)
|
|
252
|
+
return adapter
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Look up a registered SOURCE connector; throws on unknown id.
|
|
257
|
+
* @param {string} id
|
|
258
|
+
* @returns {SourceConnector}
|
|
259
|
+
*/
|
|
260
|
+
export function getSource(id) {
|
|
261
|
+
const conn = connectors.source.get(id)
|
|
262
|
+
if (!conn) throw new Error(`Unknown source connector: ${JSON.stringify(id)}`)
|
|
263
|
+
return conn
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Look up a registered CODE-SOURCE connector; throws on unknown id.
|
|
268
|
+
* @param {string} id
|
|
269
|
+
* @returns {CodeSourceConnector}
|
|
270
|
+
*/
|
|
271
|
+
export function getCodeSource(id) {
|
|
272
|
+
const conn = connectors.codeSource.get(id)
|
|
273
|
+
if (!conn) throw new Error(`Unknown codeSource connector: ${JSON.stringify(id)}`)
|
|
274
|
+
return conn
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Look up a registered TARGET adapter; throws on unknown id.
|
|
279
|
+
* @param {string} id
|
|
280
|
+
* @returns {TargetAdapter}
|
|
281
|
+
*/
|
|
282
|
+
export function getTarget(id) {
|
|
283
|
+
const adapter = connectors.target.get(id)
|
|
284
|
+
if (!adapter) throw new Error(`Unknown target adapter: ${JSON.stringify(id)}`)
|
|
285
|
+
return adapter
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Resolve the three connector ids from a config, falling back to the defaults
|
|
290
|
+
* when a key is absent (back-compat = today's behavior).
|
|
291
|
+
* @param {{ source?: string, codeSource?: string, target?: string }} [config]
|
|
292
|
+
* @returns {{ source: string, codeSource: string, target: string }}
|
|
293
|
+
*/
|
|
294
|
+
export function resolveConnectorIds(config = {}) {
|
|
295
|
+
return {
|
|
296
|
+
source: config.source || DEFAULT_SOURCE_ID,
|
|
297
|
+
codeSource: config.codeSource || DEFAULT_CODE_SOURCE_ID,
|
|
298
|
+
target: config.target || DEFAULT_TARGET_ID,
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
|
|
101
302
|
export {}
|