diff --git a/browser/main/NoteList/NoteItemSimple.js b/browser/main/NoteList/NoteItemSimple.js new file mode 100644 index 00000000..3e66a43e --- /dev/null +++ b/browser/main/NoteList/NoteItemSimple.js @@ -0,0 +1,44 @@ +/** + * @fileoverview Note item component with simple display mode. + */ +import React, { PropTypes } from 'react' +import CSSModules from 'browser/lib/CSSModules' +import styles from './NoteList.styl' + +/** + * @description Note item component when using simple display mode. + * @param {boolean} isActive + * @param {Object} note + * @param {Function} handleNoteClick + * @param {Function} handleNoteContextMenu + */ +const NoteItemSimple = ({ isActive, note, handleNoteClick, handleNoteContextMenu }) => ( +
handleNoteClick(e, `${note.storage}-${note.key}`)} + onContextMenu={e => handleNoteContextMenu(e, `${note.storage}-${note.key}`)} + > +
+ {note.title.trim().length > 0 + ? note.title + : Empty + } +
+
+) + +NoteItemSimple.propTypes = { + isActive: PropTypes.bool.isRequired, + note: PropTypes.shape({ + storage: PropTypes.string.isRequired, + key: PropTypes.string.isRequired, + title: PropTypes.string.isrequired, + }), + handleNoteClick: PropTypes.func.isRequired, + handleNoteContextMenu: PropTypes.func.isRequired, +} + +export default CSSModules(NoteItemSimple, styles)