Skip to content
This repository was archived by the owner on Jul 12, 2019. It is now read-only.

Commit b6ddb7d

Browse files
committedOct 23, 2018
Add basic routing skeleton with cycle.js and jsx
1 parent 4e29a29 commit b6ddb7d

File tree

8 files changed

+1297
-6
lines changed

8 files changed

+1297
-6
lines changed
 

‎.babelrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"chrome": "58"
8+
},
9+
"useBuiltIns": "entry"
10+
}
11+
]
12+
],
13+
"plugins": [
14+
"syntax-jsx",
15+
["transform-react-jsx", {"pragma": "Snabbdom.createElement"}]
16+
]
17+
}

‎package-lock.json

+1,163-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+14
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,24 @@
2121
},
2222
"homepage": "https://github.com/sarimarton/dazn-assignment-cyclejs#readme",
2323
"devDependencies": {
24+
"@babel/core": "^7.1.2",
25+
"@babel/preset-env": "^7.1.0",
26+
"@types/history": "^4.7.2",
27+
"babel-loader": "^8.0.4",
2428
"clean-webpack-plugin": "^0.1.19",
2529
"html-webpack-plugin": "^3.2.0",
2630
"webpack": "^4.22.0",
2731
"webpack-cli": "^3.1.2",
2832
"webpack-dev-server": "^3.1.9"
33+
},
34+
"dependencies": {
35+
"@cycle/dom": "^22.0.0",
36+
"@cycle/history": "^7.0.0",
37+
"@cycle/run": "^5.1.0",
38+
"babel-plugin-transform-react-jsx": "^6.24.1",
39+
"cyclic-router": "^5.1.7",
40+
"snabbdom-pragma": "^2.7.0",
41+
"switch-path": "^1.2.0",
42+
"xstream": "^11.7.0"
2943
}
3044
}

‎src/home/home.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import xs from 'xstream';
2+
import { run } from '@cycle/run';
3+
import { makeDOMDriver, div, input, p } from '@cycle/dom';
4+
import Snabbdom from 'snabbdom-pragma';
5+
import { routerify } from 'cyclic-router';
6+
import { makeHistoryDriver } from '@cycle/history';
7+
import switchPath from 'switch-path';
8+
9+
export function HomeComponent(sources) {
10+
return {
11+
DOM: xs.of(
12+
<div>
13+
Home Page
14+
</div>
15+
)
16+
};
17+
}

‎src/index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title><%= htmlWebpackPlugin.options.title %></title>
6+
</head>
7+
<body>
8+
<div id="app"></div>
9+
</body>
10+
</html>

‎src/index.js

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import xs from 'xstream';
2+
import { run } from '@cycle/run';
3+
import { makeDOMDriver, div, input, p } from '@cycle/dom';
4+
import Snabbdom from 'snabbdom-pragma';
5+
import { routerify } from 'cyclic-router';
6+
import { makeHistoryDriver } from '@cycle/history';
7+
import switchPath from 'switch-path';
8+
9+
import { HomeComponent } from './home/home.js';
10+
import { ItemComponent } from './item/item.js';
11+
12+
function main(sources) {
13+
const homePageClick$ = sources.DOM.select('.home').events('click');
14+
15+
const match$ = sources.router.define({
16+
'/': HomeComponent,
17+
'/item': ItemComponent
18+
});
19+
20+
const page$ = match$.map(
21+
({ path, value: page }) =>
22+
page({
23+
...sources,
24+
router: sources.router.path(path)
25+
})
26+
);
27+
28+
return {
29+
DOM: page$.map(c => c.DOM).flatten(),
30+
router: xs.merge(
31+
homePageClick$.mapTo('/')
32+
)
33+
};
34+
}
35+
36+
const mainWithRouting = routerify(main, switchPath);
37+
const drivers = {
38+
DOM: makeDOMDriver('#app'),
39+
history: makeHistoryDriver()
40+
};
41+
42+
run(mainWithRouting, drivers);

‎src/item/item.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import xs from 'xstream';
2+
import { run } from '@cycle/run';
3+
import { makeDOMDriver, div, input, p } from '@cycle/dom';
4+
import Snabbdom from 'snabbdom-pragma';
5+
import { routerify } from 'cyclic-router';
6+
import { makeHistoryDriver } from '@cycle/history';
7+
import switchPath from 'switch-path';
8+
9+
export function ItemComponent(sources) {
10+
return {
11+
DOM: xs.of(
12+
<div>
13+
<button className={'home'}>Go To Home</button>
14+
<br />
15+
Item
16+
</div>
17+
)
18+
};
19+
}

‎webpack.config.js

+15-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,27 @@ module.exports = {
88
},
99
devtool: 'inline-source-map',
1010
devServer: {
11-
contentBase: './dist'
11+
contentBase: './dist',
12+
historyApiFallback: true
1213
},
1314
plugins: [
1415
new CleanWebpackPlugin(['dist']),
1516
new HtmlWebpackPlugin({
16-
title: 'Development'
17+
title: 'A simple TMDb UI',
18+
template: './src/index.html'
1719
})
1820
],
21+
module: {
22+
rules: [
23+
{
24+
test: /\.js$/,
25+
exclude: /node_modules/,
26+
use: {
27+
loader: 'babel-loader'
28+
}
29+
}
30+
]
31+
},
1932
output: {
2033
filename: '[name].bundle.js',
2134
path: path.resolve(__dirname, 'dist'),

0 commit comments

Comments
 (0)
This repository has been archived.