This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports/ui/components/MemoItem.js | |
import React from 'react'; | |
export default class MemoItem extends React.Component { | |
constructor(props) { | |
super(props); | |
const { memo } = this.props; | |
this.state = { | |
textAreaValue: memo.content | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports/api/memos/memos.js | |
import { Mongo } from 'meteor/mongo'; | |
class MemosCollection extends Mongo.Collection { | |
insert(doc, callback) { | |
doc.createdAt = doc.createdAt || new Date(); | |
const result = super.insert(doc, callback); | |
return result; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports/ui/components/MemoItem.js | |
import React from 'react'; | |
export default class MemoItem extends React.Component { | |
constructor(props) { | |
super(props); | |
this.onClick = this.onClick.bind(this); | |
} | |
onClick(event) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports/ui/containers/AppContainer.js | |
import AppLayout from '../layouts/AppLayout'; | |
import { Memos } from '../../api/memos/memos'; | |
import { createContainer } from 'meteor/react-meteor-data'; | |
const createMemo = content => { | |
Memos.insert({content}); | |
}; | |
export default createContainer(() => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports/ui/layouts/AppLayout.js | |
import React from 'react'; | |
import Header from '../components/Header'; | |
import MemoList from '../components/MemoList'; | |
export default class AppLayout extends React.Component { | |
static get propTypes() { | |
return { | |
memos: React.PropTypes.array.isRequired, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p imports/api/memos | |
touch imports/api/memos/memos.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
touch imports/ui/components/MemoItem.js | |
touch imports/ui/components/MemoList.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p imports/ui/components | |
touch imports/ui/components/Header.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p imports/ui/layouts | |
touch imports/ui/layouts/AppLayout.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meteor npm install --save react react-dom | |
meteor add [email protected] |