123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import { IStore } from '../app/types';
- import { doGetJSON } from '../base/util/httpUtils';
-
- import {
- SET_DYNAMIC_BRANDING_DATA,
- SET_DYNAMIC_BRANDING_FAILED,
- SET_DYNAMIC_BRANDING_READY
- } from './actionTypes';
- import { getDynamicBrandingUrl } from './functions.any';
- import logger from './logger';
-
-
- /**
- * Fetches custom branding data.
- * If there is no data or the request fails, sets the `customizationReady` flag
- * so the defaults can be displayed.
- *
- * @returns {Function}
- */
- export function fetchCustomBrandingData() {
- return async function(dispatch: IStore['dispatch'], getState: IStore['getState']) {
- const state = getState();
- const { customizationReady } = state['features/dynamic-branding'];
-
- if (!customizationReady) {
- const url = await getDynamicBrandingUrl(state);
-
- if (url) {
- try {
- const res = await doGetJSON(url);
-
- return dispatch(setDynamicBrandingData(res));
- } catch (err) {
- logger.error('Error fetching branding data', err);
-
- return dispatch(setDynamicBrandingFailed());
- }
- }
-
- dispatch(setDynamicBrandingReady());
- }
- };
- }
-
- /**
- * Action used to set the user customizations.
- *
- * @param {Object} value - The custom data to be set.
- * @returns {Object}
- */
- export function setDynamicBrandingData(value: Object) {
- return {
- type: SET_DYNAMIC_BRANDING_DATA,
- value
- };
- }
-
- /**
- * Action used to signal the branding elements are ready to be displayed.
- *
- * @returns {Object}
- */
- export function setDynamicBrandingReady() {
- return {
- type: SET_DYNAMIC_BRANDING_READY
- };
- }
-
- /**
- * Action used to signal the branding request failed.
- *
- * @returns {Object}
- */
- export function setDynamicBrandingFailed() {
- return {
- type: SET_DYNAMIC_BRANDING_FAILED
- };
- }
|