Last active
November 16, 2024 18:07
-
-
Save bwaidelich/b4c3bc3b760230ba25d9d02e47d5d360 to your computer and use it in GitHub Desktop.
DCB Example: invoice number sequence
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example shows how the next consecutive integer sequence number (e.g. for creating invoice numbers) | |
NOTE: In this very basic example, all invoice creation events are iterated. In the actual DCB event store it is possible to only fetch the last event of a given type | |
*/ | |
const events = [ | |
{ | |
type: "INVOICE_CREATED", | |
data: { invoiceNumber: 1 }, | |
}, | |
{ | |
type: "INVOICE_CREATED", | |
data: { invoiceNumber: 2 }, | |
}, | |
]; | |
const nextInvoiceNumber = () => { | |
const projection = (state, event) => { | |
switch (event.type) { | |
case "INVOICE_CREATED": | |
return event.data.invoiceNumber + 1; | |
default: | |
return state; | |
} | |
}; | |
return events.filter((e) => e.type === "INVOICE_CREATED").reduce(projection, 1); | |
}; | |
console.log(nextInvoiceNumber()); // 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment