Skip to content

Commit

Permalink
Separate animition hoc to other repository (#16)
Browse files Browse the repository at this point in the history
* remove Animation Hoc and example

* remove build outDir

* update dependency

* rename all actionTypes to ActionTypes
  • Loading branch information
hapood committed Oct 25, 2017
1 parent 7933342 commit 6e64892
Show file tree
Hide file tree
Showing 33 changed files with 112 additions and 1,108 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.9.0 (Oct 16, 2017)
* Add typescript support (#13)
* Separate animition hoc to other repository (#15)

## 0.8.0 (Oct 16, 2017)
* Move async bundle loading of ArenaScene to ArenaSceneLoadMotion
* Rename ArenaSceneMotion to ArenaSceneLoadMotion
Expand Down
28 changes: 0 additions & 28 deletions example/AsyncLoadHOC/AsyncLoadHOC.jsx

This file was deleted.

20 changes: 0 additions & 20 deletions example/AsyncLoadHOC/LoadingPage/LoadingPage.jsx

This file was deleted.

3 changes: 0 additions & 3 deletions example/AsyncLoadHOC/LoadingPage/index.js

This file was deleted.

81 changes: 0 additions & 81 deletions example/AsyncLoadHOC/LoadingPage/styles.js

This file was deleted.

3 changes: 0 additions & 3 deletions example/AsyncLoadHOC/index.js

This file was deleted.

80 changes: 0 additions & 80 deletions example/AsyncLoadHOC/sceneAnimation.js

This file was deleted.

13 changes: 1 addition & 12 deletions example/frame/Frame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ class Frame extends Component {
}
componentWillMount() {
this.setState({
page: "emptyPage",
sceneBundleThunk: () => import("../scopedPage")
page: "emptyPage"
});
}

Expand Down Expand Up @@ -66,14 +65,6 @@ class Frame extends Component {
Module Re-Use
</a>
</li>
<li>
<a
style={linkStyle}
onClick={() => this.setState({ page: "asyncScopedPage" })}
>
Async Scoped Page
</a>
</li>
</ul>
<div style={{ display: "flex" }}>
<div style={{ marginLeft: "1rem" }}>total count: {cnt}</div>
Expand All @@ -93,8 +84,6 @@ class Frame extends Component {
<ArenaScene sceneBundle={passDownBundle} />
) : this.state.page === "moduleReUse" ? (
<ArenaScene sceneBundle={moduleReUseBundle} />
) : this.state.page === "asyncScopedPage" ? (
<AsyncLoadHOC sceneBundleThunk={this.state.sceneBundleThunk} />
) : null}
</div>
</div>
Expand Down
File renamed without changes.
File renamed without changes.
24 changes: 0 additions & 24 deletions index.d.ts.d.ts

This file was deleted.

25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,21 @@
"@types/react-redux": "^5.0.10",
"immutable": "^3.8.2",
"prop-types": "^15.6.0",
"react-motion": "^0.5.1",
"react-motion": "^0.5.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.15.6"
"redux-saga": "^0.16.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/enzyme": "^3.1.0",
"@types/enzyme": "^3.1.1",
"@types/enzyme-adapter-react-16": "^1.0.0",
"@types/mocha": "^2.2.43",
"@types/react": "^16.0.13",
"@types/react-dom": "^16.0.1",
"@types/react-dom": "^16.0.2",
"@types/sinon": "^2.3.6",
"chai": "^4.1.2",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"fs-extra": "^4.0.2",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.1",
Expand All @@ -61,18 +60,18 @@
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.7",
"karma-typescript": "^3.0.8",
"karma-verbose-reporter": "^0.0.6",
"karma-webpack": "^2.0.4",
"karma-webpack": "^2.0.5",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "16",
"sinon": "^4.0.0",
"ts-loader": "^3.0.3",
"sinon": "^4.0.1",
"ts-loader": "^3.0.5",
"typescript": "^2.5.3",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions src/hocs/ArenaSceneLoadMotion/AnimationPhases.ts

This file was deleted.

0 comments on commit 6e64892

Please sign in to comment.