mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
modify: replace the component with common component
This commit is contained in:
@@ -9,6 +9,7 @@ import styles from './FinderMain.styl'
|
|||||||
import StorageSection from './StorageSection'
|
import StorageSection from './StorageSection'
|
||||||
import NoteList from './NoteList'
|
import NoteList from './NoteList'
|
||||||
import NoteDetail from './NoteDetail'
|
import NoteDetail from './NoteDetail'
|
||||||
|
import SideNavFilter from 'browser/components/SideNavFilter'
|
||||||
require('!!style!css!stylus?sourceMap!../main/global.styl')
|
require('!!style!css!stylus?sourceMap!../main/global.styl')
|
||||||
require('../lib/customMeta')
|
require('../lib/customMeta')
|
||||||
|
|
||||||
@@ -307,18 +308,12 @@ class FinderMain extends React.Component {
|
|||||||
/> Only Markdown</label>
|
/> Only Markdown</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button styleName={filter.type === 'ALL'
|
<SideNavFilter
|
||||||
? 'result-nav-menu--active'
|
isHomeActive={filter.type === 'ALL'}
|
||||||
: 'result-nav-menu'
|
handleAllNotesButtonClick={(e) => this.handleAllNotesButtonClick(e)}
|
||||||
}
|
isStarredActive={filter.type === 'STARRED'}
|
||||||
onClick={(e) => this.handleAllNotesButtonClick(e)}
|
handleStarredButtonClick={(e) => this.handleStarredButtonClick(e)}
|
||||||
><i className='fa fa-files-o fa-fw'/> All Notes</button>
|
/>
|
||||||
<button styleName={filter.type === 'STARRED'
|
|
||||||
? 'result-nav-menu--active'
|
|
||||||
: 'result-nav-menu'
|
|
||||||
}
|
|
||||||
onClick={(e) => this.handleStarredButtonClick(e)}
|
|
||||||
><i className='fa fa-star fa-fw'/> Starred</button>
|
|
||||||
<div styleName='result-nav-storageList'>
|
<div styleName='result-nav-storageList'>
|
||||||
{storageList}
|
{storageList}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user