• Stars
    star
    283
  • Rank 146,066 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A CLI tool to Migrate a Webflow project into a React app

Appfairy

appfairy

I'm just tired going through a design and translating it into React components. Appfairy is a CLI tool that does that for you - by running a single command the design will be transpiled into React components. As for now Appfairy works with Webflow only for web React apps, but the near future plans are to have that compatible with Sketch and React Native.

Methodology

Since machine generated assets aren't very easy to maintain due to their complexity, Appfairy takes on an old school approach where a single component is made out of a view and a controller. The view is automatically generated by Appfairy and shouldn't be changed, we treat it as a black box. The controller however is user defined. Every element within the controller is a proxy to an element within the view.

Here's an example of a possible controller:

import React from 'react'
import ConsultFormView from '../views/ConsultFormView'

class ConsultFormController extends React.Component {
  state = {}

  render() {
    return (
      <ConsultFormView>
        <name onChange={this.setName} />
        <phone onChange={this.setPhone} />
        <email onChange={this.setEmail} />
        <description onChange={this.setDescription} />
        <submit onClick={this.submit} />
      </ConsultFormView>
    )
  }

  setName = (e) => {
    this.setState({
      name: e.target.value
    })
  }
  setPhone = (e) => {
    this.setState({
      phone: e.target.value
    })
  }

  setEmail = (e) => {
    this.setState({
      email: e.target.value
    })
  }

  setDescription = (e) => {
    this.setState({
      description: e.target.value
    })
  }

  submit = () => {
    alert(`
      ${this.name}
      ${this.phone}
      ${this.email}
      ${this.description}
    `)
  }
}

export default ConsultFormController

This way the view can be changed without us worrying about re-binding the event listeners and props.

For an in-depth explanation regards Appfairy be sure to check-out the following:

  • Medium blog post - An introduction to Appfairy and the motives behind it.

  • YouTube video - I walk through Appfairy and an implementation of an example app.

  • Example app - An example for a simple app which uses Appfairy.

Docs

Appfairy is a CLI tool that can be installed using NPM:

$ npm install appfairy -g

After exporting your Webflow project into a zip file, simply unzip it into a directory called .appfairy in the root of your project and run $ appfairy. Be sure to stash all your git changes as beforehand as Appfairy uses git as a version control. After doing so you'll notice that a new git-commit has been created saying appfairy: Migrate. This commit include all the changes that Appfairy has made, and shouldn't be edited or reworded.

The commit consists of the following files (regardless if they were added, modified or deleted):

  • public/ (public assets which should be served by our app's server)

    • images/

    • fonts/

    • css/

  • src/

    • scripts/ (scripts that should be imported in index.js)

    • styles/ (css files that should be imported in index.js)

    • views/ (contains ConsultFormView - further explanation below)

The output can be controlled using a config file named af_config.js which should be located in the root of the project. The config file may (or may not) include some of the following options:

  • prefetch (boolean) - Prefetch the styles and scripts which are necessary for the design to work. If not specified, the scripts and styles will be fetched during runtime. An example app with prefetching enabled can be found here.

  • source (source) - Can either be set to webflow, sketch and represents the studio name that generated the basic CSS and HTML assets. If not set there will be little to no difference in the transpilation process but it will however make the CSS encapsulation more accurate. Examples for Webflow and Sketch apps can be found here.

  • input (string) - The input dir for the Webflow exported files. Defaults to .appfairy dir in the root of the project.

  • output (string/object) - If a string was provided, the output will be mapped to the specified dir. If an object, each key in the object will map its asset type to the specified dir in the value. The object has the following schema:

    • public (string) - Public dir. Defaults to public.

    • src (string/object) - Source dir. If a string is provided, all its content will be mapped to the specified dir, otherwise the mapping will be done according to the following object:

      • scripts (string) - Scripts dir. Defaults to src/scripts.

      • styles (string) - Scripts dir. Defaults to src/styles.

      • views (string) - Scripts dir. Defaults to src/views.

Alternatively, you may provide (extra) options through the command line like the following:

$ appfairy [...options]

The CLI tool supports the following options:

  • --prefetch

  • --source/--src

  • --input/--in

  • --output/--out

  • --config

The behavior of Appfairy will change according to the specified options as detailed above, and the rest is self explanatory.

LICENSE

MIT

More Repositories

1

babel-plugin-react-persist

Automatically useCallback() & useMemo(); memoize inline functions
JavaScript
111
star
2

ReactNativeMeteorBoilerplate

JavaScript
78
star
3

radial-snake

A tutorial for creating a Tron-style game
JavaScript
73
star
4

node-distance-addon

Native NodeJS add-on creation tutorial using C++
C++
69
star
5

jsx-runtime

JavaScript
38
star
6

angular-ecmascript

Build an AngularJS app using ES6's class system
JavaScript
28
star
7

graphql-tag-pluck

Pluck graphql-tag template literals
JavaScript
25
star
8

react-fs-tree

JavaScript
25
star
9

eventsheet-wasm

An extensible custom CSS engine that uses WASM
JavaScript
25
star
10

HotnCold

JavaScript
23
star
11

babel-plugin-scoped-styled-components

JavaScript
13
star
12

usertron

TypeScript
12
star
13

react-autorun

A macro that compiles into a dependencies array for hooks.
TypeScript
12
star
14

git-streamer

JavaScript
11
star
15

redis-node-server

TypeScript
10
star
16

HotnCold-server

JavaScript
10
star
17

react-layers-stack

Push and pop React view layers with transitions
JavaScript
7
star
18

cla6

ES6 style class system
JavaScript
5
star
19

babel-plugin-tester

JavaScript
5
star
20

react-bobcat

A library for testing navigation flows in React
JavaScript
4
star
21

parallax-chess

TypeScript
4
star
22

meteor-npm-ionic

Ionic scripts and assets packs
JavaScript
3
star
23

get-updates

A utility for getting mongo updates
JavaScript
2
star
24

02hero

A JavaScript Crash Course
2
star
25

cla6-hidden

Hidden plugin for Cla6.js
JavaScript
2
star
26

cla6-base

Base plugin for Cla6.js
JavaScript
1
star
27

angular-ionic

Ionic's ng-components pack
JavaScript
1
star
28

event-ops

Event Ops (Event Operations) is a library that provides very simple and minimalistic utils to create event-driven programs.
TypeScript
1
star
29

react-async-core-hooks

Async versions of core React hooks e.g. useAsyncEffect
JavaScript
1
star