2020-03-27 20:59:38 +00:00
|
|
|
import { STORE_HYDRATE } from '../actions/store';
|
2020-04-17 23:25:36 +00:00
|
|
|
import {
|
|
|
|
Map as ImmutableMap,
|
|
|
|
List as ImmutableList,
|
|
|
|
} from 'immutable';
|
2020-03-27 20:59:38 +00:00
|
|
|
|
|
|
|
const initialState = ImmutableMap({
|
2020-04-17 23:25:36 +00:00
|
|
|
// FIXME: Leave this empty and pull from backend
|
|
|
|
accept_content_types: ImmutableList([
|
|
|
|
'.jpg',
|
|
|
|
'.jpeg',
|
|
|
|
'.png',
|
|
|
|
'.gif',
|
|
|
|
'.webp',
|
|
|
|
'.webm',
|
|
|
|
'.mp4',
|
|
|
|
'.m4v',
|
|
|
|
'.mov',
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
'image/gif',
|
|
|
|
'image/webp',
|
|
|
|
'video/webm',
|
|
|
|
'video/mp4',
|
|
|
|
'video/quicktime',
|
|
|
|
]),
|
2020-03-27 20:59:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default function meta(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
|
|
|
case STORE_HYDRATE:
|
|
|
|
return state.merge(action.state.get('media_attachments'));
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|