@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
30 lines (29 loc) • 1.61 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.makeCreateConsequentEventInputs = void 0;
const R = require("ramda");
const logEvent_1 = require("../util/logEvent");
const getEventFlow_1 = require("../operators/getEventFlow");
const makeCreateConsequentEventInputs = (eventFlowMap) => (event) => __awaiter(void 0, void 0, void 0, function* () {
    const eventFlow = (0, getEventFlow_1.getEventFlow)(eventFlowMap)(event);
    const consequentEvents = eventFlow.createConsequentEvents
        ? yield eventFlow.createConsequentEvents(event)
        : [];
    if (consequentEvents.length) {
        (0, logEvent_1.logEvent)(event, '🏭', 'subEvents', consequentEvents.map(R.prop('type')));
    }
    else {
        (0, logEvent_1.logEvent)(event, '👌️', 'noSub');
    }
    return { consequentEvents, event };
});
exports.makeCreateConsequentEventInputs = makeCreateConsequentEventInputs;