Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
const ListItem1 = styled.li``;

const ListItem2 = styled.li` `;

const Dropdown = styled.div`position: relative;`

const Button = styled.button`
color: palevioletred ;

font-size : 1em ;
`;

// NOTE: Copied from conformance/fixtures/prettier/js/multiparser-css/styled-components.js
// And comment out not supported `.extend` cases
// const TomatoButton = Button.extend`
// color : tomato ;

// border-color : tomato
// ;

// `;

// Button.extend.attr({})`
// border-color : black;
// `

styled(ExistingComponent)`
color : papayawhip ; background-color: firebrick`;


styled.button.attr({})`
border : rebeccapurple`;

styled(ExistingComponent).attr({})`
border : rebeccapurple`;

styled.div`
color: ${props => props.theme.colors.paragraph};
/* prettier-ignore */
${props => props.small ? 'font-size: 0.8em;' : ''};
`

styled.div`
color: ${props => props.theme.colors.paragraph};
/* prettier-ignore */
${props => props.small ? 'font-size: 0.8em;' : ''}
`

styled.div`
/* prettier-ignore */
color: ${props => props.theme.colors.paragraph};
${props => props.small ? 'font-size: 0.8em;' : ''};
`

styled.div`
color: ${props => props.theme.colors.paragraph};
/* prettier-ignore */
${props => props.small ? 'font-size: 0.8em;' : ''};
/* prettier-ignore */
${props => props.red ? 'color: red;' : ''};
`

styled.div`
/* prettier-ignore */
color: ${props => props.theme.colors.paragraph};
/* prettier-ignore */
${props => props.small ? 'font-size: 0.8em;' : ''};
/* prettier-ignore */
${props => props.red ? 'color: red;' : ''};
/* prettier-ignore */
`

styled.div`
${sanitize} ${fonts}
html {
margin: 0;
}
`

styled.div`
${bar}
baz
`

styled.span`
foo
${bar}
baz
`

styled.div`
foo
${bar}
${baz}
`

styled.span`
${foo}
${bar}
`

styled.div`
${foo} bar
`

styled.span`
${foo} ${bar}
baz: ${foo}
`

styled.span`
${foo};
${bar};
`

styled.span`
${foo}: ${bar};
`

styled.span`
${foo}: ${bar}
`

styled.span`
${foo}:
${bar}
`

styled.span`
${foo}:
${bar};
`

styled.a`
${feedbackCountBlockCss}
text-decoration: none;

${FeedbackCount} {
margin: 0;
}
`

const StyledComponent1 = styled.div`
${anInterpolation}
/* a comment */

.aRule {
color: red
}
`;

const StyledComponent2 = styled.div`
${anInterpolation}

/* a comment */

.aRule {
color: red
}
`;

const Direction = styled.span`
${({ up }) => up && `color: ${color.positive};`}
${({ down }) => down && `color: ${color.negative};`}
`;

const Direction2 = styled.span`
${({ up }) => up && `color: ${color.positive}`};
${({ down }) => down && `color: ${color.negative}`};
`;

const mixin = css`
color: ${props => props.color};
${props => props.otherProperty}: ${props => props.otherValue};
`;

const foo = styled.div`
display: flex;
${props => props.useMixin && mixin}
`;

const Single1 = styled.div`
color: red
`;

const Single2 = styled.div`
color: red;
`;

const Dropdown2 = styled.div`
/* A comment to avoid the prettier issue: https://github.com/prettier/prettier/issues/2291 */
position: relative;
`;

const bar = styled.div`
border-radius: 50%;
border: 5px solid rgba(var(--green-rgb), 0);
display: inline-block;
height: 40px;
width: 40px;

${props =>
(props.complete || props.inProgress) &&
css`
border-color: rgba(var(--green-rgb), 0.15);
`}

div {
background-color: var(--purpleTT);
border-radius: 50%;
border: 4px solid rgba(var(--purple-rgb), 0.2);
color: var(--purpleTT);
display: inline-flex;

${props =>
props.complete &&
css`
background-color: var(--green);
border-width: 7px;
`}

${props =>
(props.complete || props.inProgress) &&
css`
border-color: var(--green);
`}
}
`;

const A = styled.a`
display: inline-block;
color: #fff;
${props => props.a &&css`
display: none;
`}
height: 30px;
`;

const Foo = styled.p`
max-width: 980px;
${mediaBreakpointOnlyXs`
&& {
font-size: 0.8rem;
}
`}

&.bottom {
margin-top: 3rem;
}
`;

styled(A)`
// prettier-ignore
@media (aaaaaaaaaaaaa) {
z-index: ${(props) => (props.isComplete ? '1' : '0')};
}
`;

const StyledDiv = styled.div`
${props => getSize(props.$size.xs)}
${props => getSize(props.$size.sm, 'sm')}
${props => getSize(props.$size.md, 'md')}
`;
20 changes: 20 additions & 0 deletions apps/oxfmt/conformance/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,26 @@ const categories: Category[] = [
"comment-tag.js": "`/* GraphQL */` comment tag not yet supported",
},
},
{
name: "css-in-js",
sources: [
{
dir: join(PRETTIER_FIXTURES_DIR, "js/multiparser-css"),
ext: ".js",
excludes: ["format.test.js"],
},
{
dir: join(PRETTIER_FIXTURES_DIR, "jsx/embed"),
ext: ".js",
excludes: ["format.test.js"],
},
{ dir: join(EDGE_CASES_DIR, "css-in-js") },
],
optionSets: [{ printWidth: 80 }, { printWidth: 100 }],
notes: {
"styled-components.js": "Multiple issues: `Button.extend` not recognized as tag",
},
},
];

// ---
Expand Down
22 changes: 22 additions & 0 deletions apps/oxfmt/conformance/snapshots/conformance.snap.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,25 @@
| File | Note |
| :--- | :--- |
| comment-tag.js | `/* GraphQL */` comment tag not yet supported |

## css-in-js

### Option 1: 16/17 (94.12%)

```json
{"printWidth":80}
```

| File | Note |
| :--- | :--- |
| styled-components.js | Multiple issues: `Button.extend` not recognized as tag |

### Option 2: 16/17 (94.12%)

```json
{"printWidth":100}
```

| File | Note |
| :--- | :--- |
| styled-components.js | Multiple issues: `Button.extend` not recognized as tag |
Loading
Loading