Skip to content

Commit 9d7bfbb

Browse files
authored
construct base layout (#14)
* replace font * construct layout and theme * add header menu handler * fix webpack config for prod
1 parent fe21d20 commit 9d7bfbb

17 files changed

+169
-950
lines changed

.eslintrc.js

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ module.exports = {
4444
'import/extensions': ['error', 'never'],
4545
'import/order': ['error', { 'newlines-between': 'always' }],
4646
'import/prefer-default-export': 0,
47-
'import/no-default-export': 'error',
4847
'react-hooks/exhaustive-deps': 'warn',
4948
'react-hooks/rules-of-hooks': 'error',
5049
'react/jsx-filename-extension': [1, { extensions: ['.tsx'] }],

.gitignore

+30
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,33 @@ typings/
6363
# dist
6464
storybook-static
6565
public
66+
### https://raw.github.com/github/gitignore/21e9f06539cdbc1ccbbb2ce59cd667be3e172fc8/Global/macOS.gitignore
67+
68+
# General
69+
.DS_Store
70+
.AppleDouble
71+
.LSOverride
72+
73+
# Icon must end with two \r
74+
Icon
75+
76+
# Thumbnails
77+
._*
78+
79+
# Files that might appear in the root of a volume
80+
.DocumentRevisions-V100
81+
.fseventsd
82+
.Spotlight-V100
83+
.TemporaryItems
84+
.Trashes
85+
.VolumeIcon.icns
86+
.com.apple.timemachine.donotpresent
87+
88+
# Directories potentially created on remote AFP share
89+
.AppleDB
90+
.AppleDesktop
91+
Network Trash Folder
92+
Temporary Items
93+
.apdisk
94+
95+

.storybook/config.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ import { withKnobs } from '@storybook/addon-knobs'
33
import '../src/index.less'
44

55
// automatically import all files ending in *.stories.tsx
6-
const req = require.context('../src/components', true, /.stories.tsx$/);
7-
function loadStories() {
8-
req.keys().forEach(filename => req(filename));
9-
}
10-
6+
const req = require.context('../src', true, /\.stories.tsx$/);
117
addDecorator(withKnobs)
12-
configure(loadStories, module);
8+
configure(req, module);

.storybook/webpack.config.ts

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import darkTheme from '@ant-design/dark-theme'
1+
import path from 'path'
2+
23
const config = {
34
module: {
45
rules: [
@@ -20,14 +21,22 @@ const config = {
2021
{
2122
loader: 'less-loader',
2223
// https://github.com/ant-design/ant-design/issues/7927
23-
options: { modifyVars: darkTheme, javascriptEnabled: true }
24+
options: { javascriptEnabled: true }
2425
}
2526
]
27+
},
28+
{
29+
test: /\.(woff|woff2|eot|ttf|svg)$/,
30+
loader: 'file-loader'
2631
}
2732
]
2833
},
2934
resolve: {
30-
extensions: ['.ts', '.tsx', '.js', '.jsx']
35+
extensions: ['.ts', '.tsx', '.js', '.jsx'],
36+
modules: [
37+
'./node_modules',
38+
path.resolve(__dirname, '..', 'src')
39+
]
3140
}
3241
}
3342

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"@storybook/cli": "5.2.8",
3939
"@storybook/react": "5.2.8",
4040
"@types/clean-webpack-plugin": "0.1.3",
41+
"@types/file-loader": "4.2.0",
4142
"@types/html-webpack-plugin": "3.2.1",
4243
"@types/jest": "24.0.24",
4344
"@types/mini-css-extract-plugin": "0.8.0",
@@ -66,6 +67,7 @@
6667
"eslint-plugin-prettier": "3.1.2",
6768
"eslint-plugin-react": "7.17.0",
6869
"eslint-plugin-react-hooks": "2.3.0",
70+
"file-loader": "5.0.2",
6971
"html-loader": "0.5.5",
7072
"html-webpack-plugin": "3.2.0",
7173
"husky": "3.1.0",
@@ -85,7 +87,6 @@
8587
"webpack-dev-server": "3.10.0"
8688
},
8789
"dependencies": {
88-
"@ant-design/dark-theme": "1.0.3",
8990
"antd": "3.26.3",
9091
"react": "16.12.0",
9192
"react-dom": "16.12.0",

src/assets/851MkPOP_002.ttf

1.63 MB
Binary file not shown.

src/components/button/index.stories.tsx

-9
This file was deleted.

src/components/button/index.tsx

-10
This file was deleted.

src/components/common/index.tsx

-13
This file was deleted.
+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import React, { ComponentProps } from 'react'
2+
import { Layout, Menu } from 'antd'
3+
import styled from 'styled-components'
4+
5+
const { Header: AntHeader } = Layout
6+
7+
const StyledHeader = styled(AntHeader)`
8+
display: flex;
9+
padding: 0 24px;
10+
align-items: center;
11+
`
12+
13+
const HeaderTitle = styled.h1`
14+
padding: 0;
15+
margin: 0;
16+
`
17+
18+
const StyledMenu = styled(Menu)`
19+
line-height: 64px;
20+
margin-right: 6vw;
21+
margin-left: auto;
22+
`
23+
24+
type Props = {
25+
title: string
26+
onTitleClick: () => void
27+
onMenuClick: ComponentProps<typeof Menu>['onClick']
28+
}
29+
30+
export const Header: React.FC<Props> = ({
31+
onTitleClick,
32+
onMenuClick,
33+
title,
34+
}) => {
35+
return (
36+
<StyledHeader>
37+
<HeaderTitle onClick={onTitleClick}>{title}</HeaderTitle>
38+
<StyledMenu
39+
mode="horizontal"
40+
defaultSelectedKeys={['1']}
41+
onClick={onMenuClick}
42+
>
43+
<Menu.Item key="1">日々</Menu.Item>
44+
<Menu.Item key="2">写真</Menu.Item>
45+
<Menu.Item key="3">私について</Menu.Item>
46+
</StyledMenu>
47+
</StyledHeader>
48+
)
49+
}

src/components/story/index.stories.tsx

-19
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import React from 'react'
2+
import { actions } from '@storybook/addon-actions'
3+
4+
import { Layout } from '.'
5+
6+
export default { title: 'template/Layout' }
7+
8+
export const withDefault = () => (
9+
<Layout
10+
title="日々是好日"
11+
onTitleClick={() => actions('onTitleClick')}
12+
onMenuClick={_clickParam => actions('onMenuClick')}
13+
>
14+
ここが描画部分です
15+
</Layout>
16+
)
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import React, { ComponentProps } from 'react'
2+
import { Layout as AntLayout } from 'antd'
3+
import styled from 'styled-components'
4+
5+
// import { Header } from '../../organisms/Header'
6+
7+
import { Header } from 'components/organisms/Header'
8+
9+
const { Content } = AntLayout
10+
11+
const StyledContent = styled(Content)`
12+
padding: 24px;
13+
`
14+
15+
type Props = ComponentProps<typeof Header>
16+
17+
export const Layout: React.FC<Props> = ({
18+
children,
19+
title,
20+
onTitleClick,
21+
onMenuClick,
22+
}) => {
23+
return (
24+
<AntLayout>
25+
<Header
26+
title={title}
27+
onTitleClick={onTitleClick}
28+
onMenuClick={onMenuClick}
29+
/>
30+
<StyledContent>{children}</StyledContent>
31+
</AntLayout>
32+
)
33+
}

0 commit comments

Comments
 (0)