You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: web/docs/dev.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
layout: docs
2
+
layout: layouts/docs.tsx
3
3
---
4
4
# Developer Guide
5
5
@@ -38,6 +38,7 @@ The "document" for Treehouse is the Workspace, which is mostly a container for
38
38
39
39
Most importantly, nodes build a tree-like structure where each node can be extended with components. Components extend the state and functionality of a node. For example, a checkbox component can be added to a node. This gives it a state (checked or not) and allows the UI to render it differently (add a checkbox).
40
40
41
+
41
42
## User Actions
42
43
43
44
All user performable actions are modeled as commands and registered with a command system. Commands are functions with some extra metadata, like a user displayable name and system identifier. They can be called throughout the system by their system identifier, such as when a user clicks a something.
@@ -48,6 +49,7 @@ Commands can take arguments and usually take at least a single argument called a
48
49
49
50
In addition to menus, keyboard shortcuts, and UI event handlers, there is a command palette the user can trigger to show all commands that can be run in the current context.
50
51
52
+
51
53
## Workbench UI
52
54
53
55
### Components
@@ -64,6 +66,7 @@ Most components are explicitly passed a reference to the Workbench, which they c
64
66
65
67
Our design system is inspired by projects like [Pollen](https://www.pollen.style/), where instead of generating CSS classes from JavaScript like Tailwind (which requires a compile step and Node.js based tooling), we simply use and override CSS custom properties. This means they can be used in inline styles as well. We also have a subset of common Tailwind utility classes defined, though using the custom properties.
66
68
69
+
67
70
## Backend Adapters
68
71
69
72
Backend adapters are classes that implement the backend API for a given backend. If you wanted to make your own custom backend, you would implement your own backend adapter
0 commit comments