UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

24 lines (21 loc) 569 B
import { ActionTypes, } from '../actions/ActionTypes'; import { IStoryRequiresFullRerenderAction, } from '../actions/IStoryRequiresFullRerenderAction'; import { IStoryResetAction, } from '../actions/IStoryResetAction'; export function storyRequiresFullRerenderReducer( previousValue: boolean = false, action: IStoryResetAction | IStoryRequiresFullRerenderAction, ) { if (action.type === ActionTypes.StoryReset) { return true; } else if (action.type === ActionTypes.StoryRequiresFullRerender) { return action.value; } return previousValue; }