Add storybook

This commit is contained in:
Robert Long 2021-12-23 12:45:00 -08:00
parent 658424efa0
commit 87e5cafb77
5 changed files with 9386 additions and 61 deletions

14
.storybook/main.js Normal file
View File

@ -0,0 +1,14 @@
const svgrPlugin = require("vite-plugin-svgr");
module.exports = {
stories: ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
addons: ["@storybook/addon-links", "@storybook/addon-essentials"],
framework: "@storybook/react",
core: {
builder: "storybook-builder-vite",
},
async viteFinal(config) {
config.plugins.push(svgrPlugin());
return config;
},
};

11
.storybook/preview.js Normal file
View File

@ -0,0 +1,11 @@
import "../src/index.css";
export const parameters = {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
};

View File

@ -3,7 +3,9 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
"serve": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@react-aria/button": "^3.3.4",
@ -37,7 +39,14 @@
"react-use-clipboard": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@storybook/addon-actions": "^6.5.0-alpha.5",
"@storybook/addon-essentials": "^6.5.0-alpha.5",
"@storybook/addon-links": "^6.5.0-alpha.5",
"@storybook/react": "^6.5.0-alpha.5",
"babel-loader": "^8.2.3",
"sass": "^1.42.1",
"storybook-builder-vite": "^0.1.12",
"vite": "^2.4.2",
"vite-plugin-svgr": "^0.4.0"
}

14
src/Header.stories.jsx Normal file
View File

@ -0,0 +1,14 @@
import React from "react";
import { Header, LeftNav, RightNav } from "./Header";
export default {
title: "Header",
component: Header,
};
export const Home = () => (
<Header>
<LeftNav></LeftNav>
<RightNav></RightNav>
</Header>
);

9397
yarn.lock

File diff suppressed because it is too large Load Diff