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 demonstrates how a product price change can be rolled out with grace period for customers to order it for the previous price | |
*/ | |
// little helper function to generate dates X minutes ago | |
const minutesAgo = (minutes) => new Date((new Date).getTime() - minutes * (1000 * 60)); | |
const events = [ | |
{ |
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
<?php | |
declare(strict_types=1); | |
namespace Some\Namespace; | |
use IteratorAggregate; | |
use Traversable; | |
/** |
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 }, |
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 is the most simple one just checking whether a given username is claimed | |
*/ | |
const events = [ | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a1", username: "u1" }, | |
tags: ["account:a1", "username:u1"], | |
}, |
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
<?php | |
declare(strict_types=1); | |
final class CatchUpWorkerCommandController extends CommandController { | |
public function __construct( | |
private readonly ContentRepositoryRegistry $contentRepositoryRegistry, | |
private readonly ProjectionCatchUpServiceFactory $projectionCatchUpServiceFactory, | |
) { | |
parent::__construct(); |
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
<Some.Package:ZipArchiveLink zip.files={['resource://Neos.Neos/Public/Images/Login/Logo.svg', 'resource://Neos.Neos/Public/Images/Login/Wallpaper.jpg']} filename="archive.zip"> | |
Download | |
</Some.Package:ZipArchiveLink> |
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
# Concrete assignments from roles to privileges can happen in your global /Configuration/Policy.yaml file | |
roles: | |
'Some.Distribution:Administrator': | |
privileges: | |
- privilegeTarget: 'Some.Package:AccessAnyProduct' | |
permission: GRANT | |
'Some.Distribution:User': |
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
<?php | |
declare(strict_types=1); | |
use Behat\Behat\Context\Context; | |
use Behat\Gherkin\Node\PyStringNode; | |
use Behat\Gherkin\Node\TableNode; | |
use Doctrine\DBAL\Connection; | |
use Doctrine\ORM\EntityManagerInterface; | |
use Firebase\JWT\JWT; |
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
const nestedStates = { | |
initial: 'a1', | |
states: { | |
a1: { | |
on: { | |
FOO: "a2" | |
} | |
}, | |
a2: { | |
type: "final" |
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
const machine = Machine( | |
{ | |
id: "buyBook", | |
initial: "outside", | |
context: { | |
loggedIn: false, | |
subscription: null, | |
bookId: null, | |
initialLocation: null, | |
alreadySubscribedChosen: false |
NewerOlder