aperitif-editor
aperitif-editor copied to clipboard
🍸🍹 An editor for starting React apps and features based on API data
For example, a good standard handling of `edges` and `node` keys. I'm only presently familiarizing myself with GraphQL, but definitely want to support it.
When generating imports the path walker/resolver needs to cater for when the depth of the source file is e.g. deeper along the same tree as the current file, or vice...
Currently, props that are objects cannot be destructured in the list of component props. Desired e.g. the ability to interact with `user.profileImageUrl` without first creating a `` component intermediary. Perhaps...
Now that this has become a community project, tests are a requirement. At a minimum: - Drag relationships as per: http://react-dnd.github.io/react-dnd/docs-testing.html - Test the ORM through and through (see also:...
Currently there's no way to add text to component children. As an initial step in this direction I'm suggesting to be able to: ``` add text {param} next to params...
Whenever a component is given children anywhere in the application, need to ensure that the component definition has the child prop passed. Would also like to optimistically add {children} child...
Props coming from the actual data that are spread onto a created component can be numerous. Unlike props added by manually the user, we a) don't want to actually be...
If a prop is a boolean, suggest being able to drag it so that you can create conditional rendering of a portion of JSX. `awesomeProp` =>>> ``` {awesomeProp && (...
The created ORM is inspired by `redux-orm` but has a number of interesting differences: - out of the box support for create-react-app (which `redux-orm` lacked at the time). - bi-directional...
Many preferences are project independent, and should be saved in local-storage independently of the app state. Currently: - semis Soon: - open stackblitz embed by default - etc.