mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
22 lines
585 B
JavaScript
22 lines
585 B
JavaScript
import _ from 'lodash';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import createUISettingsSelector from 'Store/Selectors/createUISettingsSelector';
|
|
import RelativeDateCell from './RelativeDateCell';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
createUISettingsSelector(),
|
|
(uiSettings) => {
|
|
return _.pick(uiSettings, [
|
|
'showRelativeDates',
|
|
'shortDateFormat',
|
|
'longDateFormat',
|
|
'timeFormat'
|
|
]);
|
|
}
|
|
);
|
|
}
|
|
|
|
export default connect(createMapStateToProps, null)(RelativeDateCell);
|