ndorfin / pttrnr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PTTRNR

A pattern library generator.

This repo is a documentation, testing, and development platform for your project's front-end assets. These assets are typically stored in a separate repo, and symlinked to this repo so they can be 'dogfooded'.

There are two distinct sets of assets used within this pattern library:

  1. those used explicitly for rendering this pattern library, and its layout.
  2. those used to render examples of each pattern in its intended way. These examples are sandboxed in <iframe>s.

Dependencies

  • Node.js (v16.10+)
  • NPM (v8.1+)

Installation

Make sure you have the dependencies installed before proceeding.

  1. npm i

Development

The dev server can be started uisng npm start.

Adding patterns

  1. Add a .yml file to src/_data/patterns, using the pattern_model.yml as a reference.
  2. Assign the new pattern to a group, by setting the group_id to an existing src/_data/pattern_group/*. (If it's a new pattern group, see below.)
  3. Add the details to your new pattern:
  4. Give it a hierarchical id: [group]-[identifier], e.g. button-primary
  5. Give it a memorable name, preferably in a hierarchical manner too, e.g. Button Primary
  6. Describe what makes this pattern unique, or why you would use this pattern over others.
  7. In the example section, supply some code that is free of modifiers / variants, etc.
  8. Write any implementation notes or reminders when using this pattern
  9. Associate this pattern with its corresponding asset source code, e.g. JS, SCSS, Images, etc.

Your new pattern should be available at the following URL:

/patterns/[GROUP_ID]/[ID]/, e.g. /patterns/buttons/button-primary/

Glossary

  • assets – the front-end artefacts such as CSS, JavaScript, images, icons, and fonts. These are typically found in a separate repo, that the pattern library consumes and uses.
  • pattern – A distinct block of HTML and its corresponding assets. Each pattern typically uses a class attribute.
  • pattern group – A collection of similar patterns, typically grouped by function. e.g. buttons, or lists, or…
  • example – The pattern library renders a pattern's example in an <iframe>. Each example uses the project's assets.

List of shell commands

  • npm i – Install dependencies
  • npm start – Run pttrnr in dev mode
  • npm run build – Static build to the dist folder

About


Languages

Language:Nunjucks 54.4%Language:SCSS 24.8%Language:JavaScript 20.8%