0.3.0 • Published 5 years ago

dash-responsive-grid-layout v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Dash Responsive Grid Layout

This repository contains the minimal set of code required to create your own custom Dash component.

  1. Install the dependencies:
npm install
  1. Open up the JavaScript demo environment:
npm run start
  1. Write your component code in src/lib/components. There is a sample component called ExampleComponent.react.js that you can use for inspiration. The demo app is in src/demo and you will import your example component code into your demo app.
  2. Test your code in a Python environment:
    1. Build your code
    npm run build:js-dev
    npm run build:py
    1. Run and modify the usage.py sample dash app:
    python usage.py
  3. Create a production build and publish:

    1. Build your code:
    npm run build:js
    npm run build:py
    1. Create a Python tarball
    python setup.py sdist

    This distribution tarball will get generated in the dist/ folder

    1. Test your tarball by copying it into a new environment and installing it locally:
    pip install dash_responsive_grid_layout-0.0.1.tar.gz
    1. If it works, then you can publish the component to NPM and PyPI:
    npm publish
    twine upload dist/dash_responsive_grid_layout-0.0.1.tar.gz

More details

  • Include CSS files in your distribution folder (dash_responsive_grid_layout) and reference them in MANIFEST.in
  • The tests folder contains a sample integration test. This will run a sample Dash app in a browser. Run this with:
    python -m tests.test_render
    The Dash team uses these types of integration tests extensively. Browse the Dash component code on GitHub for more examples of testing (e.g. https://github.com/plotly/dash-core-components)
  • Publishing your component to NPM will make the JavaScript bundles available on the unpkg CDN. By default, Dash servers the component library's CSS and JS from the remote unpkg CDN, so if you haven't published the component package to NPM you'll need to set the serve_locally flags to True. We will eventually make serve_locally=True the default, follow our progress in this issue.
  • Watch the component boilerplate repository to stay informed of changes to our components.

More Resources

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago

0.0.1

6 years ago