Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cypress-io/cypress-design
Find here all the components to build UI with the Cypress Brand
https://github.com/cypress-io/cypress-design
components design-system react vue
Last synced: 6 days ago
JSON representation
Find here all the components to build UI with the Cypress Brand
- Host: GitHub
- URL: https://github.com/cypress-io/cypress-design
- Owner: cypress-io
- License: mit
- Created: 2022-04-14T14:54:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T12:04:30.000Z (17 days ago)
- Last Synced: 2024-10-29T14:34:49.977Z (17 days ago)
- Topics: components, design-system, react, vue
- Language: TypeScript
- Homepage: https://design.cypress.io
- Size: 8.43 MB
- Stars: 12
- Watchers: 16
- Forks: 4
- Open Issues: 20
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Cypress Design System
## Usage
### See the docs
The documentation website for this repo is published after each commit to the main branch.
You can find the last published version at https://design.cypress.io
### Install the CSS package
First install the css package, tailwind and autoprefixer
```bash
npm install --save-dev @cypress-design/css tailwindcss autoprefixer
```Then configure your tailwind.config.cjs using the following template
```js
// tailwind.config.cjs
const { TailwindConfig } = require('@cypress-design/css')module.exports = TailwindConfig([
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
])
```Check it out in the docs [here](./css)
### Install each component independently
Components need the css package to work properly. Make sure you have fully setup the `@cypress-design/css` before installing any component.
To make sure each component fix is never blocked by an ongoing refactoring, we decided to publish each component as its own package.
If you want to install the Cypress Button, run
```bash
npm install @cypress-design/vue-button
```At Cypress, we prefer using Vuejs to build new apps.
Since some projects at Cypress already use React as a framework, we decided to still publish each component as a react version and a vue version.
If you want to install the Cypress Button, and your project still uses React, install the react version
```bash
npm install @cypress-design/react-button
```See [the component ReadMe](./components/) for the list of available components and [the docs](https://cypress-design.vercel.app) for their usage
## Contributing
### Running the docs locally
```bash
yarn && yarn start
```This will:
- install all dependencies if anything is missing
- build all the components, specially the ones needed for the docs
- start the docs website locally
- give you a link to open in your browser.### Create a new component
Using [hygen](https://hygen.io) we can scaffold all the tooling needed for a new components.
To start writing a new component, run this command:
```bash
yarn new:component
```The system will ask you to provide the name of the component and generate all the files needed to start writing it.
In the new directory, you will find a React and a Vuejs version to complete. Each framework folder will also contain a stories file.
### Adding a new icon
New icons should be added to the `icon-registry/icons-static` directory and named according to the format `-_x.svg`, for example, `object-bug_x24.svg`.
When grabbing the icon from Figma, make sure the width and height of the icon is equal to its name (e.g. `x24` icons should be 24x24px). If it isn't, try going up a layer in Figma.
The name and size should match what's shown in Figma.
![image](copy-svg.png)
Once added, the svg attributes should be tweaked so as to integrate with the icon generation tooling.
- Replace the main color with `currentColor`
- Add `class="icon-dark"` to paths that are dark, generally the strokes
- Add `class="icon-light"` to paths that are light, generally the fills
- Remove the `width` and `height` attributes of the SVGTo verify that the icon is properly hooked up, run `yarn && yarn start` and navigate to the `icons` page. Search for your icon and tweak the colors.
When an icon is added or updated, the changeset for '@cypress-design/icon-registry', '@cypress-design/react-icon' and '@cypress-design/vue-icon' should include a minor version bump. This can be helped by running `yarn changeset`.
### Updating the component generator
When you use the `yarn new:component` command, the template used is called a generator. It could be useful to update it from time to time if the standards change.
First, create a scaffold for a component called ComponentName. The name matters because it will be used to generate the component templates and overwrite the old ones.
```bash
yarn new:component --name ComponentName
```Then do all the changes you want to make to the component template.
Every time you use `ComponentName` in this template, it will be replaced in generated scaffolding.
Finally, to commit the changes to the template, run
```bash
# Remove the old template
rm -rf _templates/component/new
# start a new hygen-create session
npx hygen-create start component
# add all the files inside the component to the template
npx hygen-create add components/ComponentName/**/*
# remove the file automatically generated by hygen-create
npx hygen-create remove hygen-create.json
# Use ComponentName as a placeholder for the component name
npx hygen-create usename ComponentName
# generate the new template
npx hygen-create generate
# remove the temporary component
rm -rf components/ComponentName
# remove the metadata file
rm -f hygen-create.json
```Finally, you should see the `prompt.js` file has been removed. Revert that change before committing.
### Running tests
To run in open mode, run `yarn cy`.
To run in CLI, run `yarn cypress run --components`.
## Structure
- [components](./components/) A collection of components for building Cypress applications and websites.
- [packages](./packages/) Some packages do not fit in css or in components but are used in multiple components. They are here.
- [css](./css/) What you need to install a pre-configured version of WindiCSS in a Cypress project.
- [icon-registry](./icon-registry/) contains the list of all the svg icons available in the vue-icon and react-icon components.
- [docs](./docs/) the docs website.
- [docs/.vitepress/theme](./docs/.vitepress/theme) where you will find all the components and the assets used in the docs website but not published to NPM.
- [test](./test/) Some sample test projects. We use them as sanity checks to see if the components we build are actually working with a real setup.