@choerodon/master
Version:
A package of Master for Choerodon platform.
44 lines (39 loc) • 2.4 kB
JavaScript
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
/* eslint-disable no-shadow */
import React, { createContext, useMemo, useContext } from 'react';
import { inject } from 'mobx-react';
import { injectIntl } from 'react-intl';
import useStore from "./useStore";
var Store = /*#__PURE__*/createContext({});
export function useSagaDetailsStore() {
return useContext(Store);
}
export var StoreProvider = injectIntl(inject('AppState')(function (props) {
var _props$AppState$curre = props.AppState.currentMenuType,
type = _props$AppState$curre.type,
id = _props$AppState$curre.id,
organizationId = _props$AppState$curre.organizationId,
intl = props.intl,
children = props.children,
sagaInstanceId = props.sagaInstanceId,
instance = props.instance;
var apiGetway = type === 'site' ? '/hagd/v1/sagas/' : "/hagd/v1/sagas/".concat(type, "s/").concat(id, "/");
var intlPrefix = 'global.saga';
var sagaStore = useStore();
var value = _objectSpread(_objectSpread({}, props), {}, {
apiGetway: apiGetway,
intl: intl,
prefixCls: 'c7n-saga',
intlPrefix: intlPrefix,
organizationId: organizationId,
sagaInstanceId: sagaInstanceId,
sagaStore: sagaStore,
instance: instance,
type: type
});
return /*#__PURE__*/React.createElement(Store.Provider, {
value: value
}, children);
}));