package.react-utils.useFetchNeetoApps.useFetchNeetoApps.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
import _defineProperty from "@babel/runtime/helpers/defineProperty";
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
import { isNotPresent } from "@bigbinary/neeto-cist";
import usePersistedQuery from "../usePersistedQuery";
import neetoAppsApi from "./apis/neeto_apps";
import { NEETO_APPS_LIST_STALE_TIME } from "../constants";
import { QUERY_KEYS } from "../constants/query";
var useFetchNeetoApps = function useFetchNeetoApps(options) {
var _globalProps$user;
var scopedQueryKey = ["".concat(QUERY_KEYS.NEETO_APPS_LIST, "-").concat((_globalProps$user = globalProps.user) === null || _globalProps$user === void 0 ? void 0 : _globalProps$user.id)];
var _ref = usePersistedQuery.getCache(scopedQueryKey) || {},
data = _ref.data,
modifiedAt = _ref.modifiedAt;
var expired = modifiedAt <= Date.now() - NEETO_APPS_LIST_STALE_TIME;
return usePersistedQuery(scopedQueryKey, neetoAppsApi.fetch, _objectSpread({
staleTime: NEETO_APPS_LIST_STALE_TIME,
enabled: expired || isNotPresent(data)
}, options));
};
export default useFetchNeetoApps;
//# sourceMappingURL=useFetchNeetoApps.js.map