@formicoidea/labre-framework-wardley 0.23.0 → 0.23.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.
Files changed (61) hide show
  1. package/dist/consts.d.ts +72 -0
  2. package/{src/consts.ts → dist/consts.js} +63 -72
  3. package/dist/descriptor.d.ts +7 -0
  4. package/{src/descriptor.ts → dist/descriptor.js} +1 -1
  5. package/dist/effects.d.ts +10 -0
  6. package/dist/effects.js +7 -0
  7. package/dist/element-renderer.d.ts +15 -0
  8. package/dist/element-renderer.js +160 -0
  9. package/dist/element-view.d.ts +21 -0
  10. package/dist/element-view.js +122 -0
  11. package/dist/gradient.d.ts +18 -0
  12. package/dist/gradient.js +112 -0
  13. package/dist/index.d.ts +2 -0
  14. package/dist/index.js +2 -0
  15. package/dist/label-layout.d.ts +21 -0
  16. package/dist/label-layout.js +73 -0
  17. package/dist/legend.d.ts +12 -0
  18. package/dist/legend.js +333 -0
  19. package/dist/node/consts.d.ts +107 -0
  20. package/{src/node/consts.ts → dist/node/consts.js} +12 -20
  21. package/dist/node/label-editor.d.ts +28 -0
  22. package/dist/node/label-editor.js +216 -0
  23. package/dist/node/node-renderer.d.ts +17 -0
  24. package/dist/node/node-renderer.js +106 -0
  25. package/{src/node/node-view.ts → dist/node/node-view.d.ts} +3 -3
  26. package/dist/node/node-view.js +10 -0
  27. package/dist/templates/index.d.ts +3 -0
  28. package/dist/templates/index.js +172 -0
  29. package/dist/templates/maps.d.ts +3 -0
  30. package/dist/templates/maps.js +247 -0
  31. package/dist/toolbar/config.d.ts +75 -0
  32. package/dist/toolbar/config.js +206 -0
  33. package/dist/toolbar/icons.d.ts +31 -0
  34. package/{src/toolbar/icons.ts → dist/toolbar/icons.js} +51 -66
  35. package/dist/toolbar/node-config.d.ts +2 -0
  36. package/{src/toolbar/node-config.ts → dist/toolbar/node-config.js} +7 -14
  37. package/dist/toolbar/senior-tool.d.ts +2 -0
  38. package/{src/toolbar/senior-tool.ts → dist/toolbar/senior-tool.js} +5 -5
  39. package/dist/toolbar/wardley-menu.d.ts +53 -0
  40. package/dist/toolbar/wardley-menu.js +408 -0
  41. package/dist/toolbar/wardley-senior-button.d.ts +18 -0
  42. package/dist/toolbar/wardley-senior-button.js +146 -0
  43. package/dist/toolbar/wardley-tool-button.d.ts +10 -0
  44. package/dist/toolbar/wardley-tool-button.js +123 -0
  45. package/dist/view.d.ts +7 -0
  46. package/dist/view.js +36 -0
  47. package/package.json +15 -6
  48. package/src/effects.ts +0 -17
  49. package/src/element-renderer.ts +0 -242
  50. package/src/element-view.ts +0 -143
  51. package/src/gradient.ts +0 -137
  52. package/src/index.ts +0 -1
  53. package/src/label-layout.ts +0 -126
  54. package/src/legend.ts +0 -438
  55. package/src/node/node-renderer.ts +0 -142
  56. package/src/templates/index.ts +0 -236
  57. package/src/templates/maps.ts +0 -283
  58. package/src/toolbar/config.ts +0 -280
  59. package/src/toolbar/wardley-menu.ts +0 -552
  60. package/src/toolbar/wardley-senior-button.ts +0 -154
  61. package/src/view.ts +0 -39
@@ -1,280 +0,0 @@
1
- import { EdgelessCRUDIdentifier } from '@formicoidea/labre-core/blocks/surface';
2
- import { WardleyBackgroundElementModel } from '@formicoidea/labre-core/model';
3
- import {
4
- TelemetryProvider,
5
- type ToolbarContext,
6
- type ToolbarModuleConfig,
7
- ToolbarModuleExtension,
8
- } from '@formicoidea/labre-core/shared/services';
9
- import { BlockFlavourIdentifier } from '@formicoidea/labre-core/std';
10
- import { html, type TemplateResult } from 'lit';
11
-
12
- import { createWardleyLegend } from '../legend';
13
- import { wardleyLegendIcon } from './icons';
14
-
15
- const ResizeIcon = html`<svg
16
- width="24"
17
- height="24"
18
- viewBox="0 0 24 24"
19
- fill="none"
20
- stroke="currentColor"
21
- stroke-width="1.6"
22
- stroke-linecap="round"
23
- stroke-linejoin="round"
24
- >
25
- <path d="M9 5H5v4M15 19h4v-4" />
26
- <path d="M5 5l6 6M19 19l-6-6" />
27
- </svg>`;
28
-
29
- /** Gradient swatch — show/hide the variant gradient. */
30
- const GradientIcon = html`<svg
31
- width="24"
32
- height="24"
33
- viewBox="0 0 24 24"
34
- fill="none"
35
- xmlns="http://www.w3.org/2000/svg"
36
- >
37
- <defs>
38
- <linearGradient id="wardleyToolbarGrad" x1="0" y1="0" x2="1" y2="0">
39
- <stop offset="0" stop-color="currentColor" stop-opacity="0.85" />
40
- <stop offset="1" stop-color="currentColor" stop-opacity="0.1" />
41
- </linearGradient>
42
- </defs>
43
- <rect
44
- x="4"
45
- y="5"
46
- width="16"
47
- height="14"
48
- rx="2"
49
- fill="url(#wardleyToolbarGrad)"
50
- stroke="currentColor"
51
- stroke-width="1.4"
52
- />
53
- </svg>`;
54
-
55
- /** Horizontal axis with a right-pointing arrow (Evolution / X). */
56
- const XAxisIcon = html`<svg
57
- width="24"
58
- height="24"
59
- viewBox="0 0 24 24"
60
- fill="none"
61
- stroke="currentColor"
62
- stroke-width="1.6"
63
- stroke-linecap="round"
64
- stroke-linejoin="round"
65
- >
66
- <path d="M3 17h15" />
67
- <path d="M15 14l3 3-3 3" />
68
- </svg>`;
69
-
70
- /** Vertical axis with an up-pointing arrow (Value Chain / Y). */
71
- const YAxisIcon = html`<svg
72
- width="24"
73
- height="24"
74
- viewBox="0 0 24 24"
75
- fill="none"
76
- stroke="currentColor"
77
- stroke-width="1.6"
78
- stroke-linecap="round"
79
- stroke-linejoin="round"
80
- >
81
- <path d="M7 21V6" />
82
- <path d="M4 9l3-3 3 3" />
83
- </svg>`;
84
-
85
- /** Dashed vertical column dividers. */
86
- const ColumnsIcon = html`<svg
87
- width="24"
88
- height="24"
89
- viewBox="0 0 24 24"
90
- fill="none"
91
- stroke="currentColor"
92
- stroke-width="1.6"
93
- stroke-linecap="round"
94
- stroke-dasharray="3 3"
95
- >
96
- <path d="M9 4v16M15 4v16" />
97
- </svg>`;
98
-
99
- /** Column labels (short bars under the columns). */
100
- const ColumnLabelsIcon = html`<svg
101
- width="24"
102
- height="24"
103
- viewBox="0 0 24 24"
104
- fill="currentColor"
105
- stroke="none"
106
- >
107
- <rect x="3" y="15" width="4.5" height="3" rx="1" />
108
- <rect x="9.75" y="15" width="4.5" height="3" rx="1" />
109
- <rect x="16.5" y="15" width="4.5" height="3" rx="1" />
110
- </svg>`;
111
-
112
- /** Corner labels (Uncharted / Industrialized, top corners). */
113
- const CornerLabelsIcon = html`<svg
114
- width="24"
115
- height="24"
116
- viewBox="0 0 24 24"
117
- fill="currentColor"
118
- stroke="none"
119
- >
120
- <rect x="3" y="5" width="6" height="3" rx="1" />
121
- <rect x="15" y="5" width="6" height="3" rx="1" />
122
- </svg>`;
123
-
124
- /** Visibility labels (Visible / Invisible) — an eye. */
125
- const VisibilityIcon = html`<svg
126
- width="24"
127
- height="24"
128
- viewBox="0 0 24 24"
129
- fill="none"
130
- stroke="currentColor"
131
- stroke-width="1.6"
132
- stroke-linecap="round"
133
- stroke-linejoin="round"
134
- >
135
- <path d="M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12z" />
136
- <circle cx="12" cy="12" r="2.4" />
137
- </svg>`;
138
-
139
- type WardleyToggleProp =
140
- | 'resizeEnabled'
141
- | 'showGradient'
142
- | 'showXAxis'
143
- | 'showYAxis'
144
- | 'showColumnDividers'
145
- | 'showColumnLabels'
146
- | 'showCornerLabels'
147
- | 'showVisibilityLabels';
148
-
149
- /**
150
- * Build a toolbar toggle that flips a boolean flag on every selected Wardley
151
- * background: `active` reflects the current state, `run` flips it (with an
152
- * undo checkpoint). An optional `when` predicate hides the button.
153
- */
154
- function booleanToggle(
155
- id: string,
156
- tooltip: string,
157
- icon: TemplateResult,
158
- prop: WardleyToggleProp,
159
- when?: (ctx: ToolbarContext) => boolean
160
- ) {
161
- return {
162
- id,
163
- tooltip,
164
- icon,
165
- when: when ?? true,
166
- active(ctx: ToolbarContext) {
167
- const models = ctx.getSurfaceModelsByType(WardleyBackgroundElementModel);
168
- return models.length > 0 && models.every(model => model[prop]);
169
- },
170
- run(ctx: ToolbarContext) {
171
- const models = ctx.getSurfaceModelsByType(WardleyBackgroundElementModel);
172
- if (!models.length) return;
173
-
174
- const enable = !models.every(model => model[prop]);
175
- ctx.std.store.captureSync();
176
- const crud = ctx.std.get(EdgelessCRUDIdentifier);
177
- for (const model of models) {
178
- crud.updateElement(model.id, { [prop]: enable });
179
- }
180
- },
181
- };
182
- }
183
-
184
- export const wardleyToolbarConfig = {
185
- actions: [
186
- booleanToggle(
187
- 'a.toggle-resize',
188
- 'Enable / lock resizing',
189
- ResizeIcon,
190
- 'resizeEnabled'
191
- ),
192
- // Group 1 — evolution (X) side: axis, phase labels, columns, corner
193
- // labels, and the gradient toggle.
194
- {
195
- id: 'b.evolution',
196
- actions: [
197
- booleanToggle(
198
- 'b.1-axis-x',
199
- 'Evolution axis (X)',
200
- XAxisIcon,
201
- 'showXAxis'
202
- ),
203
- booleanToggle(
204
- 'b.2-column-labels',
205
- 'Evolution phase labels',
206
- ColumnLabelsIcon,
207
- 'showColumnLabels'
208
- ),
209
- booleanToggle(
210
- 'b.3-columns',
211
- 'Columns (dividers)',
212
- ColumnsIcon,
213
- 'showColumnDividers'
214
- ),
215
- booleanToggle(
216
- 'b.4-corner-labels',
217
- 'Labels Uncharted / Industrialized',
218
- CornerLabelsIcon,
219
- 'showCornerLabels'
220
- ),
221
- // Only relevant when the selection has a gradient variant.
222
- booleanToggle(
223
- 'b.5-gradient',
224
- 'Show / hide the gradient',
225
- GradientIcon,
226
- 'showGradient',
227
- ctx =>
228
- ctx
229
- .getSurfaceModelsByType(WardleyBackgroundElementModel)
230
- .some(model => model.variant !== 'classic')
231
- ),
232
- ],
233
- },
234
- // Group 2 — value-chain (Y) side: axis and Visible/Invisible labels.
235
- {
236
- id: 'c.value-chain',
237
- actions: [
238
- booleanToggle(
239
- 'c.1-axis-y',
240
- 'Value Chain axis (Y)',
241
- YAxisIcon,
242
- 'showYAxis'
243
- ),
244
- booleanToggle(
245
- 'c.2-visibility-labels',
246
- 'Labels Visible / Invisible',
247
- VisibilityIcon,
248
- 'showVisibilityLabels'
249
- ),
250
- ],
251
- },
252
- // Generate the auto-legend from the components present inside this
253
- // background's perimeter (+ a gradient-meaning block for gradient variants).
254
- {
255
- id: 'd.legend',
256
- tooltip: 'Generate the legend (components present)',
257
- icon: wardleyLegendIcon,
258
- run(ctx) {
259
- const models = ctx.getSurfaceModelsByType(WardleyBackgroundElementModel);
260
- const bg = models[0];
261
- if (!bg) return;
262
- createWardleyLegend(ctx.std, bg);
263
- ctx.std.getOptional(TelemetryProvider)?.track('FrameworkLegendCreated', {
264
- framework: 'wardley',
265
- element: 'legend',
266
- page: 'whiteboard editor',
267
- segment: 'element toolbar',
268
- module: 'wardley toolbar',
269
- });
270
- },
271
- },
272
- ],
273
- when: ctx =>
274
- ctx.getSurfaceModelsByType(WardleyBackgroundElementModel).length > 0,
275
- } as const satisfies ToolbarModuleConfig;
276
-
277
- export const wardleyToolbarExtension = ToolbarModuleExtension({
278
- id: BlockFlavourIdentifier('affine:surface:wardley'),
279
- config: wardleyToolbarConfig,
280
- });