@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
22 lines (21 loc) • 1.16 kB
JavaScript
;
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.preApply = void 0;
const logEvent_1 = require("../util/logEvent");
const preApply = (eventFlow, event) => __awaiter(void 0, void 0, void 0, function* () {
(0, logEvent_1.logEvent)(event, '🪁️', 'PreApply');
if (!eventFlow.preApply)
return event;
const remakeEvent = yield eventFlow.preApply(event);
return remakeEvent || event;
});
exports.preApply = preApply;