169 lines
4.2 KiB
JavaScript
169 lines
4.2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = DrawerRouter;
|
|
exports.DrawerActions = void 0;
|
|
|
|
var _nonSecure = require("nanoid/non-secure");
|
|
|
|
var _TabRouter = _interopRequireWildcard(require("./TabRouter"));
|
|
|
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
const DrawerActions = { ..._TabRouter.TabActions,
|
|
|
|
openDrawer() {
|
|
return {
|
|
type: 'OPEN_DRAWER'
|
|
};
|
|
},
|
|
|
|
closeDrawer() {
|
|
return {
|
|
type: 'CLOSE_DRAWER'
|
|
};
|
|
},
|
|
|
|
toggleDrawer() {
|
|
return {
|
|
type: 'TOGGLE_DRAWER'
|
|
};
|
|
}
|
|
|
|
};
|
|
exports.DrawerActions = DrawerActions;
|
|
|
|
const isDrawerOpen = state => {
|
|
var _state$history;
|
|
|
|
return Boolean((_state$history = state.history) === null || _state$history === void 0 ? void 0 : _state$history.some(it => it.type === 'drawer'));
|
|
};
|
|
|
|
const openDrawer = state => {
|
|
if (isDrawerOpen(state)) {
|
|
return state;
|
|
}
|
|
|
|
return { ...state,
|
|
history: [...state.history, {
|
|
type: 'drawer'
|
|
}]
|
|
};
|
|
};
|
|
|
|
const closeDrawer = state => {
|
|
if (!isDrawerOpen(state)) {
|
|
return state;
|
|
}
|
|
|
|
return { ...state,
|
|
history: state.history.filter(it => it.type !== 'drawer')
|
|
};
|
|
};
|
|
|
|
function DrawerRouter({
|
|
openByDefault,
|
|
...rest
|
|
}) {
|
|
const router = (0, _TabRouter.default)(rest);
|
|
return { ...router,
|
|
type: 'drawer',
|
|
|
|
getInitialState({
|
|
routeNames,
|
|
routeParamList,
|
|
routeGetIdList
|
|
}) {
|
|
let state = router.getInitialState({
|
|
routeNames,
|
|
routeParamList,
|
|
routeGetIdList
|
|
});
|
|
|
|
if (openByDefault) {
|
|
state = openDrawer(state);
|
|
}
|
|
|
|
return { ...state,
|
|
stale: false,
|
|
type: 'drawer',
|
|
key: "drawer-".concat((0, _nonSecure.nanoid)())
|
|
};
|
|
},
|
|
|
|
getRehydratedState(partialState, {
|
|
routeNames,
|
|
routeParamList,
|
|
routeGetIdList
|
|
}) {
|
|
if (partialState.stale === false) {
|
|
return partialState;
|
|
}
|
|
|
|
let state = router.getRehydratedState(partialState, {
|
|
routeNames,
|
|
routeParamList,
|
|
routeGetIdList
|
|
});
|
|
|
|
if (partialState.history ? isDrawerOpen(partialState) : openByDefault) {
|
|
state = openDrawer(state);
|
|
}
|
|
|
|
return { ...state,
|
|
type: 'drawer',
|
|
key: "drawer-".concat((0, _nonSecure.nanoid)())
|
|
};
|
|
},
|
|
|
|
getStateForRouteFocus(state, key) {
|
|
const result = router.getStateForRouteFocus(state, key);
|
|
|
|
if (openByDefault) {
|
|
return openDrawer(result);
|
|
}
|
|
|
|
return closeDrawer(result);
|
|
},
|
|
|
|
getStateForAction(state, action, options) {
|
|
switch (action.type) {
|
|
case 'OPEN_DRAWER':
|
|
return openDrawer(state);
|
|
|
|
case 'CLOSE_DRAWER':
|
|
return closeDrawer(state);
|
|
|
|
case 'TOGGLE_DRAWER':
|
|
if (isDrawerOpen(state)) {
|
|
return closeDrawer(state);
|
|
}
|
|
|
|
return openDrawer(state);
|
|
|
|
case 'GO_BACK':
|
|
if (openByDefault) {
|
|
if (!isDrawerOpen(state)) {
|
|
return openDrawer(state);
|
|
}
|
|
} else {
|
|
if (isDrawerOpen(state)) {
|
|
return closeDrawer(state);
|
|
}
|
|
}
|
|
|
|
return router.getStateForAction(state, action, options);
|
|
|
|
default:
|
|
return router.getStateForAction(state, action, options);
|
|
}
|
|
},
|
|
|
|
actionCreators: DrawerActions
|
|
};
|
|
}
|
|
//# sourceMappingURL=DrawerRouter.js.map
|