UNPKG

3.85 kBJavaScriptView Raw
1function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
2
3function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }
4
5function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct; } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }
6
7function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
8
9function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; }
10
11function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
12
13function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
14
15import useForceUpdate from './useForceUpdate';
16import useStableMemo from './useStableMemo';
17export var ObservableMap = /*#__PURE__*/function (_Map) {
18 _inheritsLoose(ObservableMap, _Map);
19
20 function ObservableMap(listener, init) {
21 var _this;
22
23 _this = _Map.call(this, init) || this;
24 _this.listener = listener;
25 return _this;
26 }
27
28 var _proto = ObservableMap.prototype;
29
30 _proto.set = function set(key, value) {
31 _Map.prototype.set.call(this, key, value); // When initializing the Map, the base Map calls this.set() before the
32 // listener is assigned so it will be undefined
33
34
35 if (this.listener) this.listener(this);
36 return this;
37 };
38
39 _proto.delete = function _delete(key) {
40 var result = _Map.prototype.delete.call(this, key);
41
42 this.listener(this);
43 return result;
44 };
45
46 _proto.clear = function clear() {
47 _Map.prototype.clear.call(this);
48
49 this.listener(this);
50 };
51
52 return ObservableMap;
53}( /*#__PURE__*/_wrapNativeSuper(Map));
54/**
55 * Create and return a [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) that triggers rerenders when it's updated.
56 *
57 * ```tsx
58 * const customerAges = useMap<number>([
59 * ['john', 24],
60 * ['betsy', 25]
61 * ]);
62 *
63 * return (
64 * <>
65 * {Array.from(ids, ([name, age]) => (
66 * <div>
67 * {name}: {age}. <button onClick={() => ids.delete(name)}>X</button>
68 * </div>
69 * )}
70 * </>
71 * )
72 * ```
73 *
74 * @param init initial Map entries
75 */
76
77function useMap(init) {
78 var forceUpdate = useForceUpdate();
79 return useStableMemo(function () {
80 return new ObservableMap(forceUpdate, init);
81 }, []);
82}
83
84export default useMap;
\No newline at end of file