PATH:
home
/
ajwellnessmassag
/
angelictravels.online
/
wp-content
/
plugins
/
essential-blocks
/
src
/
store
import * as actions from "./actions"; /** * getGlobalColors resolver * @returns */ export function* getGlobalColors() { let globalColors = yield actions.fetchGlobalColor(); return actions.setGlobalColors(globalColors) } /** * getCustomColors resolver * @returns */ export function* getCustomColors() { let customColors = yield actions.fetchCustomColor(); return actions.setCustomColors(customColors) } /** * getGradientColors resolver * @returns */ export function* getGradientColors() { let gradientColors = yield actions.fetchGradientColor(); return actions.setGradientColors(gradientColors) } /** * getCustomGradientColors resolver * @returns */ export function* getCustomGradientColors() { let customGradientColors = yield actions.fetchCustomGradientColor(); return actions.setCustomGradientColors(customGradientColors) } /** * getGlobalTypography resolver * @returns */ export function* getGlobalTypography() { let globalTypography = yield actions.fetchGlobalTypography(); return actions.setGlobalTypography(globalTypography) } /** * getBlockDefaults resolver * @returns */ export function* getBlockDefaults() { let value = yield actions.fetchBlockDefaults(); return actions.setBlockDefault(value) } // /** // * getBlockDefaults resolver // * @returns // */ // export function* getIsSaving() { // let value = yield actions.fetchIsSaving(); // console.log('fetch', value) // return actions.setIsSaving(value) // }
[-] constant.js
[edit]
[-] controls.js
[edit]
[-] actions.js
[edit]
[-] reducer.js
[edit]
[-] selectors.js
[edit]
[+]
..
[-] resolvers.js
[edit]
[-] index.js
[edit]