@pantheon-systems/design-toolkit-react
Version:
Pantheon's React Design Toolkit
21 lines (18 loc) • 1.57 kB
JavaScript
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
import { useContext } from 'react';
import { StepperStateContext } from '../Context.js';
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); 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 = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
var useStepperState = function useStepperState() {
var stepperState = useContext(StepperStateContext);
var currentGate = stepperState.currentGate,
gates = stepperState.gates;
var currentGateId = _toConsumableArray(gates.keys())[currentGate];
return _objectSpread(_objectSpread({}, stepperState), {}, {
currentGateId: currentGateId
});
};
var useStepperState$1 = useStepperState;
export { useStepperState$1 as default };
//# sourceMappingURL=useStepperState.js.map