Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justeattakeaway/fozzie-components

Public monorepo of tools, services and atomic UI components within the fozzie ecosystem
https://github.com/justeattakeaway/fozzie-components

components f-footer f-header f-metadata f-services f-vue-icons fozzie monorepo storybook ui ui-components vue-components

Last synced: 1 day ago
JSON representation

Public monorepo of tools, services and atomic UI components within the fozzie ecosystem

Awesome Lists containing this project

README

        

# Fozzie Components Documentation

## Contents
- [Installation](#installation)
- [Development](#development)
- [Turborepo](#turborepo)
- [Remote Caching in AWS S3](#remote-caching-in-aws-s3)
- [Component Tests](#component-tests)
- [Importing optional SCSS helpers from Fozzie](#importing-optional-scss-helpers-from-fozzie)
- [Reusable styling with common.scss](#reusable-styling-with-commonscss)
- [Running Storybook](#running-storybook)
- [Running a single component in Storybook](#running-a-single-component-in-storybook)
- [Committing Code](#committing-code)
- [Publishing Components](#publishing-components)
- [Vue 3](#vue-3)
- [Links](#links)

## Installation

This is a _mono-repo_. It contains several packages, all controlled from a top level `packages.json`.

Each project has its own `package.json` file containing package specific configuration, **however** don't run `yarn install` from a package project; instead run it from the top level.

If you run `yarn install` from a package then you may well get an unhelpful error like this:

```none
Error: ENOENT: no such file or directory, symlink '…\fozzie-components\packages\…' -> '…\fozzie-components\node_modules\@justeat\…'
```

If this happens, delete all the `node_modules` folders throughout and then run `yarn install` from the root directory again.

In some rare cases modules specified in the components own `package.json` file can sometimes fail to resolve / install correctly. This can lead to errors like:
Example error: The following module could not be found, please run `yarn add @moduleName` to install it.

There's two solutions you could try from the root of the project which may fix this:

1. yarn cache clean
2. yarn build

## Development

### Turborepo

- https://turborepo.org/docs

---

Turborepo is an intelligent build system optimized for JavaScript and TypeScript codebases. We use Turborepo to facilitate the execution of all our build scripts within the PIE monorepo.

### Remote Caching in AWS S3
In order to speed up local development / CI workflows, we use Turborepo's remote caching functionality to publish build artifacts to AWS S3. This ensures that only modified packages have their build tasks executed.

In order to take advantage of this functionality, you must set the `TURBO_TOKEN` environment variable on your local machine. Please reach out to the design system team for the value of this token.

Once enabled you'll see 'Remote caching enabled' when executing a packages node task.

It is recommended to run the following tasks at the root of the monorepo to ensure tasks are executed for the required components:

`build`
`test`
`lint`

### Component Tests
For other test tasks you can execute in a number of ways:

```bash
# Run Component tests for all components
# Note: Ensure Storybook is not running when running the following commands
cd ./fozzie-components
yarn storybook:build
yarn storybook:serve-static
yarn test-component:chrome
```

OR

```bash
# Run Component tests for individual f-* package
# Note: Ensure Storybook is not running when running the following commands
cd ./fozzie-components
yarn storybook:build
yarn storybook:serve-static
# And in another window
yarn test-component:chrome --filter=@justeat/f-user-message
```

### Importing optional SCSS helpers from Fozzie
We have created several optional mixin helpers in [Fozzie](./packages/tools/fozzie/src/scss/components/optional).
Here's an example of how to use it:

Note: Importing the optional mixin and using `@include` in the `common.scss` file of your component doesn't work if you have `module` enabled on your SFC.

```sass

@include pageBanner();

```

### Reusable styling with common.scss
You can add reusable styles to the `common.scss` file. This can be useful for components that use sub-components and may wish to share mixins, functions and variables.

Every component comes with a `vue.config.js` file that makes the `common.scss` file available under the namespace `common` like so:
```
`@use "../assets/scss/common.scss";`
```
To access anything from the common file, simply prefix the value like so:

```
// Fake values used for demonstration
.someClass {
color: common.$fontColor;
line-height: common.line-height();
@include common.truncate();
}
```

You could remove the need for namespacing by using something like `@use "../assets/scss/common.scss" as *` however utilising the namespace makes it much easier to understand where a value is coming from.

### Running Storybook

To run storybook first you must run the following at the the top level

`yarn build` to build the require packages for storybook to run.

Then run `yarn storybook:serve` to start storybook, which will open on `localhost:8080`.

Alternatively, you can run `yarn build:changed` and `yarn storybook:serve-changed` to just view the component you're working on, as well as any of it's dependencies / dependants.

### Running a single component in Storybook

If you wish to view a single component in Storybook during development, you can do this by opening the components `*.stories.js` file in your IDE and running the `Storybook - Run Currently Open Story File` task which can be found in the debug tab on the left. (This only works with VS Code).

This is particuarly useful as it prevents a bug where Storybook pulls in other components stylesheets ([See here](https://github.com/storybookjs/storybook/issues/729)).

## Committing Code

We use [Husky](https://github.com/typicode/husky) to manage our git hooks.

[When you make a commit, the following scripts will run as part of our pre-commit hook.](https://github.com/justeat/fozzie-components/blob/master/.husky/pre-commit)

If you wish to skip this Husky hook, simply add the `--no-verify` argument when making your commit.

For example: `git commit -m "Refactor f-button" --no-verify `.

## Publishing Components

More information about how to contribute to this repo can be found in our Storybook [Documentation section](https://vue.pie.design/?path=/story/documentation-getting-started-contributing--page)

## Vue 3

Fozzie Components were originally authored in Vue 2. To ensure they work in a Vue 3 application, please run Vue 3 in [compat mode](https://v3-migration.vuejs.org/migration-build).

## Links
- [Just Eat Storybook production](https://vue.pie.design/)