Skip to content
Snippets Groups Projects
readme.md 2.47 KiB
Newer Older
  • Learn to ignore specific revisions
  • Markus Kaarto's avatar
    Markus Kaarto committed
    # HUDS developer guide, basic workflow
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    ## Stencil
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    1. Have discussions with designers, agree on basic functionality
    2. run `yarn generate` and start development
    3. Extract useful helper components, such as `<hy-row> <hy-column>`
    4. Review the design with designer and PO or a colleague
    5. Check with basic accessibility tools (TBD which tools?!?)
    6. Write component documentation. At least it should
       1. Have a short introduction
       2. List all states the component can be in.
       3. List all variants the component can have
       4. Include code examples
    7. Write unit tests where applicable, if you prefer to write tests before developing the component, that's even better.
    8. Make a merge request -> pass the code review -> celebrate!
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    ## Vuepress
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    1. Run `yarn install <gitlab repo address>`
    2. Add necessary pages inside `.vuepress/config.js`
    3. Manually add the Markdown documentation from the repository
    4. Check that all accessibility checks pass once again
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    ## Combined workflow
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    In case you want to develop and see the component inside documentation right away, you can adapt the following workflow.
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    Inside the library Make a dynamic link of the library project:
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    `yarn link`
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    Inside the Vuepress project
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    `yarn link <library project name>`
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    The you need to start both development environments:
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    Vuepress directory: `yarn docs:dev`
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    Library directory: `yarn build.watch --target <VUEPRESS FOLDER>`
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    The second script starts both the stencil watcher in production mode, which builds the actual library on every change. It also concurrently runs a custom watcher script copying markdown files to Vuepress directory.
    
    Markus Kaarto's avatar
    Markus Kaarto committed
    NOTE: Even when you have the documentation files in Vuepress, you'll need to manually add them to the navigation in docs/.vuepress/config.js
    
    
    ## Running with Docker (WIP)
    
    If you don't want or cannot install node and other dependencies, you can run the development setup locally in a container like this:
    
    First build the container
    
    `docker build -t helsinkifi/huds .`
    
    Then run the image with optional Vuepress location and the npm script you want to run.
    
    NOTE: If you want to use "watchdocs" or "build.watch" scripts, you must include the Vuepress location!
    
    `docker run -v ${PWD}:/usr/src/app -v <YOUR VUEPRESS LOCATION FULL PATH>:/usr/src/app/tempdocuments -p 3333:3333 helsinkifi/huds <NPM SCRIPT>`
    
    For example:
    
    `docker run -v ${PWD}:/usr/src/app -p 3333:3333 helsinkifi/huds build`
    
    TODO:
    
    It's pretty annoying to copy paste long docker commands, so perhaps docker-compose would fit here. Anyone?