glitch-soc/mastodon

View on GitHub
app/javascript/flavours/glitch/reducers/media_attachments.js

Summary

Maintainability
A
1 hr
Test Coverage
import { Map as ImmutableMap } from 'immutable';

import { STORE_HYDRATE } from '../actions/store';

const initialState = ImmutableMap({
  accept_content_types: [],
});

export default function meta(state = initialState, action) {
  switch(action.type) {
  case STORE_HYDRATE:
    return state.merge(action.state.get('media_attachments'));
  default:
    return state;
  }
}