56 lines
3.3 KiB
JavaScript
56 lines
3.3 KiB
JavaScript
export const setAccount = value => ({ type: 'SET_ACCOUNT', value });
|
|
export const setAuthenticated = value => ({ type: 'SET_AUTHENTICATED', value });
|
|
|
|
export const setAnimating = value => ({ type: 'SET_ANIMATING', value });
|
|
export const setAnimFocus = value => ({ type: 'SET_ANIM_FOCUS', value });
|
|
export const setAnimSkill = value => ({ type: 'SET_ANIM_SKILL', value });
|
|
export const setAnimSource = value => ({ type: 'SET_ANIM_SOURCE', value });
|
|
export const setAnimTarget = value => ({ type: 'SET_ANIM_TARGET', value });
|
|
export const setResolution = value => ({ type: 'SET_RESOLUTION', value });
|
|
|
|
export const setChatShow = value => ({ type: 'SET_CHAT_SHOW', value });
|
|
export const setChatWheel = value => ({ type: 'SET_CHAT_WHEEL', value });
|
|
export const setInstanceChat = value => ({ type: 'SET_INSTANCE_CHAT', value });
|
|
|
|
export const setActiveItem = value => ({ type: 'SET_ACTIVE_VAR', value });
|
|
export const setActiveSkill = (constructId, skill) => ({ type: 'SET_ACTIVE_SKILL', value: constructId ? { constructId, skill } : null });
|
|
export const setConstructEditId = value => ({ type: 'SET_CONSTRUCT_EDIT_ID', value });
|
|
export const setConstructs = value => ({ type: 'SET_CONSTRUCTS', value });
|
|
export const setConstructRename = value => ({ type: 'SET_CONSTRUCT_RENAME', value });
|
|
|
|
export const setGame = value => ({ type: 'SET_GAME', value });
|
|
export const setGameSkillInfo = value => ({ type: 'SET_GAME_SKILL_INFO', value });
|
|
export const setGameEffectInfo = value => ({ type: 'SET_GAME_EFFECT_INFO', value });
|
|
|
|
export const setInfo = value => ({ type: 'SET_INFO', value });
|
|
export const setComboPreview = value => ({ type: 'SET_COMBO_PREVIEW', value });
|
|
|
|
export const setEmail = value => ({ type: 'SET_EMAIL', value });
|
|
export const setInvite = value => ({ type: 'SET_INVITE', value });
|
|
export const setInstance = value => ({ type: 'SET_INSTANCE', value });
|
|
export const setInstances = value => ({ type: 'SET_INSTANCES', value });
|
|
export const setItemInfo = value => ({ type: 'SET_ITEM_INFO', value });
|
|
export const setItemUnequip = value => ({ type: 'SET_ITEM_UNEQUIP', value });
|
|
export const setMtxActive = value => ({ type: 'SET_MTX_ACTIVE', value });
|
|
export const setNav = value => ({ type: 'SET_NAV', value });
|
|
export const setPing = value => ({ type: 'SET_PING', value });
|
|
export const setPlayer = value => ({ type: 'SET_PLAYER', value });
|
|
export const setShowLog = value => ({ type: 'SET_SHOW_LOG', value });
|
|
export const setShop = value => ({ type: 'SET_SHOP', value });
|
|
export const setSubscription = value => ({ type: 'SET_SUBSCRIPTION', value });
|
|
export const setPvp = value => ({ type: 'SET_PVP', value });
|
|
|
|
export const setTeam = value => ({ type: 'SET_TEAM', value: Array.from(value) });
|
|
export const setTeamPage = value => ({ type: 'SET_TEAM_PAGE', value });
|
|
export const setTeamSelect = value => ({ type: 'SET_TEAM_SELECT', value: Array.from(value) });
|
|
|
|
export const setTutorial = value => ({ type: 'SET_TUTORIAL', value });
|
|
export const setTutorialGame = value => ({ type: 'SET_TUTORIAL_GAME', value });
|
|
|
|
export const setVboxSelected = value => ({ type: 'SET_VBOX_SELECTED', value: value });
|
|
export const setVboxCombiner = value => ({ type: 'SET_VBOX_COMBINER', value });
|
|
export const setVboxHighlight = value => ({ type: 'SET_VBOX_HIGHLIGHT', value });
|
|
export const setVboxInfo = value => ({ type: 'SET_VBOX_INFO', value });
|
|
|
|
export const setWs = value => ({ type: 'SET_WS', value });
|