27

An Open Source UI Builder for React

 5 years ago
source link: https://www.tuicool.com/articles/hit/nmUfaaj
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Pagedraw

Pagedraw is a UI builder for React web apps. It works like a Sketch or Figma style design tool, but emits good quality JSX code. You can play with a demo on the web without installing at https://pagedraw.io/tutorials/basics . See https://pagedraw.io/ for more info.

You can download it at https://github.com/Pagedraw/pagedraw/releases/download/1.0/Pagedraw.zip .

Pagedraw is not currently under development. We do not recommend using it for production. Please fork and use it for something cool!

Usage

See the structure of https://github.com/pagedraw/sample-app

Put a main.pagedraw.json in the root of your repo. All files built by Pagedraw will be written into a /src/pagedraw/ folder. These are regular JSX/CSS files, so you can import them just like the rest of your code.

If you ever want to stop using Pagedraw, just delete the source *.pagedraw.json files. The generated files will still live in src/pagedraw , and you can treat them like any other code files.

The editor itself is straightforward if you've used a design tool like Sketch or Figma. Detailed documentation is available at https://documentation.pagedraw.io/the-editor/ .

When you open Pagedraw for the first time, it will ask you to open a .pagedraw.json file. If you'd like to create a new file, click cancel when it asks you to open a file, and it'll ask you where to create a new file.

Developing

Setting up the development environment

As a prerequisite, install

nvm
yarn
# clone the repo and install the project dependencies
git clone https://github.com/Pagedraw/pagedraw
cd pagedraw
yarn install
cd desktop-app/ && npm install && cd ..

Running Pagedraw in development

In the background, run

yarn devserver

then start Electron with

yarn run-electron

Config for development

The first time you run in development, in the Electron developer tools console, run __openConfigEditor() and set your local config to:

{
  "handleRawDocJson": true,
  "crashButton": true,
  "asserts": true
}

To get some debugging tools. In particular, make sure to turn asserts on.

Running tests

To run the standard tests, run all the servers needed for Pagedraw development, as described in the section above. While yarn devserver is running, run

yarn test

TODOs

  • Today all images brought into Pagedraw are stored as part of the Pagedraw doc as base64 encoded strings and they also get compiled to generated code as img tags with base 64 data src s. That bloats the Pagedraw docs and forces an unnecessary constraint on generated code. We should move to a world where that system is more flexible and generates code that require s images instead
  • Same thing for fonts. Today they're being stored directly in the Pagedraw doc as base64 strings and also injected into the compiled code as such
  • Make Sketch Importer into a Sketch to Pagedraw converter command instead of a server.
  • Compile-Check can work with local /compiler-blobs , and not depend on S3 to host them. Look in /compiler-blob-builder and /deploy-checks/fetch-other-compiler-build.js .

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK