-
Notifications
You must be signed in to change notification settings - Fork 80
[Discussion] Replace fractal with storybook #1130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| export default { | ||
| framework: '@storybook/html-vite', | ||
| stories: ['../components/**/*.stories.js'], | ||
| staticDirs: ['../static'], | ||
| }; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| import "../static/protocol/css/protocol.css"; | ||
| import "../static/protocol/css/protocol-components.css"; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| export default { title: 'Components/Button' }; | ||
|
|
||
| export const Default = { | ||
| render: () => `<button class="mzp-c-button mzp-t-product" type="button">Sign up</button>`, | ||
| }; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,137 +1,142 @@ | ||
| const js = require('@eslint/js'); | ||
| const globals = require('globals'); | ||
| const js = require("@eslint/js"); | ||
| const globals = require("globals"); | ||
|
|
||
| const rules = { | ||
| // Require `let` or `const` instead of `var` | ||
| // https://eslint.org/docs/rules/no-var | ||
| 'no-var': 'error', | ||
| "no-var": "error", | ||
|
Check failure on line 7 in eslint.config.js
|
||
|
|
||
| // Require `const` declarations for variables that are never reassigned after declared | ||
| // https://eslint.org/docs/rules/prefer-const | ||
| 'prefer-const': 'error', | ||
| "prefer-const": "error", | ||
|
Check failure on line 11 in eslint.config.js
|
||
|
|
||
| // This option sets a specific tab width for your code | ||
| // https://eslint.org/docs/rules/indent | ||
| 'indent': ['error', 4], | ||
| indent: ["error", 4], | ||
|
|
||
| // Disallow mixed 'LF' and 'CRLF' as linebreaks | ||
| // https://eslint.org/docs/rules/linebreak-style | ||
| 'linebreak-style': ['error', 'unix'], | ||
| "linebreak-style": ["error", "unix"], | ||
|
Check failure on line 19 in eslint.config.js
|
||
|
|
||
| // Specify whether double or single quotes should be used | ||
| 'quotes': ['error', 'single'], | ||
| quotes: ["error", "single"], | ||
|
|
||
| // Require or disallow use of semicolons instead of ASI | ||
| 'semi': ['error', 'always'], | ||
| semi: ["error", "always"], | ||
|
|
||
| // Enforce location of semicolons | ||
| // https://eslint.org/docs/rules/semi-style | ||
| 'semi-style': ['error', 'last'], | ||
| "semi-style": ["error", "last"], | ||
|
|
||
| // Require camel case names | ||
| // https://eslint.org/docs/rules/camelcase | ||
| 'camelcase': ['error', { 'properties': 'always' }], | ||
| camelcase: ["error", { properties: "always" }], | ||
|
|
||
| // Use type-safe equality operators | ||
| // https://eslint.org/docs/rules/eqeqeq | ||
| 'eqeqeq': ['error', 'always'], | ||
| eqeqeq: ["error", "always"], | ||
|
|
||
| // Require newlines around variable declarations | ||
| // https://eslint.org/docs/rules/one-var-declaration-per-line | ||
| 'one-var-declaration-per-line': ['error', 'always'], | ||
| "one-var-declaration-per-line": ["error", "always"], | ||
|
|
||
| // Require constructor names to begin with a capital letter | ||
| // https://eslint.org/docs/rules/new-cap | ||
| 'new-cap': 'error', | ||
| "new-cap": "error", | ||
|
|
||
| // Disallow Use of alert, confirm, prompt | ||
| // https://eslint.org/docs/rules/no-alert | ||
| 'no-alert': 'error', | ||
| "no-alert": "error", | ||
|
|
||
| // Disallow eval() | ||
| // https://eslint.org/docs/rules/no-eval | ||
| 'no-eval': 'error', | ||
| "no-eval": "error", | ||
|
|
||
| // Disallow empty functions | ||
| // https://eslint.org/docs/rules/no-empty-function | ||
| 'no-empty-function': 'error', | ||
| "no-empty-function": "error", | ||
|
|
||
| // Require radix parameter | ||
| // https://eslint.org/docs/rules/radix | ||
| 'radix': 'error', | ||
| radix: "error", | ||
|
|
||
| // Disallow the use of `console` | ||
| // https://eslint.org/docs/rules/no-console | ||
| 'no-console': 'error' | ||
| "no-console": "error", | ||
| }; | ||
|
|
||
| const testingGlobals = { | ||
| sinon: true | ||
| sinon: true, | ||
| }; | ||
|
|
||
| module.exports = [ | ||
| js.configs.recommended, | ||
| { | ||
| ignores: ['dist/**/*.js', 'package/**/*.js', 'static/**/*.js', 'theme/static/**/*.js', 'tests/dist/**/*.js'], | ||
| ignores: [ | ||
| "dist/**/*.js", | ||
| "package/**/*.js", | ||
| "static/**/*.js", | ||
| "theme/static/**/*.js", | ||
| "tests/dist/**/*.js", | ||
| ], | ||
| }, | ||
| { | ||
| files: ['assets/js/**/*.js'], | ||
| files: ["assets/js/**/*.js"], | ||
| languageOptions: { | ||
| ecmaVersion: 2017, | ||
| globals: { | ||
| Mozilla: true, | ||
| ...globals.browser, | ||
| ...globals.commonjs | ||
| } | ||
| ...globals.commonjs, | ||
| }, | ||
| }, | ||
| rules: rules | ||
| rules: rules, | ||
| }, | ||
| { | ||
| files: ['theme/**/*.js'], | ||
| files: ["theme/**/*.js"], | ||
| languageOptions: { | ||
| ecmaVersion: 2017, | ||
| globals: { | ||
| Mozilla: true, | ||
| ...globals.browser, | ||
| ...globals.commonjs, | ||
| ...globals.node | ||
| } | ||
| ...globals.node, | ||
| }, | ||
| }, | ||
| rules: rules | ||
| rules: rules, | ||
| }, | ||
| { | ||
| files: ['tests/**/*.js'], | ||
| files: ["tests/**/*.js"], | ||
| languageOptions: { | ||
| ecmaVersion: 'latest', | ||
| sourceType: 'module', | ||
| ecmaVersion: "latest", | ||
| sourceType: "module", | ||
| globals: { | ||
| Mozilla: true, | ||
| ...globals.browser, | ||
| ...globals.jasmine, | ||
| ...globals.commonjs, | ||
| ...testingGlobals | ||
| } | ||
| ...testingGlobals, | ||
| }, | ||
| }, | ||
| rules: rules | ||
| rules: rules, | ||
| }, | ||
| { | ||
| files: [ | ||
| 'eslint.config.js', | ||
| 'fractal.config.js', | ||
| 'webpack.docs.build.config.js', | ||
| 'webpack.docs.static.config.js', | ||
| 'webpack.entrypoints.js', | ||
| 'webpack.package.build.config.js', | ||
| 'webpack.package.static.config.js', | ||
| 'webpack.test.config.js' | ||
| "eslint.config.js", | ||
| "webpack.docs.build.config.js", | ||
| "webpack.docs.static.config.js", | ||
| "webpack.entrypoints.js", | ||
| "webpack.package.build.config.js", | ||
| "webpack.package.static.config.js", | ||
| "webpack.test.config.js", | ||
| ], | ||
| languageOptions: { | ||
| ecmaVersion: 'latest', | ||
| ecmaVersion: "latest", | ||
| globals: { | ||
| ...globals.node, | ||
| ...globals.commonjs | ||
| } | ||
| ...globals.commonjs, | ||
| }, | ||
| }, | ||
| rules: rules | ||
| } | ||
| rules: rules, | ||
| }, | ||
| ]; | ||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would want something that has an HTML panel like current docs