legacy-paperclip
legacy-paperclip copied to clipboard
Paperclip is a common language for designers and developers
This would enable non-engineers to edit PC code directly in the browser. Great precursor for standalone version. ### Considerations - Spinning up web view - syncing saved changes - no...
This can be reflected in the UI. For example: ```html I'm a button I'm a button I'm a button ``` Wiring this up _should_ be straightforward. The compiler should look...
In favor of HTML slots. Main reason for this is because of visual tooling. Considerations: - Conditional slots - Conditional elements For conditional elements, we can do this: ```html I'm...
If VSCode is running long enough, then the document becomes out of sync _on save_. I think what's happening is that WS is disconnecting, so the solution I think might...
#### Idea ```html {item} ``` Then FFI rendering function registered to the engine: ```javascript export const render = ({ each, as, children }) => { return each.map(v => children({ [as]:...
Goal for this ticket is to track functionality that gets PC closer to a visual editor where the engineer doesn't need to write source code directly. MVP (order of importance):...
Part of #839 Engine TODOs: - [ ] display slot placeholders for `{slot}` - [ ] for elements that are in slots, need to add info about that in sourceInfo...
https://github.com/paperclip-ui/paperclip/pull/1035#issuecomment-1013591008
Currently, the engine delegate is doing all of the work around collecting related information about PC content, including all imported style sheets (even of dependencies). This is expensive, not to...
https://code.visualstudio.com/api/extension-capabilities/extending-workbench - Ability to see all components - ability to see components by tag - ability to perhaps see properties of currently open PC file?