2020-10-09 19:35:46 +02:00
import { AppState } from '../../app' ;
2020-11-07 17:59:37 +02:00
import eventManager from '@joplin/lib/eventManager' ;
2020-10-09 19:35:46 +02:00
import NoteListUtils from '../utils/NoteListUtils' ;
2020-11-07 17:59:37 +02:00
import { _ } from '@joplin/lib/locale' ;
2020-11-17 13:50:46 +02:00
import time from '@joplin/lib/time' ;
import BaseModel from '@joplin/lib/BaseModel' ;
import bridge from '../../services/bridge' ;
import Setting from '@joplin/lib/models/Setting' ;
import NoteListItem from '../NoteListItem' ;
import CommandService from '@joplin/lib/services/CommandService.js' ;
import shim from '@joplin/lib/shim' ;
import styled from 'styled-components' ;
import { themeStyle } from '@joplin/lib/theme' ;
2017-11-05 02:17:48 +02:00
const React = require ( 'react' ) ;
2020-11-17 13:50:46 +02:00
const { ItemList } = require ( '../ItemList.min.js' ) ;
2017-11-05 02:17:48 +02:00
const { connect } = require ( 'react-redux' ) ;
2020-11-07 17:59:37 +02:00
const Note = require ( '@joplin/lib/models/Note' ) ;
2020-11-17 13:50:46 +02:00
const Folder = require ( '@joplin/lib/models/Folder' ) ;
2020-07-03 23:32:39 +02:00
const commands = [
require ( './commands/focusElementNoteList' ) ,
] ;
2017-11-04 18:40:34 +02:00
2020-09-15 15:01:07 +02:00
const StyledRoot = styled . div `
width : 100 % ;
height : 100 % ;
2020-11-12 21:13:28 +02:00
background - color : $ { ( props : any ) = > props . theme . backgroundColor3 } ;
border - right : 1px solid $ { ( props : any ) = > props . theme . dividerColor } ;
2020-09-15 15:01:07 +02:00
` ;
2017-11-04 18:40:34 +02:00
class NoteListComponent extends React . Component {
2018-11-21 21:50:50 +02:00
constructor ( ) {
super ( ) ;
2020-07-03 23:32:39 +02:00
CommandService . instance ( ) . componentRegisterCommands ( this , commands ) ;
2020-05-27 18:21:46 +02:00
this . itemHeight = 34 ;
this . state = {
dragOverTargetNoteIndex : null ,
2020-09-15 15:01:07 +02:00
width : 0 ,
height : 0 ,
2020-05-27 18:21:46 +02:00
} ;
2020-09-15 15:01:07 +02:00
this . noteListRef = React . createRef ( ) ;
2019-01-25 21:59:36 +02:00
this . itemListRef = React . createRef ( ) ;
this . itemAnchorRefs_ = { } ;
2020-09-15 15:01:07 +02:00
this . renderItem = this . renderItem . bind ( this ) ;
2019-01-25 21:59:36 +02:00
this . onKeyDown = this . onKeyDown . bind ( this ) ;
2020-05-27 18:21:46 +02:00
this . noteItem_titleClick = this . noteItem_titleClick . bind ( this ) ;
this . noteItem_noteDragOver = this . noteItem_noteDragOver . bind ( this ) ;
this . noteItem_noteDrop = this . noteItem_noteDrop . bind ( this ) ;
this . noteItem_checkboxClick = this . noteItem_checkboxClick . bind ( this ) ;
this . noteItem_dragStart = this . noteItem_dragStart . bind ( this ) ;
this . onGlobalDrop_ = this . onGlobalDrop_ . bind ( this ) ;
this . registerGlobalDragEndEvent_ = this . registerGlobalDragEndEvent_ . bind ( this ) ;
this . unregisterGlobalDragEndEvent_ = this . unregisterGlobalDragEndEvent_ . bind ( this ) ;
2020-06-06 16:47:02 +02:00
this . itemContextMenu = this . itemContextMenu . bind ( this ) ;
2020-09-15 15:01:07 +02:00
this . resizableLayout_resize = this . resizableLayout_resize . bind ( this ) ;
2018-11-21 21:50:50 +02:00
}
2017-11-09 21:21:10 +02:00
style() {
2020-09-15 15:01:07 +02:00
if ( this . styleCache_ && this . styleCache_ [ this . props . themeId ] ) return this . styleCache_ [ this . props . themeId ] ;
2017-11-09 21:21:10 +02:00
2020-09-15 15:01:07 +02:00
const theme = themeStyle ( this . props . themeId ) ;
2019-11-06 23:46:26 +02:00
2020-03-14 01:46:14 +02:00
const style = {
2017-11-09 21:21:10 +02:00
root : {
backgroundColor : theme.backgroundColor ,
} ,
listItem : {
2020-05-27 18:21:46 +02:00
maxWidth : '100%' ,
height : this.itemHeight ,
2017-11-09 21:21:10 +02:00
boxSizing : 'border-box' ,
display : 'flex' ,
2017-11-10 22:11:48 +02:00
alignItems : 'stretch' ,
2017-11-09 21:21:10 +02:00
backgroundColor : theme.backgroundColor ,
2019-09-19 23:51:18 +02:00
borderBottom : ` 1px solid ${ theme . dividerColor } ` ,
2017-11-09 21:21:10 +02:00
} ,
listItemSelected : {
backgroundColor : theme.selectedColor ,
} ,
2017-11-10 22:11:48 +02:00
listItemTitle : {
fontFamily : theme.fontFamily ,
fontSize : theme.fontSize ,
textDecoration : 'none' ,
color : theme.color ,
cursor : 'default' ,
whiteSpace : 'nowrap' ,
flex : 1 ,
display : 'flex' ,
alignItems : 'center' ,
overflow : 'hidden' ,
} ,
2017-11-10 22:12:38 +02:00
listItemTitleCompleted : {
opacity : 0.5 ,
textDecoration : 'line-through' ,
} ,
2017-11-09 21:21:10 +02:00
} ;
2020-05-27 18:21:46 +02:00
this . styleCache_ = { } ;
2020-09-15 15:01:07 +02:00
this . styleCache_ [ this . props . themeId ] = style ;
2020-05-27 18:21:46 +02:00
2017-11-09 21:21:10 +02:00
return style ;
}
2020-11-12 21:13:28 +02:00
itemContextMenu ( event : any ) {
2018-01-09 22:16:09 +02:00
const currentItemId = event . currentTarget . getAttribute ( 'data-id' ) ;
if ( ! currentItemId ) return ;
let noteIds = [ ] ;
if ( this . props . selectedNoteIds . indexOf ( currentItemId ) < 0 ) {
noteIds = [ currentItemId ] ;
} else {
noteIds = this . props . selectedNoteIds ;
}
2017-11-22 20:35:31 +02:00
if ( ! noteIds . length ) return ;
2017-11-08 19:51:55 +02:00
2019-01-29 20:02:34 +02:00
const menu = NoteListUtils . makeContextMenu ( noteIds , {
notes : this.props.notes ,
dispatch : this.props.dispatch ,
2020-01-06 23:16:39 +02:00
watchedNoteFiles : this.props.watchedNoteFiles ,
2020-10-09 19:35:46 +02:00
plugins : this.props.plugins ,
2020-11-17 13:50:46 +02:00
inConflictFolder : this.props.selectedFolderId === Folder . conflictFolderId ( ) ,
2019-01-29 20:02:34 +02:00
} ) ;
2017-11-10 22:34:36 +02:00
2017-11-08 19:51:55 +02:00
menu . popup ( bridge ( ) . window ( ) ) ;
}
2020-05-27 18:21:46 +02:00
onGlobalDrop_() {
this . unregisterGlobalDragEndEvent_ ( ) ;
this . setState ( { dragOverTargetNoteIndex : null } ) ;
}
2018-11-21 21:50:50 +02:00
2020-05-27 18:21:46 +02:00
registerGlobalDragEndEvent_() {
if ( this . globalDragEndEventRegistered_ ) return ;
this . globalDragEndEventRegistered_ = true ;
document . addEventListener ( 'dragend' , this . onGlobalDrop_ ) ;
}
2017-11-05 01:27:13 +02:00
2020-05-27 18:21:46 +02:00
unregisterGlobalDragEndEvent_() {
this . globalDragEndEventRegistered_ = false ;
document . removeEventListener ( 'dragend' , this . onGlobalDrop_ ) ;
}
2018-06-10 02:27:20 +02:00
2020-11-12 21:13:28 +02:00
dragTargetNoteIndex_ ( event : any ) {
2020-09-15 15:01:07 +02:00
return Math . abs ( Math . round ( ( event . clientY - this . itemListRef . current . offsetTop ( ) + this . itemListRef . current . offsetScroll ( ) ) / this . itemHeight ) ) ;
2020-05-27 18:21:46 +02:00
}
2018-06-10 02:27:20 +02:00
2020-11-12 21:13:28 +02:00
noteItem_noteDragOver ( event : any ) {
2020-05-27 18:21:46 +02:00
if ( this . props . notesParentType !== 'Folder' ) return ;
2019-07-29 14:13:23 +02:00
2020-05-27 18:21:46 +02:00
const dt = event . dataTransfer ;
2017-11-22 21:20:19 +02:00
2020-05-27 18:21:46 +02:00
if ( dt . types . indexOf ( 'text/x-jop-note-ids' ) >= 0 ) {
event . preventDefault ( ) ;
const newIndex = this . dragTargetNoteIndex_ ( event ) ;
if ( this . state . dragOverTargetNoteIndex === newIndex ) return ;
this . registerGlobalDragEndEvent_ ( ) ;
this . setState ( { dragOverTargetNoteIndex : newIndex } ) ;
}
}
2017-11-10 22:11:48 +02:00
2020-11-12 21:13:28 +02:00
async noteItem_noteDrop ( event : any ) {
2020-05-27 18:21:46 +02:00
if ( this . props . notesParentType !== 'Folder' ) return ;
2017-11-10 22:11:48 +02:00
2020-05-27 18:21:46 +02:00
if ( this . props . noteSortOrder !== 'order' ) {
const doIt = await bridge ( ) . showConfirmMessageBox ( _ ( 'To manually sort the notes, the sort order must be changed to "%s" in the menu "%s" > "%s"' , _ ( 'Custom order' ) , _ ( 'View' ) , _ ( 'Sort notes by' ) ) , {
buttons : [ _ ( 'Do it now' ) , _ ( 'Cancel' ) ] ,
} ) ;
if ( ! doIt ) return ;
Setting . setValue ( 'notes.sortOrder.field' , 'order' ) ;
return ;
2018-03-20 01:04:48 +02:00
}
2020-05-27 18:21:46 +02:00
// TODO: check that parent type is folder
2018-01-12 21:58:01 +02:00
2020-05-27 18:21:46 +02:00
const dt = event . dataTransfer ;
this . unregisterGlobalDragEndEvent_ ( ) ;
this . setState ( { dragOverTargetNoteIndex : null } ) ;
2017-11-08 19:51:55 +02:00
2020-05-27 18:21:46 +02:00
const targetNoteIndex = this . dragTargetNoteIndex_ ( event ) ;
const noteIds = JSON . parse ( dt . getData ( 'text/x-jop-note-ids' ) ) ;
2018-12-14 00:57:14 +02:00
2020-05-27 18:21:46 +02:00
Note . insertNotesAt ( this . props . selectedFolderId , noteIds , targetNoteIndex ) ;
}
2018-12-14 00:57:14 +02:00
2020-11-12 21:13:28 +02:00
async noteItem_checkboxClick ( event : any , item : any ) {
2020-05-27 18:21:46 +02:00
const checked = event . target . checked ;
const newNote = {
id : item.id ,
todo_completed : checked ? time . unixMs ( ) : 0 ,
} ;
await Note . save ( newNote , { userSideValidation : true } ) ;
eventManager . emit ( 'todoToggle' , { noteId : item.id , note : newNote } ) ;
}
2020-11-12 21:13:28 +02:00
async noteItem_titleClick ( event : any , item : any ) {
2020-05-27 18:21:46 +02:00
if ( event . ctrlKey || event . metaKey ) {
event . preventDefault ( ) ;
this . props . dispatch ( {
type : 'NOTE_SELECT_TOGGLE' ,
id : item.id ,
} ) ;
} else if ( event . shiftKey ) {
event . preventDefault ( ) ;
this . props . dispatch ( {
type : 'NOTE_SELECT_EXTEND' ,
id : item.id ,
} ) ;
} else {
this . props . dispatch ( {
type : 'NOTE_SELECT' ,
id : item.id ,
} ) ;
}
}
2020-11-12 21:13:28 +02:00
noteItem_dragStart ( event : any ) {
2020-05-27 18:21:46 +02:00
let noteIds = [ ] ;
2018-03-20 01:04:48 +02:00
2020-05-27 18:21:46 +02:00
// Here there is two cases:
// - If multiple notes are selected, we drag the group
// - If only one note is selected, we drag the note that was clicked on (which might be different from the currently selected note)
if ( this . props . selectedNoteIds . length >= 2 ) {
noteIds = this . props . selectedNoteIds ;
2018-03-20 01:04:48 +02:00
} else {
2020-05-27 18:21:46 +02:00
const clickedNoteId = event . currentTarget . getAttribute ( 'data-id' ) ;
if ( clickedNoteId ) noteIds . push ( clickedNoteId ) ;
2018-03-20 01:04:48 +02:00
}
2020-05-27 18:21:46 +02:00
if ( ! noteIds . length ) return ;
event . dataTransfer . setDragImage ( new Image ( ) , 1 , 1 ) ;
event . dataTransfer . clearData ( ) ;
event . dataTransfer . setData ( 'text/x-jop-note-ids' , JSON . stringify ( noteIds ) ) ;
}
2020-11-12 21:13:28 +02:00
renderItem ( item : any , index : number ) {
2020-05-27 18:21:46 +02:00
const highlightedWords = ( ) = > {
if ( this . props . notesParentType === 'Search' ) {
const query = BaseModel . byId ( this . props . searches , this . props . selectedSearchId ) ;
if ( query ) {
2020-09-06 14:07:00 +02:00
return this . props . highlightedWords ;
2020-05-27 18:21:46 +02:00
}
}
return [ ] ;
2018-11-21 21:50:50 +02:00
} ;
2019-01-25 21:59:36 +02:00
if ( ! this . itemAnchorRefs_ [ item . id ] ) this . itemAnchorRefs_ [ item . id ] = React . createRef ( ) ;
const ref = this . itemAnchorRefs_ [ item . id ] ;
2020-05-27 18:21:46 +02:00
return < NoteListItem
ref = { ref }
key = { item . id }
2020-09-15 15:01:07 +02:00
style = { this . style ( ) }
2020-05-27 18:21:46 +02:00
item = { item }
index = { index }
2020-09-15 15:01:07 +02:00
themeId = { this . props . themeId }
width = { this . state . width }
height = { this . itemHeight }
2020-05-27 18:21:46 +02:00
dragItemIndex = { this . state . dragOverTargetNoteIndex }
highlightedWords = { highlightedWords ( ) }
isProvisional = { this . props . provisionalNoteIds . includes ( item . id ) }
isSelected = { this . props . selectedNoteIds . indexOf ( item . id ) >= 0 }
isWatched = { this . props . watchedNoteFiles . indexOf ( item . id ) < 0 }
itemCount = { this . props . notes . length }
onCheckboxClick = { this . noteItem_checkboxClick }
onDragStart = { this . noteItem_dragStart }
onNoteDragOver = { this . noteItem_noteDragOver }
onNoteDrop = { this . noteItem_noteDrop }
onTitleClick = { this . noteItem_titleClick }
2020-06-06 16:47:02 +02:00
onContextMenu = { this . itemContextMenu }
2020-05-27 18:21:46 +02:00
/ > ;
2017-11-04 18:40:34 +02:00
}
2020-11-12 21:13:28 +02:00
itemAnchorRef ( itemId : string ) {
2019-01-25 21:59:36 +02:00
if ( this . itemAnchorRefs_ [ itemId ] && this . itemAnchorRefs_ [ itemId ] . current ) return this . itemAnchorRefs_ [ itemId ] . current ;
return null ;
}
2020-11-12 21:13:28 +02:00
componentDidUpdate ( prevProps : any ) {
2019-01-29 20:32:52 +02:00
if ( prevProps . selectedNoteIds !== this . props . selectedNoteIds && this . props . selectedNoteIds . length === 1 ) {
const id = this . props . selectedNoteIds [ 0 ] ;
2020-03-11 19:08:35 +02:00
const doRefocus = this . props . notes . length < prevProps . notes . length ;
2019-01-29 20:32:52 +02:00
for ( let i = 0 ; i < this . props . notes . length ; i ++ ) {
if ( this . props . notes [ i ] . id === id ) {
this . itemListRef . current . makeItemIndexVisible ( i ) ;
2020-03-11 19:08:35 +02:00
if ( doRefocus ) {
const ref = this . itemAnchorRef ( id ) ;
if ( ref ) ref . focus ( ) ;
}
2019-01-29 20:32:52 +02:00
break ;
2019-07-29 14:13:23 +02:00
}
2019-01-29 20:32:52 +02:00
}
}
2020-09-15 15:01:07 +02:00
if ( prevProps . visible !== this . props . visible ) {
this . updateSizeState ( ) ;
}
2019-01-26 20:04:32 +02:00
}
2020-11-12 21:13:28 +02:00
scrollNoteIndex_ ( keyCode : any , ctrlKey : any , metaKey : any , noteIndex : any ) {
2020-02-06 11:38:33 +02:00
if ( keyCode === 33 ) {
// Page Up
noteIndex -= ( this . itemListRef . current . visibleItemCount ( ) - 1 ) ;
} else if ( keyCode === 34 ) {
// Page Down
noteIndex += ( this . itemListRef . current . visibleItemCount ( ) - 1 ) ;
} else if ( ( keyCode === 35 && ctrlKey ) || ( keyCode === 40 && metaKey ) ) {
// CTRL+End, CMD+Down
noteIndex = this . props . notes . length - 1 ;
} else if ( ( keyCode === 36 && ctrlKey ) || ( keyCode === 38 && metaKey ) ) {
// CTRL+Home, CMD+Up
noteIndex = 0 ;
} else if ( keyCode === 38 && ! metaKey ) {
// Up
noteIndex -= 1 ;
} else if ( keyCode === 40 && ! metaKey ) {
// Down
noteIndex += 1 ;
}
if ( noteIndex < 0 ) noteIndex = 0 ;
if ( noteIndex > this . props . notes . length - 1 ) noteIndex = this . props . notes . length - 1 ;
return noteIndex ;
}
2020-11-12 21:13:28 +02:00
async onKeyDown ( event : any ) {
2019-01-25 21:59:36 +02:00
const keyCode = event . keyCode ;
const noteIds = this . props . selectedNoteIds ;
2019-01-26 17:15:16 +02:00
2020-03-11 19:08:35 +02:00
if ( noteIds . length > 0 && ( keyCode === 40 || keyCode === 38 || keyCode === 33 || keyCode === 34 || keyCode === 35 || keyCode == 36 ) ) {
2020-02-06 11:38:33 +02:00
// DOWN / UP / PAGEDOWN / PAGEUP / END / HOME
2019-01-25 21:59:36 +02:00
const noteId = noteIds [ 0 ] ;
let noteIndex = BaseModel . modelIndexById ( this . props . notes , noteId ) ;
2020-02-06 11:38:33 +02:00
noteIndex = this . scrollNoteIndex_ ( keyCode , event . ctrlKey , event . metaKey , noteIndex ) ;
2019-01-25 21:59:36 +02:00
const newSelectedNote = this . props . notes [ noteIndex ] ;
this . props . dispatch ( {
type : 'NOTE_SELECT' ,
id : newSelectedNote.id ,
} ) ;
this . itemListRef . current . makeItemIndexVisible ( noteIndex ) ;
2019-01-26 17:33:45 +02:00
this . focusNoteId_ ( newSelectedNote . id ) ;
2019-01-25 21:59:36 +02:00
event . preventDefault ( ) ;
}
2019-01-26 17:15:16 +02:00
2019-07-29 14:13:23 +02:00
if ( noteIds . length && ( keyCode === 46 || ( keyCode === 8 && event . metaKey ) ) ) {
// DELETE / CMD+Backspace
2019-01-26 17:15:16 +02:00
event . preventDefault ( ) ;
2019-01-29 20:02:34 +02:00
await NoteListUtils . confirmDeleteNotes ( noteIds ) ;
2019-01-26 17:15:16 +02:00
}
2019-01-26 17:33:45 +02:00
2019-07-29 14:13:23 +02:00
if ( noteIds . length && keyCode === 32 ) {
// SPACE
2019-01-26 17:33:45 +02:00
event . preventDefault ( ) ;
const notes = BaseModel . modelsByIds ( this . props . notes , noteIds ) ;
2020-11-12 21:13:28 +02:00
const todos = notes . filter ( ( n : any ) = > ! ! n . is_todo ) ;
2019-01-26 17:33:45 +02:00
if ( ! todos . length ) return ;
for ( let i = 0 ; i < todos . length ; i ++ ) {
const toggledTodo = Note . toggleTodoCompleted ( todos [ i ] ) ;
await Note . save ( toggledTodo ) ;
}
this . focusNoteId_ ( todos [ 0 ] . id ) ;
}
2019-01-26 20:04:32 +02:00
2019-07-29 14:13:23 +02:00
if ( keyCode === 9 ) {
// TAB
2019-01-26 20:04:32 +02:00
event . preventDefault ( ) ;
if ( event . shiftKey ) {
2020-11-25 16:40:25 +02:00
void CommandService . instance ( ) . execute ( 'focusElement' , 'sideBar' ) ;
2019-01-26 20:04:32 +02:00
} else {
2020-11-25 16:40:25 +02:00
void CommandService . instance ( ) . execute ( 'focusElement' , 'noteTitle' ) ;
2019-01-26 20:04:32 +02:00
}
}
2020-02-04 23:55:06 +02:00
if ( event . keyCode === 65 && ( event . ctrlKey || event . metaKey ) ) {
// Ctrl+A key
event . preventDefault ( ) ;
this . props . dispatch ( {
type : 'NOTE_SELECT_ALL' ,
} ) ;
}
2019-01-26 17:33:45 +02:00
}
2020-11-12 21:13:28 +02:00
focusNoteId_ ( noteId : string ) {
2019-01-26 17:33:45 +02:00
// - We need to focus the item manually otherwise focus might be lost when the
// list is scrolled and items within it are being rebuilt.
// - We need to use an interval because when leaving the arrow pressed, the rendering
// of items might lag behind and so the ref is not yet available at this point.
if ( ! this . itemAnchorRef ( noteId ) ) {
2020-10-09 19:35:46 +02:00
if ( this . focusItemIID_ ) shim . clearInterval ( this . focusItemIID_ ) ;
this . focusItemIID_ = shim . setInterval ( ( ) = > {
2019-01-26 17:33:45 +02:00
if ( this . itemAnchorRef ( noteId ) ) {
this . itemAnchorRef ( noteId ) . focus ( ) ;
2020-10-09 19:35:46 +02:00
shim . clearInterval ( this . focusItemIID_ ) ;
2019-01-26 17:33:45 +02:00
this . focusItemIID_ = null ;
}
} , 10 ) ;
} else {
this . itemAnchorRef ( noteId ) . focus ( ) ;
}
2019-01-25 21:59:36 +02:00
}
2020-09-15 15:01:07 +02:00
updateSizeState() {
this . setState ( {
width : this.noteListRef.current.clientWidth ,
height : this.noteListRef.current.clientHeight ,
} ) ;
}
resizableLayout_resize() {
this . updateSizeState ( ) ;
}
componentDidMount() {
this . props . resizableLayoutEventEmitter . on ( 'resize' , this . resizableLayout_resize ) ;
this . updateSizeState ( ) ;
}
2019-01-25 21:59:36 +02:00
componentWillUnmount() {
if ( this . focusItemIID_ ) {
2020-10-09 19:35:46 +02:00
shim . clearInterval ( this . focusItemIID_ ) ;
2019-01-25 21:59:36 +02:00
this . focusItemIID_ = null ;
}
2020-07-03 23:32:39 +02:00
2020-09-15 15:01:07 +02:00
this . props . resizableLayoutEventEmitter . off ( 'resize' , this . resizableLayout_resize ) ;
2020-07-03 23:32:39 +02:00
CommandService . instance ( ) . componentUnregisterCommands ( commands ) ;
2019-01-25 21:59:36 +02:00
}
2020-09-15 15:01:07 +02:00
renderEmptyList() {
if ( this . props . notes . length ) return null ;
const theme = themeStyle ( this . props . themeId ) ;
const padding = 10 ;
const emptyDivStyle = {
padding : ` ${ padding } px ` ,
fontSize : theme.fontSize ,
color : theme.color ,
backgroundColor : theme.backgroundColor ,
fontFamily : theme.fontFamily ,
} ;
// emptyDivStyle.width = emptyDivStyle.width - padding * 2;
// emptyDivStyle.height = emptyDivStyle.height - padding * 2;
return < div style = { emptyDivStyle } > { this . props . folders . length ? _ ( 'No notes in here. Create one by clicking on "New note".' ) : _ ( 'There is currently no notebook. Create one by clicking on "New notebook".' ) } < / div > ;
}
2017-11-08 19:51:55 +02:00
2020-11-12 21:13:28 +02:00
renderItemList ( style : any ) {
2020-09-15 15:01:07 +02:00
if ( ! this . props . notes . length ) return null ;
return (
< ItemList
ref = { this . itemListRef }
disabled = { this . props . isInsertingNotes }
itemHeight = { this . style ( ) . listItem . height }
className = { 'note-list' }
items = { this . props . notes }
style = { style }
itemRenderer = { this . renderItem }
onKeyDown = { this . onKeyDown }
/ >
) ;
}
render() {
if ( ! this . props . size ) throw new Error ( 'props.size is required' ) ;
return (
< StyledRoot ref = { this . noteListRef } >
{ this . renderEmptyList ( ) }
{ this . renderItemList ( this . props . size ) }
< / StyledRoot >
) ;
2017-11-04 18:40:34 +02:00
}
}
2020-11-12 21:13:28 +02:00
const mapStateToProps = ( state : AppState ) = > {
2017-11-04 18:40:34 +02:00
return {
2017-11-05 01:27:13 +02:00
notes : state.notes ,
2017-12-07 15:16:38 +02:00
folders : state.folders ,
2017-11-22 20:35:31 +02:00
selectedNoteIds : state.selectedNoteIds ,
2020-05-27 18:21:46 +02:00
selectedFolderId : state.selectedFolderId ,
2020-09-15 15:01:07 +02:00
themeId : state.settings.theme ,
2018-03-20 01:04:48 +02:00
notesParentType : state.notesParentType ,
searches : state.searches ,
selectedSearchId : state.selectedSearchId ,
2018-11-21 21:50:50 +02:00
watchedNoteFiles : state.watchedNoteFiles ,
2020-02-29 14:39:15 +02:00
provisionalNoteIds : state.provisionalNoteIds ,
2020-05-27 18:21:46 +02:00
isInsertingNotes : state.isInsertingNotes ,
noteSortOrder : state.settings [ 'notes.sortOrder.field' ] ,
2020-09-06 14:07:00 +02:00
highlightedWords : state.highlightedWords ,
2020-10-09 19:35:46 +02:00
plugins : state.pluginService.plugins ,
2017-11-04 18:40:34 +02:00
} ;
} ;
2020-09-15 15:01:07 +02:00
export default connect ( mapStateToProps ) ( NoteListComponent ) ;