package.cjs.react-utils.useBreakpoints.index.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.
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _react = require("react");
var _ramda = require("ramda");
var _utils = require("./utils");
var useBreakpoints = function useBreakpoints(breakpointOverrides) {
var getSnapshot = function getSnapshot() {
return (0, _utils.getCurrentSize)(window, breakpointOverrides);
};
var currentSize = (0, _react.useSyncExternalStore)(_utils.subscribe, getSnapshot);
return {
currentSize: currentSize,
isSize: (0, _ramda.equals)(currentSize)
};
};
var _default = useBreakpoints;
exports["default"] = _default;
//# sourceMappingURL=index.js.map