summaryrefslogtreecommitdiff
path: root/animism-align/frontend/views/timestamp/containers/timestamp.new.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-07-04 16:37:19 +0200
committerJules Laplace <julescarbon@gmail.com>2020-07-04 16:37:19 +0200
commite973412b5ea29685f4fa260d8eb44baae095fb81 (patch)
tree0e859ab0541187ed769e654663730834b998f3d1 /animism-align/frontend/views/timestamp/containers/timestamp.new.js
parent3e1c6f81bbdad758b8756955fce82da49a564611 (diff)
rename timestamp to annotation
Diffstat (limited to 'animism-align/frontend/views/timestamp/containers/timestamp.new.js')
-rw-r--r--animism-align/frontend/views/timestamp/containers/timestamp.new.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/animism-align/frontend/views/timestamp/containers/timestamp.new.js b/animism-align/frontend/views/timestamp/containers/timestamp.new.js
deleted file mode 100644
index be96bf5..0000000
--- a/animism-align/frontend/views/timestamp/containers/timestamp.new.js
+++ /dev/null
@@ -1,44 +0,0 @@
-import React, { Component } from 'react'
-import { Link } from 'react-router-dom'
-import { connect } from 'react-redux'
-
-import { history } from '../../../store'
-import actions from '../../../actions'
-
-import GraphForm from '../components/graph.form'
-
-class GraphNew extends Component {
- handleSubmit(data) {
- console.log(data)
- actions.graph.create(data)
- .then(res => {
- console.log(res)
- if (res.res && res.res.id) {
- history.push('/' + res.res.path)
- }
- })
- .catch(err => {
- console.error('error')
- })
- }
-
- render() {
- return (
- <GraphForm
- isNew
- data={{}}
- onSubmit={this.handleSubmit.bind(this)}
- />
- )
- }
-}
-
-const mapStateToProps = state => ({
- graph: state.graph,
-})
-
-const mapDispatchToProps = dispatch => ({
- // searchActions: bindActionCreators({ ...searchActions }, dispatch),
-})
-
-export default connect(mapStateToProps, mapDispatchToProps)(GraphNew)