forked from treehouse/mastodon
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
|
import { STORE_HYDRATE } from '../actions/store';
|
||
|
import { SET_BROWSER_SUPPORT, SET_SUBSCRIPTION, CLEAR_SUBSCRIPTION, ALERTS_CHANGE } from '../actions/push_notifications';
|
||
|
import Immutable from 'immutable';
|
||
|
|
||
|
const initialState = Immutable.Map({
|
||
|
subscription: null,
|
||
|
alerts: new Immutable.Map({
|
||
|
follow: false,
|
||
|
favourite: false,
|
||
|
reblog: false,
|
||
|
mention: false,
|
||
|
}),
|
||
|
isSubscribed: false,
|
||
|
browserSupport: false,
|
||
|
});
|
||
|
|
||
|
export default function push_subscriptions(state = initialState, action) {
|
||
|
switch(action.type) {
|
||
|
case STORE_HYDRATE: {
|
||
|
const push_subscription = action.state.get('push_subscription');
|
||
|
|
||
|
if (push_subscription) {
|
||
|
return state
|
||
|
.set('subscription', new Immutable.Map({
|
||
|
id: push_subscription.get('id'),
|
||
|
endpoint: push_subscription.get('endpoint'),
|
||
|
}))
|
||
|
.set('alerts', push_subscription.get('alerts') || initialState.get('alerts'))
|
||
|
.set('isSubscribed', true);
|
||
|
}
|
||
|
|
||
|
return state;
|
||
|
}
|
||
|
case SET_SUBSCRIPTION:
|
||
|
return state
|
||
|
.set('subscription', new Immutable.Map({
|
||
|
id: action.subscription.id,
|
||
|
endpoint: action.subscription.endpoint,
|
||
|
}))
|
||
|
.set('alerts', new Immutable.Map(action.subscription.alerts))
|
||
|
.set('isSubscribed', true);
|
||
|
case SET_BROWSER_SUPPORT:
|
||
|
return state.set('browserSupport', action.value);
|
||
|
case CLEAR_SUBSCRIPTION:
|
||
|
return initialState;
|
||
|
case ALERTS_CHANGE:
|
||
|
return state.setIn(action.key, action.value);
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
};
|