Skip to content

Commit 6509db6

Browse files
committed
💅 pages: therapeutic conversion from sass to styled-components
1 parent 13c0e68 commit 6509db6

20 files changed

+317
-267
lines changed

components/AppStarRating.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react';
2+
import styled from 'styled-components';
23
import IconBase from './IconBase';
34
import IconStarFull from './IconStarFull';
45
import IconStarEmpty from './IconStarEmpty';
@@ -7,7 +8,7 @@ export default () => {
78
const seqN = Array(4).fill(null);
89

910
return (
10-
<div>
11+
<Wrapper>
1112
{seqN.map((_, n) => (
1213
<IconBase iconName="full star" iconColor="orangered" key={n}>
1314
<IconStarFull />
@@ -16,6 +17,10 @@ export default () => {
1617
<IconBase iconName="empty star" iconColor="orangered">
1718
<IconStarEmpty />
1819
</IconBase>
19-
</div>
20+
</Wrapper>
2021
);
2122
};
23+
24+
const Wrapper = styled.div`
25+
margin: 10px 0;
26+
`;

components/Content.fixture.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Content from './Content';
2+
3+
export default {
4+
component: Content,
5+
props: {
6+
children: 'Pipo pipo, pipo.',
7+
},
8+
};

components/Content.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import styled from 'styled-components';
2+
3+
const Content = styled.div`
4+
width: 60%;
5+
6+
@media screen and (max-width: 600px) {
7+
width: 100%;
8+
}
9+
`;
10+
11+
Content.displayName = 'Content';
12+
13+
export default Content;

components/Hr.fixture.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Hr from './Hr';
2+
3+
export default {
4+
component: Hr,
5+
};

components/Hr.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import styled from 'styled-components';
2+
3+
const Hr = styled.hr`
4+
border-top: 1px solid #ddd;
5+
border-bottom: none;
6+
margin-top: 15px;
7+
`;
8+
9+
Hr.displayName = 'Hr';
10+
11+
export default Hr;

components/Main.fixture.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Main from './Main';
2+
3+
export default {
4+
component: Main,
5+
props: {
6+
children: 'Main frame in a primary context',
7+
},
8+
};

components/Main.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import styled from 'styled-components';
2+
3+
const Main = styled.main`
4+
max-width: 1000px;
5+
margin: 0 auto;
6+
display: flex;
7+
justify-content: space-between;
8+
9+
@media screen and (max-width: 1030px) {
10+
padding: 0 20px;
11+
}
12+
13+
@media screen and (max-width: 600px) {
14+
flex-direction: column;
15+
}
16+
`;
17+
18+
Main.displayName = 'Main';
19+
20+
export default Main;

components/Paragraph.fixture.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Paragraph from './Paragraph';
2+
3+
export default {
4+
component: Paragraph,
5+
props: {
6+
children: 'Paraphrase a sentence',
7+
},
8+
};

components/Paragraph.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import styled from 'styled-components';
2+
3+
const Paragraph = styled.p`
4+
margin: 10px 0;
5+
`;
6+
7+
Paragraph.displayName = 'Paragraph';
8+
9+
export default Paragraph;

components/Places.fixture.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// @flow
2+
import { createFixture } from 'react-cosmos';
3+
import Places from './Places';
4+
import data from '../tools/data';
5+
6+
export default createFixture({
7+
component: Places,
8+
props: {
9+
places: data.places,
10+
},
11+
});

components/Places.js

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// @flow
2+
import * as React from 'react';
3+
import styled from 'styled-components';
4+
5+
import Top from './Top';
6+
import Paragraph from './Paragraph';
7+
import Hr from './Hr';
8+
9+
import type { Place } from '../tools/types';
10+
11+
type Props = {
12+
places: Array<Place>,
13+
};
14+
15+
export default class Places extends React.Component<Props> {
16+
render() {
17+
return this.props.places.map(place => (
18+
<Item key={place.name}>
19+
<Image src={place.img} alt={place.name} />
20+
<Top>
21+
<strong>{place.name}</strong>
22+
</Top>
23+
<Paragraph>{place.description}</Paragraph>
24+
<Hr />
25+
</Item>
26+
));
27+
}
28+
}
29+
30+
const Item = styled.div`
31+
padding: 10px 0;
32+
`;
33+
34+
const Image = styled.img`
35+
float: left;
36+
margin: 0 15px 15px 0;
37+
`;

components/Sidebar.fixture.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Top from './Top';
2+
3+
export default {
4+
component: Top,
5+
props: {
6+
children: 'Siding, baring, whatever',
7+
},
8+
};

components/Sidebar.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import styled from 'styled-components';
2+
3+
const Sidebar = styled.aside`
4+
width: 35%;
5+
padding: 20px;
6+
margin: 40px 0 0 20px;
7+
background: #eee;
8+
float: right;
9+
10+
@media screen and (max-width: 600px) {
11+
width: 100%;
12+
margin: 10px 0;
13+
}
14+
`;
15+
16+
Sidebar.displayName = 'Sidebar';
17+
18+
export default Sidebar;

components/Top.fixture.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Top from './Top';
2+
3+
export default {
4+
component: Top,
5+
props: {
6+
children: "I'm a top paragraph",
7+
},
8+
};

components/Top.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import styled from 'styled-components';
2+
3+
const Top = styled.p`
4+
margin: 30px 0 0;
5+
text-transform: uppercase;
6+
font-size: 14px;
7+
color: #666;
8+
padding: 0;
9+
`;
10+
11+
Top.displayName = 'Top';
12+
13+
export default Top;

pages/_app.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import React from 'react';
33
import { TransitionGroup, CSSTransition } from 'react-transition-group';
44
import AppNavigation from '../components/AppNavigation';
55
import AppFooter from '../components/AppFooter';
6-
import data from '../data';
6+
import data from '../tools/data';
7+
import './_styles';
78

89
export default class MyApp extends App {
910
state = {

pages/_styles.js

-60
Original file line numberDiff line numberDiff line change
@@ -47,56 +47,6 @@ injectGlobal`
4747
font-weight: normal;
4848
}
4949
50-
main {
51-
max-width: 1000px;
52-
margin: 0 auto;
53-
display: flex;
54-
justify-content: space-between;
55-
56-
@media screen and (max-width: 1030px) {
57-
padding: 0 20px;
58-
}
59-
60-
@media screen and (max-width: 600px) {
61-
flex-direction: column;
62-
}
63-
}
64-
65-
.top {
66-
text-transform: uppercase;
67-
font-size: 14px;
68-
color: #666;
69-
padding: 0;
70-
margin: 30px 0 0;
71-
}
72-
73-
.places {
74-
width: 60%;
75-
76-
@media screen and (max-width: 600px) {
77-
width: 100%;
78-
}
79-
}
80-
81-
aside.sidebar {
82-
width: 35%;
83-
padding: 20px;
84-
margin: 40px 0 0 20px;
85-
background: #eee;
86-
float: right;
87-
88-
@media screen and (max-width: 600px) {
89-
width: 100%;
90-
margin: 10px 0;
91-
}
92-
}
93-
94-
hr {
95-
border-top: 1px solid #ccc;
96-
border-bottom: none;
97-
margin-top: 15px;
98-
}
99-
10050
.transition-group-wrapper {
10151
position: relative; /* xavier's dirty hack */
10252
}
@@ -118,14 +68,4 @@ injectGlobal`
11868
opacity: 1;
11969
position: absolute; /* xavier's dirty hack */
12070
}
121-
122-
/* screen reader only */
123-
.hidden {
124-
position: absolute;
125-
left: -10000px;
126-
top: auto;
127-
width: 1px;
128-
height: 1px;
129-
overflow: hidden;
130-
}
13171
`;

0 commit comments

Comments
 (0)