From d1e8ccce824199e79ca5e17641e9fab80313f85f Mon Sep 17 00:00:00 2001 From: codebyalex Date: Thu, 11 Apr 2019 23:10:03 -0400 Subject: [PATCH] removed passes from props and used type to determine the badge needed --- addons/a11y/src/components/A11YPanel.tsx | 3 - .../a11y/src/components/Report/Elements.tsx | 10 +- addons/a11y/src/components/Report/Item.tsx | 5 +- addons/a11y/src/components/Report/Rules.tsx | 42 ++-- addons/a11y/src/components/Report/index.tsx | 5 +- .../__snapshots__/A11YPanel.test.js.snap | 199 ++++++++++-------- 6 files changed, 151 insertions(+), 113 deletions(-) diff --git a/addons/a11y/src/components/A11YPanel.tsx b/addons/a11y/src/components/A11YPanel.tsx index 3f82b4899a3..5ca6069ce9f 100644 --- a/addons/a11y/src/components/A11YPanel.tsx +++ b/addons/a11y/src/components/A11YPanel.tsx @@ -175,7 +175,6 @@ export class A11YPanel extends Component { label: {violations.length} Violations, panel: ( { label: {passes.length} Passes, panel: ( { label: {incomplete.length} Incomplete, panel: ( = ({ element, passes, type }) => { +const Element: FunctionComponent = ({ element, type }) => { const { any, all, none } = element; const rules = [...any, ...all, ...none]; const highlightToggleId = `${type}-${element.target[0]}`; @@ -51,21 +50,20 @@ const Element: FunctionComponent = ({ element, passes, type }) => /> - + ); }; interface ElementsProps { elements: NodeResult[]; - passes: boolean; type: RuleType; } -export const Elements: FunctionComponent = ({ elements, passes, type }) => ( +export const Elements: FunctionComponent = ({ elements, type }) => (
    {elements.map((element, index) => ( - + ))}
); diff --git a/addons/a11y/src/components/Report/Item.tsx b/addons/a11y/src/components/Report/Item.tsx index 0a5b784dc37..d1303153439 100644 --- a/addons/a11y/src/components/Report/Item.tsx +++ b/addons/a11y/src/components/Report/Item.tsx @@ -56,7 +56,6 @@ const HighlightToggleElement = styled.span({ interface ItemProps { item: Result; - passes: boolean; type: RuleType; } @@ -75,7 +74,7 @@ export class Item extends Component { })); render() { - const { item, passes, type } = this.props; + const { item, type } = this.props; const { open } = this.state; const highlightToggleId = `${type}-${item.id}`; @@ -104,7 +103,7 @@ export class Item extends Component { {open ? ( - + ) : null} diff --git a/addons/a11y/src/components/Report/Rules.tsx b/addons/a11y/src/components/Report/Rules.tsx index 8d9b8ccdbc2..58d976a1436 100644 --- a/addons/a11y/src/components/Report/Rules.tsx +++ b/addons/a11y/src/components/Report/Rules.tsx @@ -2,6 +2,7 @@ import React, { FunctionComponent } from 'react'; import { styled } from '@storybook/theming'; import { Badge, Icons } from '@storybook/components'; import { CheckResult } from 'axe-core'; +import { RuleType } from '../A11YPanel'; const impactColors = { minor: '#f1c40f', @@ -53,28 +54,45 @@ const Status = styled.div(({ passes, impact }: { passes: boolean; impact: string interface RuleProps { rule: CheckResult; - passes: boolean; + type: RuleType; } -const Rule: FunctionComponent = ({ rule, passes }) => ( - - - {rule.impact} - - {rule.message} - -); +const Rule: FunctionComponent = ({ rule, type }) => { + let badgeType = ''; + + switch(type) { + case RuleType.PASS: + badgeType = 'positive'; + break; + case RuleType.VIOLATION: + badgeType = 'negative'; + break; + case RuleType.INCOMPLETION: + badgeType = 'neutral'; + break; + default: + break; + } + return ( + + + {rule.impact} + + {rule.message} + + ); +} interface RulesProps { rules: CheckResult[]; - passes: boolean; + type: RuleType; } -export const Rules: FunctionComponent = ({ rules, passes }) => { +export const Rules: FunctionComponent = ({ rules, type }) => { return ( {rules.map((rule, index) => ( - + ))} ); diff --git a/addons/a11y/src/components/Report/index.tsx b/addons/a11y/src/components/Report/index.tsx index 2388438ed03..62f080337eb 100644 --- a/addons/a11y/src/components/Report/index.tsx +++ b/addons/a11y/src/components/Report/index.tsx @@ -7,14 +7,13 @@ import { RuleType } from '../A11YPanel'; export interface ReportProps { items: Result[]; empty: string; - passes: boolean; type: RuleType; } -export const Report: FunctionComponent = ({ items, empty, type, passes }) => ( +export const Report: FunctionComponent = ({ items, empty, type }) => ( {items && items.length ? ( - items.map(item => ) + items.map(item => ) ) : ( {empty} )} diff --git a/addons/a11y/src/components/__snapshots__/A11YPanel.test.js.snap b/addons/a11y/src/components/__snapshots__/A11YPanel.test.js.snap index d791b9056b4..8ef8c441229 100644 --- a/addons/a11y/src/components/__snapshots__/A11YPanel.test.js.snap +++ b/addons/a11y/src/components/__snapshots__/A11YPanel.test.js.snap @@ -114,7 +114,7 @@ exports[`A11YPanel should render report 1`] = ` min-height: 100%; } -.emotion-10 { +.emotion-7 { box-shadow: rgba(0,0,0,.1) 0 -1px 0 0 inset; background: rgba(0,0,0,.05); display: -webkit-box; @@ -182,12 +182,14 @@ exports[`A11YPanel should render report 1`] = ` color: #E69D00; } -.emotion-9 { - padding: 10px 15px 10px 0; +.emotion-10 { + padding: 10px 12px 10px 0; cursor: pointer; font-size: 13px; height: 40px; border: none; + margin-top: -40px; + float: right; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -198,23 +200,36 @@ exports[`A11YPanel should render report 1`] = ` align-items: center; } -.emotion-9 input { - margin-left: 10px; +@media (max-width:665px) { + .emotion-10 { + display: block; + margin-top: 0px; + padding: 12px 0px 3px 12px; + width: 100%; + float: left; + border-bottom: 1px solid rgba(0,0,0,.1); + } +} + +.emotion-10 input: { + margin-left: 10; margin-right: 0; margin-top: 0; margin-bottom: 0; } -.emotion-7 { +.emotion-8 { cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; + margin-bottom: 3px; + margin-right: 3px; color: #666666; } -.emotion-8 { +.emotion-9 { cursor: not-allowed; } @@ -334,13 +349,13 @@ exports[`A11YPanel should render report 1`] = ` "inserted": Object { "0": true, "110qmus": true, - "152wg9i": true, "1551xjo": true, "15paq49": true, "176o2y5": true, + "195aj2u": true, "1977chw": true, - "1cwfnw4": true, - "1fp6daz": true, + "19mcg9j": true, + "1kbt4a0": true, "1l7fvsg": true, "1myfomu": true, "1s6ajii": true, @@ -348,13 +363,13 @@ exports[`A11YPanel should render report 1`] = ` "4ryd4s": true, "6hqipu": true, "animation-u07e3c": true, + "aq4p19": true, "fg630j": true, "g90fw7": true, "iau1th": true, "jb2puo": true, "kqzqgg": true, "l0u0ek": true, - "nuzmgr": true, "qacwg0": true, "qb28": true, "snh8f7": true, @@ -617,7 +632,7 @@ exports[`A11YPanel should render report 1`] = ` data-emotion="css" > - .emotion-10{box-shadow:rgba(0,0,0,.1) 0 -1px 0 0 inset;background:rgba(0,0,0,.05);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;white-space:nowrap;} + .emotion-7{box-shadow:rgba(0,0,0,.1) 0 -1px 0 0 inset;background:rgba(0,0,0,.05);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;white-space:nowrap;} + , , , , , + , , , , ,