UNPKG

@schemeless/event-store-react-native

Version:

React Native compatible build of the [`@schemeless/event-store`](../event-store) runtime. It mirrors the Node.js implementation but swaps the internal queue implementation to [`react-native-better-queue`](https://github.com/YahyaASadiq/react-native-better

25 lines (24 loc) 1.44 kB
"use strict"; 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()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.makeValidateAndApply = void 0; const getEventFlow_1 = require("../operators/getEventFlow"); const apply_1 = require("./apply"); const validate_1 = require("./validate"); const preApply_1 = require("./preApply"); const makeValidateAndApply = (eventFlowMap) => (event) => __awaiter(void 0, void 0, void 0, function* () { const eventFlow = (0, getEventFlow_1.getEventFlow)(eventFlowMap)(event); yield (0, validate_1.validate)(eventFlow, event); const preAppliedEvent = yield (0, preApply_1.preApply)(eventFlow, event); yield (0, apply_1.apply)(eventFlow, preAppliedEvent); return preAppliedEvent; }); exports.makeValidateAndApply = makeValidateAndApply;