@twick/2d 0.14.0 → 1.14.3

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 (186) hide show
  1. package/LICENSE +21 -21
  2. package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
  3. package/lib/components/Audio.d.ts.map +1 -1
  4. package/lib/components/Audio.js +33 -3
  5. package/lib/components/CodeBlock.d.ts +1 -1
  6. package/lib/components/Img.js +23 -23
  7. package/lib/components/Line.js +31 -31
  8. package/lib/components/Media.d.ts +6 -0
  9. package/lib/components/Media.d.ts.map +1 -1
  10. package/lib/components/Media.js +277 -61
  11. package/lib/components/Node.d.ts +1 -1
  12. package/lib/components/Path.d.ts +1 -1
  13. package/lib/components/SVG.d.ts +1 -1
  14. package/lib/components/Shape.d.ts +1 -1
  15. package/lib/components/Spline.js +25 -25
  16. package/lib/components/Video.d.ts +0 -1
  17. package/lib/components/Video.d.ts.map +1 -1
  18. package/lib/components/Video.js +70 -65
  19. package/lib/tsconfig.build.tsbuildinfo +1 -1
  20. package/package.json +4 -5
  21. package/src/editor/NodeInspectorConfig.tsx +76 -76
  22. package/src/editor/PreviewOverlayConfig.tsx +67 -67
  23. package/src/editor/Provider.tsx +93 -93
  24. package/src/editor/SceneGraphTabConfig.tsx +81 -81
  25. package/src/editor/icons/CircleIcon.tsx +7 -7
  26. package/src/editor/icons/CodeBlockIcon.tsx +8 -8
  27. package/src/editor/icons/CurveIcon.tsx +7 -7
  28. package/src/editor/icons/GridIcon.tsx +7 -7
  29. package/src/editor/icons/IconMap.ts +35 -35
  30. package/src/editor/icons/ImgIcon.tsx +8 -8
  31. package/src/editor/icons/LayoutIcon.tsx +9 -9
  32. package/src/editor/icons/LineIcon.tsx +7 -7
  33. package/src/editor/icons/NodeIcon.tsx +7 -7
  34. package/src/editor/icons/RayIcon.tsx +7 -7
  35. package/src/editor/icons/RectIcon.tsx +7 -7
  36. package/src/editor/icons/ShapeIcon.tsx +7 -7
  37. package/src/editor/icons/TxtIcon.tsx +8 -8
  38. package/src/editor/icons/VideoIcon.tsx +7 -7
  39. package/src/editor/icons/View2DIcon.tsx +10 -10
  40. package/src/editor/index.ts +17 -17
  41. package/src/editor/tree/DetachedRoot.tsx +23 -23
  42. package/src/editor/tree/NodeElement.tsx +74 -74
  43. package/src/editor/tree/TreeElement.tsx +72 -72
  44. package/src/editor/tree/TreeRoot.tsx +10 -10
  45. package/src/editor/tree/ViewRoot.tsx +20 -20
  46. package/src/editor/tree/index.module.scss +38 -38
  47. package/src/editor/tree/index.ts +3 -3
  48. package/src/editor/tsconfig.build.json +5 -5
  49. package/src/editor/tsconfig.json +12 -12
  50. package/src/editor/tsdoc.json +4 -4
  51. package/src/editor/vite-env.d.ts +1 -1
  52. package/src/lib/code/CodeCursor.ts +445 -445
  53. package/src/lib/code/CodeDiffer.ts +78 -78
  54. package/src/lib/code/CodeFragment.ts +97 -97
  55. package/src/lib/code/CodeHighlighter.ts +75 -75
  56. package/src/lib/code/CodeMetrics.ts +47 -47
  57. package/src/lib/code/CodeRange.test.ts +74 -74
  58. package/src/lib/code/CodeRange.ts +216 -216
  59. package/src/lib/code/CodeScope.ts +101 -101
  60. package/src/lib/code/CodeSelection.ts +24 -24
  61. package/src/lib/code/CodeSignal.ts +327 -327
  62. package/src/lib/code/CodeTokenizer.ts +54 -54
  63. package/src/lib/code/DefaultHighlightStyle.ts +98 -98
  64. package/src/lib/code/LezerHighlighter.ts +113 -113
  65. package/src/lib/code/diff.test.ts +311 -311
  66. package/src/lib/code/diff.ts +319 -319
  67. package/src/lib/code/extractRange.ts +126 -126
  68. package/src/lib/code/index.ts +13 -13
  69. package/src/lib/components/Audio.ts +168 -131
  70. package/src/lib/components/Bezier.ts +105 -105
  71. package/src/lib/components/Circle.ts +266 -266
  72. package/src/lib/components/Code.ts +526 -526
  73. package/src/lib/components/CodeBlock.ts +576 -576
  74. package/src/lib/components/CubicBezier.ts +112 -112
  75. package/src/lib/components/Curve.ts +455 -455
  76. package/src/lib/components/Grid.ts +135 -135
  77. package/src/lib/components/Icon.ts +96 -96
  78. package/src/lib/components/Img.ts +319 -319
  79. package/src/lib/components/Knot.ts +157 -157
  80. package/src/lib/components/Latex.ts +122 -122
  81. package/src/lib/components/Layout.ts +1092 -1092
  82. package/src/lib/components/Line.ts +429 -429
  83. package/src/lib/components/Media.ts +576 -346
  84. package/src/lib/components/Node.ts +1940 -1940
  85. package/src/lib/components/Path.ts +137 -137
  86. package/src/lib/components/Polygon.ts +171 -171
  87. package/src/lib/components/QuadBezier.ts +100 -100
  88. package/src/lib/components/Ray.ts +125 -125
  89. package/src/lib/components/Rect.ts +187 -187
  90. package/src/lib/components/Rive.ts +156 -156
  91. package/src/lib/components/SVG.ts +797 -797
  92. package/src/lib/components/Shape.ts +143 -143
  93. package/src/lib/components/Spline.ts +344 -344
  94. package/src/lib/components/Txt.test.tsx +81 -81
  95. package/src/lib/components/Txt.ts +203 -203
  96. package/src/lib/components/TxtLeaf.ts +205 -205
  97. package/src/lib/components/Video.ts +461 -462
  98. package/src/lib/components/View2D.ts +98 -98
  99. package/src/lib/components/__tests__/children.test.tsx +142 -142
  100. package/src/lib/components/__tests__/clone.test.tsx +126 -126
  101. package/src/lib/components/__tests__/generatorTest.ts +28 -28
  102. package/src/lib/components/__tests__/mockScene2D.ts +45 -45
  103. package/src/lib/components/__tests__/query.test.tsx +122 -122
  104. package/src/lib/components/__tests__/state.test.tsx +60 -60
  105. package/src/lib/components/index.ts +28 -28
  106. package/src/lib/components/types.ts +35 -35
  107. package/src/lib/curves/ArcSegment.ts +159 -159
  108. package/src/lib/curves/CircleSegment.ts +77 -77
  109. package/src/lib/curves/CubicBezierSegment.ts +78 -78
  110. package/src/lib/curves/CurveDrawingInfo.ts +11 -11
  111. package/src/lib/curves/CurvePoint.ts +15 -15
  112. package/src/lib/curves/CurveProfile.ts +7 -7
  113. package/src/lib/curves/KnotInfo.ts +10 -10
  114. package/src/lib/curves/LineSegment.ts +62 -62
  115. package/src/lib/curves/Polynomial.ts +355 -355
  116. package/src/lib/curves/Polynomial2D.ts +62 -62
  117. package/src/lib/curves/PolynomialSegment.ts +124 -124
  118. package/src/lib/curves/QuadBezierSegment.ts +64 -64
  119. package/src/lib/curves/Segment.ts +17 -17
  120. package/src/lib/curves/UniformPolynomialCurveSampler.ts +94 -94
  121. package/src/lib/curves/createCurveProfileLerp.ts +471 -471
  122. package/src/lib/curves/getBezierSplineProfile.ts +223 -223
  123. package/src/lib/curves/getCircleProfile.ts +86 -86
  124. package/src/lib/curves/getPathProfile.ts +178 -178
  125. package/src/lib/curves/getPointAtDistance.ts +21 -21
  126. package/src/lib/curves/getPolylineProfile.test.ts +21 -21
  127. package/src/lib/curves/getPolylineProfile.ts +89 -89
  128. package/src/lib/curves/getRectProfile.ts +139 -139
  129. package/src/lib/curves/index.ts +16 -16
  130. package/src/lib/decorators/canvasStyleSignal.ts +16 -16
  131. package/src/lib/decorators/colorSignal.ts +9 -9
  132. package/src/lib/decorators/compound.ts +72 -72
  133. package/src/lib/decorators/computed.ts +18 -18
  134. package/src/lib/decorators/defaultStyle.ts +18 -18
  135. package/src/lib/decorators/filtersSignal.ts +136 -136
  136. package/src/lib/decorators/index.ts +10 -10
  137. package/src/lib/decorators/initializers.ts +32 -32
  138. package/src/lib/decorators/nodeName.ts +13 -13
  139. package/src/lib/decorators/signal.test.ts +90 -90
  140. package/src/lib/decorators/signal.ts +345 -345
  141. package/src/lib/decorators/spacingSignal.ts +15 -15
  142. package/src/lib/decorators/vector2Signal.ts +30 -30
  143. package/src/lib/globals.d.ts +2 -2
  144. package/src/lib/index.ts +8 -8
  145. package/src/lib/jsx-dev-runtime.ts +2 -2
  146. package/src/lib/jsx-runtime.ts +46 -46
  147. package/src/lib/parse-svg-path.d.ts +14 -14
  148. package/src/lib/partials/Filter.ts +180 -180
  149. package/src/lib/partials/Gradient.ts +102 -102
  150. package/src/lib/partials/Pattern.ts +34 -34
  151. package/src/lib/partials/ShaderConfig.ts +117 -117
  152. package/src/lib/partials/index.ts +4 -4
  153. package/src/lib/partials/types.ts +58 -58
  154. package/src/lib/scenes/Scene2D.ts +242 -242
  155. package/src/lib/scenes/index.ts +3 -3
  156. package/src/lib/scenes/makeScene2D.ts +16 -16
  157. package/src/lib/scenes/useScene2D.ts +6 -6
  158. package/src/lib/tsconfig.build.json +5 -5
  159. package/src/lib/tsconfig.json +10 -10
  160. package/src/lib/tsdoc.json +4 -4
  161. package/src/lib/utils/CanvasUtils.ts +306 -306
  162. package/src/lib/utils/diff.test.ts +453 -453
  163. package/src/lib/utils/diff.ts +148 -148
  164. package/src/lib/utils/index.ts +2 -2
  165. package/src/lib/utils/is.ts +11 -11
  166. package/src/lib/utils/makeSignalExtensions.ts +30 -30
  167. package/src/lib/utils/video/declarations.d.ts +1 -1
  168. package/src/lib/utils/video/ffmpeg-client.ts +50 -50
  169. package/src/lib/utils/video/mp4-parser-manager.ts +72 -72
  170. package/src/lib/utils/video/parser/index.ts +1 -1
  171. package/src/lib/utils/video/parser/parser.ts +257 -257
  172. package/src/lib/utils/video/parser/sampler.ts +72 -72
  173. package/src/lib/utils/video/parser/segment.ts +302 -302
  174. package/src/lib/utils/video/parser/sink.ts +29 -29
  175. package/src/lib/utils/video/parser/utils.ts +31 -31
  176. package/src/tsconfig.base.json +19 -19
  177. package/src/tsconfig.build.json +8 -8
  178. package/src/tsconfig.json +5 -5
  179. package/tsconfig.project.json +7 -7
  180. package/lib/components/utils/waitUntil.d.ts +0 -7
  181. package/lib/components/utils/waitUntil.d.ts.map +0 -1
  182. package/lib/components/utils/waitUntil.js +0 -15
  183. package/lib/utils/waitUntil.d.ts +0 -7
  184. package/lib/utils/waitUntil.d.ts.map +0 -1
  185. package/lib/utils/waitUntil.js +0 -15
  186. package/src/lib/utils/waitUntil.ts +0 -18
@@ -1,7 +1,7 @@
1
- export function CurveIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M12.19,6.47L13.595,5.047C15.519,6.947 15.187,8.932 14.229,9.951C13.675,10.541 12.879,10.861 12.016,10.767C11.261,10.685 10.426,10.278 9.708,9.348C9.292,8.809 8.878,8.441 8.471,8.249C8.217,8.13 7.979,8.084 7.77,8.154C7.565,8.222 7.409,8.394 7.287,8.621C7.097,8.975 7.001,9.444 7,10.003C6.996,11.584 7.848,12.746 8.91,12.946C9.535,13.064 10.185,12.783 10.687,12.082L12.313,13.247C11,15.079 9.118,15.344 7.581,14.591C6.161,13.896 4.994,12.246 5,9.997C5.005,7.945 5.963,6.649 7.136,6.257C8.281,5.874 9.866,6.278 11.292,8.126C11.81,8.799 12.421,8.954 12.772,8.581C13.196,8.13 13.042,7.312 12.19,6.47Z" />
5
- </svg>
6
- );
7
- }
1
+ export function CurveIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M12.19,6.47L13.595,5.047C15.519,6.947 15.187,8.932 14.229,9.951C13.675,10.541 12.879,10.861 12.016,10.767C11.261,10.685 10.426,10.278 9.708,9.348C9.292,8.809 8.878,8.441 8.471,8.249C8.217,8.13 7.979,8.084 7.77,8.154C7.565,8.222 7.409,8.394 7.287,8.621C7.097,8.975 7.001,9.444 7,10.003C6.996,11.584 7.848,12.746 8.91,12.946C9.535,13.064 10.185,12.783 10.687,12.082L12.313,13.247C11,15.079 9.118,15.344 7.581,14.591C6.161,13.896 4.994,12.246 5,9.997C5.005,7.945 5.963,6.649 7.136,6.257C8.281,5.874 9.866,6.278 11.292,8.126C11.81,8.799 12.421,8.954 12.772,8.581C13.196,8.13 13.042,7.312 12.19,6.47Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,7 +1,7 @@
1
- export function GridIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M6,8L4,8L4,6L6,6L6,4L8,4L8,6L12,6L12,4L14,4L14,6L16,6L16,8L14,8L14,12L16,12L16,14L14,14L14,16L12,16L12,14L8,14L8,16L6,16L6,14L4,14L4,12L6,12L6,8ZM8,12L12,12L12,8L8,8L8,12Z" />
5
- </svg>
6
- );
7
- }
1
+ export function GridIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M6,8L4,8L4,6L6,6L6,4L8,4L8,6L12,6L12,4L14,4L14,6L16,6L16,8L14,8L14,12L16,12L16,14L14,14L14,16L12,16L12,14L8,14L8,16L6,16L6,14L4,14L4,12L6,12L6,8ZM8,12L12,12L12,8L8,8L8,12Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,35 +1,35 @@
1
- /* eslint-disable @typescript-eslint/naming-convention */
2
-
3
- import type {FunctionComponent} from 'preact';
4
- import {CircleIcon} from './CircleIcon';
5
- import {CodeBlockIcon} from './CodeBlockIcon';
6
- import {CurveIcon} from './CurveIcon';
7
- import {GridIcon} from './GridIcon';
8
- import {ImgIcon} from './ImgIcon';
9
- import {LayoutIcon} from './LayoutIcon';
10
- import {LineIcon} from './LineIcon';
11
- import {NodeIcon} from './NodeIcon';
12
- import {RayIcon} from './RayIcon';
13
- import {RectIcon} from './RectIcon';
14
- import {ShapeIcon} from './ShapeIcon';
15
- import {TxtIcon} from './TxtIcon';
16
- import {VideoIcon} from './VideoIcon';
17
- import {View2DIcon} from './View2DIcon';
18
-
19
- export const IconMap: Record<string, FunctionComponent> = {
20
- Circle: CircleIcon,
21
- CodeBlock: CodeBlockIcon,
22
- Curve: CurveIcon,
23
- Grid: GridIcon,
24
- Img: ImgIcon,
25
- Layout: LayoutIcon,
26
- Line: LineIcon,
27
- Node: NodeIcon,
28
- Ray: RayIcon,
29
- Rect: RectIcon,
30
- Shape: ShapeIcon,
31
- Txt: TxtIcon,
32
- TxtLeaf: TxtIcon,
33
- Video: VideoIcon,
34
- View2D: View2DIcon,
35
- };
1
+ /* eslint-disable @typescript-eslint/naming-convention */
2
+
3
+ import type {FunctionComponent} from 'preact';
4
+ import {CircleIcon} from './CircleIcon';
5
+ import {CodeBlockIcon} from './CodeBlockIcon';
6
+ import {CurveIcon} from './CurveIcon';
7
+ import {GridIcon} from './GridIcon';
8
+ import {ImgIcon} from './ImgIcon';
9
+ import {LayoutIcon} from './LayoutIcon';
10
+ import {LineIcon} from './LineIcon';
11
+ import {NodeIcon} from './NodeIcon';
12
+ import {RayIcon} from './RayIcon';
13
+ import {RectIcon} from './RectIcon';
14
+ import {ShapeIcon} from './ShapeIcon';
15
+ import {TxtIcon} from './TxtIcon';
16
+ import {VideoIcon} from './VideoIcon';
17
+ import {View2DIcon} from './View2DIcon';
18
+
19
+ export const IconMap: Record<string, FunctionComponent> = {
20
+ Circle: CircleIcon,
21
+ CodeBlock: CodeBlockIcon,
22
+ Curve: CurveIcon,
23
+ Grid: GridIcon,
24
+ Img: ImgIcon,
25
+ Layout: LayoutIcon,
26
+ Line: LineIcon,
27
+ Node: NodeIcon,
28
+ Ray: RayIcon,
29
+ Rect: RectIcon,
30
+ Shape: ShapeIcon,
31
+ Txt: TxtIcon,
32
+ TxtLeaf: TxtIcon,
33
+ Video: VideoIcon,
34
+ View2D: View2DIcon,
35
+ };
@@ -1,8 +1,8 @@
1
- export function ImgIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M5,15L15,15L15,10L13,8L8,13L5,10L5,15Z" />
5
- <circle cx="8" cy="7" r="2" />
6
- </svg>
7
- );
8
- }
1
+ export function ImgIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M5,15L15,15L15,10L13,8L8,13L5,10L5,15Z" />
5
+ <circle cx="8" cy="7" r="2" />
6
+ </svg>
7
+ );
8
+ }
@@ -1,9 +1,9 @@
1
- export function LayoutIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M14,5C14.552,5 15,5.448 15,6C15,7.916 15,12.084 15,14C15,14.552 14.552,15 14,15C12.815,15 11,15 11,15L11,5L14,5Z" />
5
- <path d="M9,5L9,9L5,9L5,6C5,5.448 5.448,5 6,5L9,5Z" />
6
- <path d="M9,11L9,15L6,15C5.448,15 5,14.552 5,14L5,11L9,11Z" />
7
- </svg>
8
- );
9
- }
1
+ export function LayoutIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M14,5C14.552,5 15,5.448 15,6C15,7.916 15,12.084 15,14C15,14.552 14.552,15 14,15C12.815,15 11,15 11,15L11,5L14,5Z" />
5
+ <path d="M9,5L9,9L5,9L5,6C5,5.448 5.448,5 6,5L9,5Z" />
6
+ <path d="M9,11L9,15L6,15C5.448,15 5,14.552 5,14L5,11L9,11Z" />
7
+ </svg>
8
+ );
9
+ }
@@ -1,7 +1,7 @@
1
- export function LineIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M9.906,4.589L11.411,5.906L8.529,9.2L13.859,8.439C14.273,8.379 14.68,8.584 14.879,8.952C15.078,9.319 15.028,9.772 14.753,10.087L10.094,15.411L8.589,14.094L11.471,10.8L6.141,11.561C5.727,11.621 5.32,11.416 5.121,11.048C4.922,10.681 4.972,10.228 5.247,9.913L9.906,4.589Z" />
5
- </svg>
6
- );
7
- }
1
+ export function LineIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M9.906,4.589L11.411,5.906L8.529,9.2L13.859,8.439C14.273,8.379 14.68,8.584 14.879,8.952C15.078,9.319 15.028,9.772 14.753,10.087L10.094,15.411L8.589,14.094L11.471,10.8L6.141,11.561C5.727,11.621 5.32,11.416 5.121,11.048C4.922,10.681 4.972,10.228 5.247,9.913L9.906,4.589Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,7 +1,7 @@
1
- export function NodeIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M7,9L5,9L5,7L7,7L7,5L9,5L9,7L12,7L12,5L15,8L12,11L12,9L9,9L9,12L11,12L8,15L5,12L7,12L7,9Z" />
5
- </svg>
6
- );
7
- }
1
+ export function NodeIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M7,9L5,9L5,7L7,7L7,5L9,5L9,7L12,7L12,5L15,8L12,11L12,9L9,9L9,12L11,12L8,15L5,12L7,12L7,9Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,7 +1,7 @@
1
- export function RayIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M12,9.414L6.707,14.707L5.293,13.293L10.586,8L8,8L8,6L13,6C13.552,6 14,6.448 14,7L14,12L12,12L12,9.414Z" />
5
- </svg>
6
- );
7
- }
1
+ export function RayIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M12,9.414L6.707,14.707L5.293,13.293L10.586,8L8,8L8,6L13,6C13.552,6 14,6.448 14,7L14,12L12,12L12,9.414Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,7 +1,7 @@
1
- export function RectIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M15,6L15,14C15,14.552 14.552,15 14,15L6,15C5.448,15 5,14.552 5,14L5,6C5,5.448 5.448,5 6,5L14,5C14.552,5 15,5.448 15,6ZM13,7L7,7L7,13L13,13L13,7Z" />
5
- </svg>
6
- );
7
- }
1
+ export function RectIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M15,6L15,14C15,14.552 14.552,15 14,15L6,15C5.448,15 5,14.552 5,14L5,6C5,5.448 5.448,5 6,5L14,5C14.552,5 15,5.448 15,6ZM13,7L7,7L7,13L13,13L13,7Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,7 +1,7 @@
1
- export function ShapeIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M11.746,10.93C12.637,12.664 11.973,14.504 10.611,15.244C9.692,15.743 8.385,15.804 6.94,14.829C5.555,13.893 4.689,12.16 4.544,10.388C4.395,8.572 5,6.752 6.399,5.701C8.069,4.445 10.793,4.271 12.765,4.921C14.324,5.436 15.374,6.473 15.495,7.691C15.651,9.262 14.613,10.061 13.26,10.5C12.847,10.634 12.41,10.735 12.02,10.841C11.936,10.864 11.838,10.897 11.746,10.93ZM7.601,7.299C6.737,7.949 6.445,9.103 6.537,10.224C6.633,11.389 7.149,12.556 8.06,13.171C8.696,13.601 9.251,13.706 9.656,13.486C10.207,13.187 10.315,12.395 9.886,11.701C9.48,11.044 9.513,10.523 9.68,10.122C9.835,9.75 10.164,9.417 10.678,9.187C11.243,8.935 12.157,8.8 12.908,8.503C13.216,8.381 13.542,8.264 13.505,7.888C13.485,7.691 13.359,7.53 13.197,7.384C12.928,7.143 12.558,6.959 12.138,6.821C10.736,6.358 8.789,6.406 7.601,7.299Z" />
5
- </svg>
6
- );
7
- }
1
+ export function ShapeIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M11.746,10.93C12.637,12.664 11.973,14.504 10.611,15.244C9.692,15.743 8.385,15.804 6.94,14.829C5.555,13.893 4.689,12.16 4.544,10.388C4.395,8.572 5,6.752 6.399,5.701C8.069,4.445 10.793,4.271 12.765,4.921C14.324,5.436 15.374,6.473 15.495,7.691C15.651,9.262 14.613,10.061 13.26,10.5C12.847,10.634 12.41,10.735 12.02,10.841C11.936,10.864 11.838,10.897 11.746,10.93ZM7.601,7.299C6.737,7.949 6.445,9.103 6.537,10.224C6.633,11.389 7.149,12.556 8.06,13.171C8.696,13.601 9.251,13.706 9.656,13.486C10.207,13.187 10.315,12.395 9.886,11.701C9.48,11.044 9.513,10.523 9.68,10.122C9.835,9.75 10.164,9.417 10.678,9.187C11.243,8.935 12.157,8.8 12.908,8.503C13.216,8.381 13.542,8.264 13.505,7.888C13.485,7.691 13.359,7.53 13.197,7.384C12.928,7.143 12.558,6.959 12.138,6.821C10.736,6.358 8.789,6.406 7.601,7.299Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,8 +1,8 @@
1
- export function TxtIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M9,13L9,6L11,6L11,13L12,13L12,15L8,15L8,13L9,13Z" />
5
- <path d="M7,8L5,8L5,6C5,5.448 5.448,5 6,5L14,5C14.552,5 15,5.448 15,6L15,8L13,8L13,7L7,7L7,8Z" />
6
- </svg>
7
- );
8
- }
1
+ export function TxtIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M9,13L9,6L11,6L11,13L12,13L12,15L8,15L8,13L9,13Z" />
5
+ <path d="M7,8L5,8L5,6C5,5.448 5.448,5 6,5L14,5C14.552,5 15,5.448 15,6L15,8L13,8L13,7L7,7L7,8Z" />
6
+ </svg>
7
+ );
8
+ }
@@ -1,7 +1,7 @@
1
- export function VideoIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M14,10.866L7.25,14.763C6.941,14.942 6.559,14.942 6.25,14.763C5.941,14.585 5.75,14.254 5.75,13.897L5.75,6.103C5.75,5.746 5.941,5.415 6.25,5.237C6.559,5.058 6.941,5.058 7.25,5.237L14,9.134C14.309,9.313 14.5,9.643 14.5,10C14.5,10.357 14.309,10.687 14,10.866ZM11.5,10L7.75,7.835L7.75,12.165L11.5,10Z" />
5
- </svg>
6
- );
7
- }
1
+ export function VideoIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M14,10.866L7.25,14.763C6.941,14.942 6.559,14.942 6.25,14.763C5.941,14.585 5.75,14.254 5.75,13.897L5.75,6.103C5.75,5.746 5.941,5.415 6.25,5.237C6.559,5.058 6.941,5.058 7.25,5.237L14,9.134C14.309,9.313 14.5,9.643 14.5,10C14.5,10.357 14.309,10.687 14,10.866ZM11.5,10L7.75,7.835L7.75,12.165L11.5,10Z" />
5
+ </svg>
6
+ );
7
+ }
@@ -1,10 +1,10 @@
1
- export function View2DIcon() {
2
- return (
3
- <svg viewBox="0 0 20 20" fill="currentColor">
4
- <path d="M9,5L9,7L7,7L7,9L5,9L5,6C5,5.448 5.448,5 6,5L9,5Z" />
5
- <path d="M5,11L7,11L7,13L9,13L9,15L6,15C5.448,15 5,14.552 5,14L5,11Z" />
6
- <path d="M11,15L11,13L13,13L13,11L15,11L15,14C15,14.552 14.552,15 14,15L11,15Z" />
7
- <path d="M15,9L13,9L13,7L11,7L11,5L14,5C14.552,5 15,5.448 15,6L15,9Z" />
8
- </svg>
9
- );
10
- }
1
+ export function View2DIcon() {
2
+ return (
3
+ <svg viewBox="0 0 20 20" fill="currentColor">
4
+ <path d="M9,5L9,7L7,7L7,9L5,9L5,6C5,5.448 5.448,5 6,5L9,5Z" />
5
+ <path d="M5,11L7,11L7,13L9,13L9,15L6,15C5.448,15 5,14.552 5,14L5,11Z" />
6
+ <path d="M11,15L11,13L13,13L13,11L15,11L15,14C15,14.552 14.552,15 14,15L11,15Z" />
7
+ <path d="M15,9L13,9L13,7L11,7L11,5L14,5C14.552,5 15,5.448 15,6L15,9Z" />
8
+ </svg>
9
+ );
10
+ }
@@ -1,17 +1,17 @@
1
- import './index.css';
2
-
3
- import {makeEditorPlugin} from '@twick/ui';
4
- import {NodeInspectorConfig} from './NodeInspectorConfig';
5
- import {PreviewOverlayConfig} from './PreviewOverlayConfig';
6
- import {Provider} from './Provider';
7
- import {SceneGraphTabConfig} from './SceneGraphTabConfig';
8
-
9
- export default makeEditorPlugin(() => {
10
- return {
11
- name: '@twick/2d',
12
- provider: Provider,
13
- previewOverlay: PreviewOverlayConfig,
14
- tabs: [SceneGraphTabConfig],
15
- inspectors: [NodeInspectorConfig],
16
- };
17
- });
1
+ import './index.css';
2
+
3
+ import {makeEditorPlugin} from '@twick/ui';
4
+ import {NodeInspectorConfig} from './NodeInspectorConfig';
5
+ import {PreviewOverlayConfig} from './PreviewOverlayConfig';
6
+ import {Provider} from './Provider';
7
+ import {SceneGraphTabConfig} from './SceneGraphTabConfig';
8
+
9
+ export default makeEditorPlugin(() => {
10
+ return {
11
+ name: '@twick/2d',
12
+ provider: Provider,
13
+ previewOverlay: PreviewOverlayConfig,
14
+ tabs: [SceneGraphTabConfig],
15
+ inspectors: [NodeInspectorConfig],
16
+ };
17
+ });
@@ -1,23 +1,23 @@
1
- import {useSignal} from '@preact/signals';
2
- import {usePluginState} from '../Provider';
3
- import {NodeElement} from './NodeElement';
4
- import {TreeElement} from './TreeElement';
5
- import {TreeRoot} from './TreeRoot';
6
-
7
- export function DetachedRoot() {
8
- const {afterRender, scene} = usePluginState();
9
- const open = useSignal(false);
10
- const currentScene = scene.value;
11
- const children = currentScene ? [...currentScene.getDetachedNodes()] : [];
12
- afterRender.value;
13
-
14
- return children.length > 0 ? (
15
- <TreeRoot>
16
- <TreeElement open={open} label="Detached nodes">
17
- {children.map(child => (
18
- <NodeElement node={child} depth={1} />
19
- ))}
20
- </TreeElement>
21
- </TreeRoot>
22
- ) : null;
23
- }
1
+ import {useSignal} from '@preact/signals';
2
+ import {usePluginState} from '../Provider';
3
+ import {NodeElement} from './NodeElement';
4
+ import {TreeElement} from './TreeElement';
5
+ import {TreeRoot} from './TreeRoot';
6
+
7
+ export function DetachedRoot() {
8
+ const {afterRender, scene} = usePluginState();
9
+ const open = useSignal(false);
10
+ const currentScene = scene.value;
11
+ const children = currentScene ? [...currentScene.getDetachedNodes()] : [];
12
+ afterRender.value;
13
+
14
+ return children.length > 0 ? (
15
+ <TreeRoot>
16
+ <TreeElement open={open} label="Detached nodes">
17
+ {children.map(child => (
18
+ <NodeElement node={child} depth={1} />
19
+ ))}
20
+ </TreeElement>
21
+ </TreeRoot>
22
+ ) : null;
23
+ }
@@ -1,74 +1,74 @@
1
- import {useComputed, useSignal, useSignalEffect} from '@preact/signals';
2
- import type {Node} from '@twick/2d';
3
- import {NODE_NAME} from '@twick/2d';
4
- import {useRef} from 'preact/hooks';
5
- import {usePluginState} from '../Provider';
6
- import {IconMap} from '../icons/IconMap';
7
- import {TreeElement} from './TreeElement';
8
-
9
- interface NodeElementProps {
10
- node: Node;
11
- depth?: number;
12
- }
13
-
14
- export function NodeElement({node, depth = 0}: NodeElementProps) {
15
- const {selectedKey, hoveredKey, openNodes, selectedChain, afterRender} =
16
- usePluginState();
17
- const ref = useRef<HTMLDivElement>(null);
18
- const open = useSignal(
19
- selectedChain.peek().has(node.key) || (openNodes.get(node.key) ?? false),
20
- );
21
- const nodeSignal = useSignal(node);
22
- nodeSignal.value = node;
23
-
24
- const children = useComputed(() => {
25
- afterRender.value;
26
- return nodeSignal.value.peekChildren();
27
- });
28
-
29
- useSignalEffect(() => {
30
- open.value = openNodes.get(nodeSignal.value.key) ?? false;
31
- });
32
-
33
- useSignalEffect(() => {
34
- const chain = selectedChain.value;
35
- if (chain.has(nodeSignal.value.key)) {
36
- open.value = true;
37
- }
38
- });
39
-
40
- useSignalEffect(() => {
41
- openNodes.set(nodeSignal.value.key, open.value);
42
- });
43
-
44
- useSignalEffect(() => {
45
- const key = selectedKey.value;
46
- if (node.key === key) {
47
- ref.current?.scrollIntoView({block: 'nearest', behavior: 'instant'});
48
- }
49
- });
50
-
51
- const Icon = IconMap[node[NODE_NAME]] ?? IconMap.Node;
52
-
53
- return (
54
- <TreeElement
55
- forwardRef={ref}
56
- open={open}
57
- depth={depth}
58
- icon={<Icon />}
59
- label={node.key}
60
- selected={selectedKey.value === node.key}
61
- onClick={event => {
62
- selectedKey.value = node.key;
63
- event.stopPropagation();
64
- }}
65
- onPointerEnter={() => (hoveredKey.value = node.key)}
66
- onPointerLeave={() => (hoveredKey.value = null)}
67
- >
68
- {children.value.length > 0 &&
69
- children.value.map(child => (
70
- <NodeElement node={child} depth={depth + 1} />
71
- ))}
72
- </TreeElement>
73
- );
74
- }
1
+ import {useComputed, useSignal, useSignalEffect} from '@preact/signals';
2
+ import type {Node} from '@twick/2d';
3
+ import {NODE_NAME} from '@twick/2d';
4
+ import {useRef} from 'preact/hooks';
5
+ import {usePluginState} from '../Provider';
6
+ import {IconMap} from '../icons/IconMap';
7
+ import {TreeElement} from './TreeElement';
8
+
9
+ interface NodeElementProps {
10
+ node: Node;
11
+ depth?: number;
12
+ }
13
+
14
+ export function NodeElement({node, depth = 0}: NodeElementProps) {
15
+ const {selectedKey, hoveredKey, openNodes, selectedChain, afterRender} =
16
+ usePluginState();
17
+ const ref = useRef<HTMLDivElement>(null);
18
+ const open = useSignal(
19
+ selectedChain.peek().has(node.key) || (openNodes.get(node.key) ?? false),
20
+ );
21
+ const nodeSignal = useSignal(node);
22
+ nodeSignal.value = node;
23
+
24
+ const children = useComputed(() => {
25
+ afterRender.value;
26
+ return nodeSignal.value.peekChildren();
27
+ });
28
+
29
+ useSignalEffect(() => {
30
+ open.value = openNodes.get(nodeSignal.value.key) ?? false;
31
+ });
32
+
33
+ useSignalEffect(() => {
34
+ const chain = selectedChain.value;
35
+ if (chain.has(nodeSignal.value.key)) {
36
+ open.value = true;
37
+ }
38
+ });
39
+
40
+ useSignalEffect(() => {
41
+ openNodes.set(nodeSignal.value.key, open.value);
42
+ });
43
+
44
+ useSignalEffect(() => {
45
+ const key = selectedKey.value;
46
+ if (node.key === key) {
47
+ ref.current?.scrollIntoView({block: 'nearest', behavior: 'instant'});
48
+ }
49
+ });
50
+
51
+ const Icon = IconMap[node[NODE_NAME]] ?? IconMap.Node;
52
+
53
+ return (
54
+ <TreeElement
55
+ forwardRef={ref}
56
+ open={open}
57
+ depth={depth}
58
+ icon={<Icon />}
59
+ label={node.key}
60
+ selected={selectedKey.value === node.key}
61
+ onClick={event => {
62
+ selectedKey.value = node.key;
63
+ event.stopPropagation();
64
+ }}
65
+ onPointerEnter={() => (hoveredKey.value = node.key)}
66
+ onPointerLeave={() => (hoveredKey.value = null)}
67
+ >
68
+ {children.value.length > 0 &&
69
+ children.value.map(child => (
70
+ <NodeElement node={child} depth={depth + 1} />
71
+ ))}
72
+ </TreeElement>
73
+ );
74
+ }
@@ -1,72 +1,72 @@
1
- import type {Signal} from '@preact/signals';
2
- import {Collapse, Toggle} from '@twick/ui';
3
- import {clsx} from 'clsx';
4
- import type {ComponentChildren, JSX} from 'preact';
5
- import type {Ref} from 'preact/hooks';
6
- import styles from './index.module.scss';
7
-
8
- const DEPTH_VAR = '--depth';
9
-
10
- interface TreeElementProps
11
- extends Omit<JSX.HTMLAttributes<HTMLDivElement>, 'label' | 'icon'> {
12
- icon?: ComponentChildren;
13
- label: ComponentChildren;
14
- children?: ComponentChildren;
15
- selected?: boolean;
16
- open: Signal<boolean>;
17
- depth?: number;
18
- forwardRef?: Ref<HTMLDivElement>;
19
- }
20
-
21
- export function TreeElement({
22
- label,
23
- children,
24
- selected,
25
- depth = 0,
26
- open,
27
- icon,
28
- forwardRef,
29
- ...props
30
- }: TreeElementProps) {
31
- const hasChildren = !!children;
32
-
33
- return (
34
- <>
35
- <div
36
- ref={forwardRef}
37
- className={clsx(
38
- styles.label,
39
- selected && styles.active,
40
- hasChildren && styles.parent,
41
- )}
42
- onDblClick={() => {
43
- if (hasChildren) {
44
- open.value = !open.value;
45
- }
46
- }}
47
- {...props}
48
- style={{[DEPTH_VAR]: `${depth}`}}
49
- >
50
- {hasChildren && (
51
- <Toggle
52
- animated={false}
53
- open={open.value}
54
- onToggle={value => {
55
- open.value = value;
56
- }}
57
- onDblClick={e => {
58
- e.stopPropagation();
59
- }}
60
- />
61
- )}
62
- {icon}
63
- {label}
64
- </div>
65
- {hasChildren && (
66
- <Collapse open={open.value} animated={false}>
67
- {children}
68
- </Collapse>
69
- )}
70
- </>
71
- );
72
- }
1
+ import type {Signal} from '@preact/signals';
2
+ import {Collapse, Toggle} from '@twick/ui';
3
+ import {clsx} from 'clsx';
4
+ import type {ComponentChildren, JSX} from 'preact';
5
+ import type {Ref} from 'preact/hooks';
6
+ import styles from './index.module.scss';
7
+
8
+ const DEPTH_VAR = '--depth';
9
+
10
+ interface TreeElementProps
11
+ extends Omit<JSX.HTMLAttributes<HTMLDivElement>, 'label' | 'icon'> {
12
+ icon?: ComponentChildren;
13
+ label: ComponentChildren;
14
+ children?: ComponentChildren;
15
+ selected?: boolean;
16
+ open: Signal<boolean>;
17
+ depth?: number;
18
+ forwardRef?: Ref<HTMLDivElement>;
19
+ }
20
+
21
+ export function TreeElement({
22
+ label,
23
+ children,
24
+ selected,
25
+ depth = 0,
26
+ open,
27
+ icon,
28
+ forwardRef,
29
+ ...props
30
+ }: TreeElementProps) {
31
+ const hasChildren = !!children;
32
+
33
+ return (
34
+ <>
35
+ <div
36
+ ref={forwardRef}
37
+ className={clsx(
38
+ styles.label,
39
+ selected && styles.active,
40
+ hasChildren && styles.parent,
41
+ )}
42
+ onDblClick={() => {
43
+ if (hasChildren) {
44
+ open.value = !open.value;
45
+ }
46
+ }}
47
+ {...props}
48
+ style={{[DEPTH_VAR]: `${depth}`}}
49
+ >
50
+ {hasChildren && (
51
+ <Toggle
52
+ animated={false}
53
+ open={open.value}
54
+ onToggle={value => {
55
+ open.value = value;
56
+ }}
57
+ onDblClick={e => {
58
+ e.stopPropagation();
59
+ }}
60
+ />
61
+ )}
62
+ {icon}
63
+ {label}
64
+ </div>
65
+ {hasChildren && (
66
+ <Collapse open={open.value} animated={false}>
67
+ {children}
68
+ </Collapse>
69
+ )}
70
+ </>
71
+ );
72
+ }