pythactuary / dash-reactgrid

Dash wrapper around the ReactGrid library
MIT License
0 stars 0 forks source link

Dash ReactGrid

Dash ReactGrid is a Dash component library.

Get started with:

  1. Install Dash and its dependencies: https://dash.plotly.com/installation
  2. Run python usage.py
  3. Visit http://localhost:8050 in your web browser

Contributing

See CONTRIBUTING.md

Install dependencies

If you have selected install_dependencies during the prompt, you can skip this part.

  1. Install npm packages

    $ npm install
  2. Create a virtual env and activate.

    $ virtualenv venv
    $ . venv/bin/activate

    Note: venv\Scripts\activate for windows

  3. Install python packages required to build components.

    $ pip install -r requirements.txt
  4. Install the python packages for testing (optional)

    $ pip install -r tests/requirements.txt

Write your component code in src/lib/components/DashReactGrid.react.js.

Create a production build and publish:

  1. Build your code:

    $ npm run build
  2. Create a Python distribution

    $ python setup.py sdist bdist_wheel

    This will create source and wheel distribution in the generated the dist/ folder. See PyPA for more information.

  3. Test your tarball by copying it into a new environment and installing it locally:

    $ pip install dash_reactgrid-0.0.1.tar.gz
  4. If it works, then you can publish the component to NPM and PyPI:

    1. Publish on PyPI
      $ twine upload dist/*
    2. Cleanup the dist folder (optional)
      $ rm -rf dist
    3. Publish on NPM (Optional if chosen False in publish_on_npm)
      $ npm publish

      _Publishing your component to NPM will make the JavaScript bundles available on the unpkg CDN. By default, Dash serves the component library's CSS and JS locally, but if you choose to publish the package to NPM you can set serve_locally to False and you may see faster load times._

  5. Share your component with the community! https://community.plotly.com/c/dash

    1. Publish this repository to GitHub
    2. Tag your GitHub repository with the plotly-dash tag so that it appears here: https://github.com/topics/plotly-dash
    3. Create a post in the Dash community forum: https://community.plotly.com/c/dash