2017-04-23 18:10:45 +02:00
|
|
|
import React from 'react'
|
|
|
|
import {
|
|
|
|
connect
|
|
|
|
} from 'react-redux'
|
2017-05-11 02:59:47 +02:00
|
|
|
import {
|
|
|
|
doFetchDownloadedContent,
|
|
|
|
} from 'actions/content'
|
2017-04-23 18:10:45 +02:00
|
|
|
import {
|
2017-04-25 07:47:21 +02:00
|
|
|
selectFetchingDownloadedContent,
|
2017-04-23 18:10:45 +02:00
|
|
|
} from 'selectors/content'
|
2017-04-30 18:01:43 +02:00
|
|
|
import {
|
|
|
|
selectDownloadedFileInfo,
|
|
|
|
} from 'selectors/file_info'
|
|
|
|
import {
|
|
|
|
doNavigate,
|
|
|
|
} from 'actions/app'
|
2017-04-23 18:10:45 +02:00
|
|
|
import FileListDownloaded from './view'
|
|
|
|
|
|
|
|
const select = (state) => ({
|
2017-04-30 18:01:43 +02:00
|
|
|
downloadedContent: selectDownloadedFileInfo(state),
|
2017-04-25 07:47:21 +02:00
|
|
|
fetching: selectFetchingDownloadedContent(state),
|
2017-04-23 18:10:45 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
const perform = (dispatch) => ({
|
2017-04-30 18:01:43 +02:00
|
|
|
navigate: (path) => dispatch(doNavigate(path)),
|
2017-05-11 02:59:47 +02:00
|
|
|
fetchFileListDownloaded: () => dispatch(doFetchDownloadedContent()),
|
2017-04-23 18:10:45 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
export default connect(select, perform)(FileListDownloaded)
|