Skip to content

Instantly share code, notes, and snippets.

@bwaidelich
Last active November 16, 2024 18:07
Show Gist options
  • Save bwaidelich/b4c3bc3b760230ba25d9d02e47d5d360 to your computer and use it in GitHub Desktop.
Save bwaidelich/b4c3bc3b760230ba25d9d02e47d5d360 to your computer and use it in GitHub Desktop.
DCB Example: invoice number sequence
/*
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