Skip to content

Commit a066be4

Browse files
committed
working smaple
1 parent 9d72211 commit a066be4

23 files changed

+939
-297
lines changed

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

README.md

+3-68
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,3 @@
1-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2-
3-
## Available Scripts
4-
5-
In the project directory, you can run:
6-
7-
### `npm start`
8-
9-
Runs the app in the development mode.<br>
10-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11-
12-
The page will reload if you make edits.<br>
13-
You will also see any lint errors in the console.
14-
15-
### `npm test`
16-
17-
Launches the test runner in the interactive watch mode.<br>
18-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
19-
20-
### `npm run build`
21-
22-
Builds the app for production to the `build` folder.<br>
23-
It correctly bundles React in production mode and optimizes the build for the best performance.
24-
25-
The build is minified and the filenames include the hashes.<br>
26-
Your app is ready to be deployed!
27-
28-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
29-
30-
### `npm run eject`
31-
32-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
33-
34-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
35-
36-
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
37-
38-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
39-
40-
## Learn More
41-
42-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43-
44-
To learn React, check out the [React documentation](https://reactjs.org/).
45-
46-
### Code Splitting
47-
48-
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49-
50-
### Analyzing the Bundle Size
51-
52-
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53-
54-
### Making a Progressive Web App
55-
56-
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57-
58-
### Advanced Configuration
59-
60-
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61-
62-
### Deployment
63-
64-
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65-
66-
### `npm run build` fails to minify
67-
68-
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
1+
- react-ui: component library w/ theme
2+
- dsx: docs + design
3+
- ds-tools: element + css

package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,22 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6+
"@emotion/core": "^10.0.15",
7+
"@emotion/styled": "^10.0.15",
8+
"@styled-system/css": "^5.0.19",
9+
"emotion-theming": "^10.0.14",
10+
"deepmerge": "4.0.0",
611
"react": "^16.8.6",
712
"react-dom": "^16.8.6",
8-
"react-scripts": "3.0.1"
13+
"react-scripts": "3.0.1",
14+
"styled-system": "^5.0.18"
915
},
1016
"scripts": {
1117
"start": "react-scripts start",
1218
"build": "react-scripts build",
1319
"test": "react-scripts test",
14-
"eject": "react-scripts eject"
20+
"eject": "react-scripts eject",
21+
"theme": "node src/ds-tools/theme.css"
1522
},
1623
"eslintConfig": {
1724
"extends": "react-app"

src/App.css

+4-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,6 @@
1-
.App {
2-
text-align: center;
1+
.av-danger-zone h4 {
2+
margin-bottom: var(--space-3);
33
}
4-
5-
.App-logo {
6-
animation: App-logo-spin infinite 20s linear;
7-
height: 40vmin;
8-
pointer-events: none;
9-
}
10-
11-
.App-header {
12-
background-color: #282c34;
13-
min-height: 100vh;
14-
display: flex;
15-
flex-direction: column;
16-
align-items: center;
17-
justify-content: center;
18-
font-size: calc(10px + 2vmin);
19-
color: white;
20-
}
21-
22-
.App-link {
23-
color: #61dafb;
24-
}
25-
26-
@keyframes App-logo-spin {
27-
from {
28-
transform: rotate(0deg);
29-
}
30-
to {
31-
transform: rotate(360deg);
32-
}
4+
.av-danger-zone p {
5+
margin-bottom: var(--space-2);
336
}

src/App.js

+94-19
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,101 @@
1-
import React from 'react';
2-
import logo from './logo.svg';
3-
import './App.css';
1+
import React from 'react'
2+
3+
import {
4+
Element,
5+
Button,
6+
ButtonGroup,
7+
Form,
8+
Heading,
9+
Input,
10+
InputGroup,
11+
Paragraph,
12+
ThemeProvider
13+
} from './react-ui'
14+
15+
import theme from './theme/theme.js'
16+
import './theme/theme.css'
17+
18+
import './App.css'
419

520
function App() {
621
return (
7-
<div className="App">
8-
<header className="App-header">
9-
<img src={logo} className="App-logo" alt="logo" />
10-
<p>
11-
Edit <code>src/App.js</code> and save to reload.
22+
<div className="av-App">
23+
<span role="img" aria-label="avocado">
24+
🥑
25+
</span>
26+
<br />
27+
<ThemeProvider theme={theme}>
28+
<Button>Clickity</Button>
29+
<br />
30+
<br />
31+
<ButtonGroup>
32+
<Button>Clickity</Button>
33+
<Button>Clickity</Button>
34+
<Button>Clickity</Button>
35+
</ButtonGroup>
36+
<br />
37+
<Element as="section" component="DangerZone">
38+
<Heading as="h4" css={{ marginBottom: 3 }}>
39+
Delete This Repo?
40+
</Heading>
41+
<Paragraph css={{ marginBottom: 2 }}>
42+
Are you sure you want to delete this repo?
43+
</Paragraph>
44+
<InputGroup>
45+
<Input placeholder="Enter name" />
46+
<Button>Clickity</Button>
47+
</InputGroup>
48+
</Element>
49+
<br />
50+
<Form className="inline">
51+
<InputGroup>
52+
<Input placeholder="username" />
53+
<Input placeholder="password" />
54+
<Button>Submit</Button>
55+
</InputGroup>
56+
</Form>
57+
</ThemeProvider>
58+
<br />
59+
<hr />
60+
<br />
61+
<span role="img" aria-label="avocado">
62+
🥑
63+
</span>
64+
<br />
65+
<button className="av-button">Clickity</button>
66+
<br />
67+
<br />
68+
<div className="av-button-group">
69+
<button className="av-button">Clickity</button>
70+
<button className="av-button">Clickity</button>
71+
<button className="av-button">Clickity</button>
72+
</div>
73+
<br />
74+
<section className="av-danger-zone">
75+
<h4 className="av-heading">Delete This Repo?</h4>
76+
<p className="av-paragraph">
77+
Are you sure you want to delete this repo?
1278
</p>
13-
<a
14-
className="App-link"
15-
href="https://reactjs.org"
16-
target="_blank"
17-
rel="noopener noreferrer"
18-
>
19-
Learn React
20-
</a>
21-
</header>
79+
<div className="av-input-group">
80+
<input type="text" className="av-input" placeholder="Enter name" />
81+
<button className="av-button">Clickity</button>
82+
</div>
83+
</section>
84+
<br />
85+
86+
<form className="av-form inline">
87+
<div className="av-input-group">
88+
<input
89+
css={{ width: '80px' }}
90+
className="av-input"
91+
placeholder="username"
92+
/>
93+
<input className="av-input" placeholder="password" />
94+
<button className="av-button">Submit</button>
95+
</div>
96+
</form>
2297
</div>
23-
);
98+
)
2499
}
25100

26-
export default App;
101+
export default App

src/App.test.js

-9
This file was deleted.

src/ds-tools/element.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import styled from '@emotion/styled'
2+
import { jsx } from '@emotion/core'
3+
import css from '@styled-system/css'
4+
import { withTheme } from 'emotion-theming'
5+
import { merge } from '@styled-system/core'
6+
7+
const BaseElement = styled('div')()
8+
9+
/** @jsx jsx */
10+
function Element({ css: styles, internalStyles, component, theme, ...props }) {
11+
theme.components = theme.components || {}
12+
13+
const merged = merge(
14+
merge(
15+
internalStyles || {}, // internal styles
16+
theme.components[component] || {} // theme styles
17+
),
18+
styles || {} // prop styles
19+
)
20+
21+
return <BaseElement css={css(merged)} {...props} />
22+
}
23+
24+
export default withTheme(Element)

src/ds-tools/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { ThemeProvider } from 'emotion-theming'
2+
import Element from './element'
3+
4+
export { Element, ThemeProvider }
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
'use strict'
2+
var path = require('path')
3+
var resolveFrom = require('resolve-from')
4+
var callerPath = require('caller-path')
5+
6+
module.exports = function(moduleId) {
7+
if (typeof moduleId !== 'string') {
8+
throw new TypeError('Expected a string')
9+
}
10+
11+
var filePath = resolveFrom(path.dirname(callerPath()), moduleId)
12+
13+
// delete itself from module parent
14+
if (require.cache[filePath] && require.cache[filePath].parent) {
15+
var i = require.cache[filePath].parent.children.length
16+
17+
while (i--) {
18+
if (require.cache[filePath].parent.children[i].id === filePath) {
19+
require.cache[filePath].parent.children.splice(i, 1)
20+
}
21+
}
22+
}
23+
24+
// delete module from cache
25+
delete require.cache[filePath]
26+
}

src/ds-tools/theme.css/cli-utils.js

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
const kebabCase = require('lodash/kebabCase')
2+
3+
function flattenNestedStyles(styles, className) {
4+
const stylesArray = []
5+
6+
const keys = Object.keys(styles)
7+
keys.forEach(function(key) {
8+
if (typeof styles[key] === 'object') {
9+
const nestedClassName = getFlatClassName(key, className)
10+
stylesArray.push({ selector: nestedClassName, styles: styles[key] })
11+
delete styles[key]
12+
}
13+
})
14+
15+
stylesArray.unshift({ selector: className, styles })
16+
17+
return stylesArray
18+
}
19+
20+
function getFlatClassName(selector, className) {
21+
return selector.replace('&', className)
22+
}
23+
24+
function objectToCss(styles) {
25+
const propertyNames = Object.keys(styles)
26+
const cssArray = propertyNames.map(function(key) {
27+
const property = kebabCase(key)
28+
29+
let value = styles[key]
30+
if (value && typeof value === 'number') value += 'px'
31+
32+
return `${property}: ${value};`
33+
})
34+
35+
return cssArray.join('\n ')
36+
}
37+
38+
module.exports = {
39+
flattenNestedStyles,
40+
getFlatClassName,
41+
objectToCss
42+
}

0 commit comments

Comments
 (0)