rx-store-core
Version:
A Rxjs and Immutable based Type-safe state management tool
208 lines (207 loc) • 11.8 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
var useValue = arguments.length > 2;
for (var i = 0; i < initializers.length; i++) {
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
}
return useValue ? value : void 0;
};
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
var _, done = false;
for (var i = decorators.length - 1; i >= 0; i--) {
var context = {};
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
if (kind === "accessor") {
if (result === void 0) continue;
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
if (_ = accept(result.get)) descriptor.get = _;
if (_ = accept(result.set)) descriptor.set = _;
if (_ = accept(result.init)) initializers.push(_);
}
else if (_ = accept(result)) {
if (kind === "field") initializers.push(_);
else descriptor[key] = _;
}
}
if (target) Object.defineProperty(target, contextIn.name, descriptor);
done = true;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (g && (g = 0, op[0] && (_ = 0)), _) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var _this = this;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncDispatcherImpl = exports.DispatcherImpl = void 0;
var rxjs_1 = require("rxjs");
var bound_1 = require("./decorators/bound");
var DispatcherImpl = exports.DispatcherImpl = function () {
var _a;
var _instanceExtraInitializers = [];
var _dispatch_decorators;
return _a = /** @class */ (function () {
function DispatcherImpl(reducer, store, key) {
this.reducer = (__runInitializers(this, _instanceExtraInitializers), reducer);
this.store = store;
this.key = key;
}
DispatcherImpl.prototype.dispatch = function (action) {
var _a;
var mutation = (_a = {},
_a[this.key] = this.reducer(this.store.getState(this.key), {
type: action.type,
payload: action.payload !== undefined
? action.payload
: this.store.getDefault(this.key),
}),
_a);
this.store.setState(mutation);
};
return DispatcherImpl;
}()),
(function () {
_dispatch_decorators = [bound_1.bound];
__esDecorate(_a, null, _dispatch_decorators, { kind: "method", name: "dispatch", static: false, private: false, access: { has: function (obj) { return "dispatch" in obj; }, get: function (obj) { return obj.dispatch; } } }, null, _instanceExtraInitializers);
})(),
_a;
}();
var AsyncDispatcherImpl = exports.AsyncDispatcherImpl = function () {
var _a;
var _instanceExtraInitializers_1 = [];
var _observe_decorators;
var _dispatch_decorators;
return _a = /** @class */ (function () {
function AsyncDispatcherImpl(reducer, store, key, config) {
this.reducer = (__runInitializers(this, _instanceExtraInitializers_1), reducer);
this.store = store;
this.key = key;
this.config = config;
this.dispatchSignal = new rxjs_1.Subject();
}
AsyncDispatcherImpl.prototype.observe = function (observer) {
var _this = this;
var _a;
var connect = ((_a = this.config) === null || _a === void 0 ? void 0 : _a.lazy) ? rxjs_1.exhaustMap : rxjs_1.switchMap;
var subscription = this.dispatchSignal
.pipe((0, rxjs_1.tap)(function (_a) {
var lazy = _a.lazy;
if (lazy) {
connect = rxjs_1.exhaustMap;
return;
}
connect = rxjs_1.switchMap;
}), (0, rxjs_1.tap)(function (_a) {
var _b, _c;
var start = _a.start;
if (start) {
start();
}
(_c = (_b = _this.config) === null || _b === void 0 ? void 0 : _b.start) === null || _c === void 0 ? void 0 : _c.call(_b);
}), (0, rxjs_1.map)(function (_a) {
var type = _a.type, payload = _a.payload, fail = _a.fail, fallback = _a.fallback, always = _a.always, success = _a.success;
var result$ = _this.reducer(_this.store.getState(_this.key), {
type: type,
payload: payload,
});
var converged$ = result$ instanceof Promise ? (0, rxjs_1.from)(result$) : result$;
return converged$.pipe((0, rxjs_1.catchError)(function (err) {
var _a, _b, _c;
var getDefault = fallback ? fallback : (_a = _this.config) === null || _a === void 0 ? void 0 : _a.fallback;
var valOnErr = getDefault
? getDefault()
: _this.store.getState(_this.key);
if (fail) {
fail(err, valOnErr);
}
(_c = (_b = _this.config) === null || _b === void 0 ? void 0 : _b.fail) === null || _c === void 0 ? void 0 : _c.call(_b, err, valOnErr);
return (0, rxjs_1.of)(valOnErr);
}), (0, rxjs_1.tap)(function (resp) {
var _a, _b;
if (success) {
success(resp);
}
(_b = (_a = _this.config) === null || _a === void 0 ? void 0 : _a.success) === null || _b === void 0 ? void 0 : _b.call(_a, resp);
}), (0, rxjs_1.tap)(function () {
var _a, _b;
if (always) {
always();
}
(_b = (_a = _this.config) === null || _a === void 0 ? void 0 : _a.always) === null || _b === void 0 ? void 0 : _b.call(_a);
}));
}), connect(function (converged$) { return converged$; }))
.subscribe(function (value) {
var _a;
observer === null || observer === void 0 ? void 0 : observer(value);
_this.store.setState((_a = {}, _a[_this.key] = value, _a));
});
return function () { return subscription.unsubscribe(); };
};
AsyncDispatcherImpl.prototype.dispatch = function (action, config) {
if (config === void 0) { config = {}; }
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
this.dispatchSignal.next(__assign(__assign({}, action), config));
return [2 /*return*/];
});
});
};
return AsyncDispatcherImpl;
}()),
(function () {
_observe_decorators = [bound_1.bound];
_dispatch_decorators = [bound_1.bound];
__esDecorate(_a, null, _observe_decorators, { kind: "method", name: "observe", static: false, private: false, access: { has: function (obj) { return "observe" in obj; }, get: function (obj) { return obj.observe; } } }, null, _instanceExtraInitializers_1);
__esDecorate(_a, null, _dispatch_decorators, { kind: "method", name: "dispatch", static: false, private: false, access: { has: function (obj) { return "dispatch" in obj; }, get: function (obj) { return obj.dispatch; } } }, null, _instanceExtraInitializers_1);
})(),
_a;
}();