@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
41 lines (37 loc) • 1.52 kB
text/typescript
import type { JSONObject } from 'tiny-types';
import { ensure, isDefined } from 'tiny-types';
import { CorrelationId } from '../../model/index.js';
import type { SerialisedActor } from '../../screenplay/index.js';
import { Timestamp } from '../../screenplay/index.js';
import { DomainEvent } from '../DomainEvent.js';
/**
* Emitted when an [`Actor`](https://serenity-js.org/api/core/class/Actor/) becomes
* the active actor (moves into the spotlight) as the result of invoking
* [`actorCalled`](https://serenity-js.org/api/core/function/actorCalled/).
*
* This event is emitted only when the spotlight shifts to a different actor.
* Consecutive retrievals of the same actor do not emit additional events.
*
* To detect when an actor is instantiated for the first time, listen for
* [`ActorEntersStage`](https://serenity-js.org/api/core-events/class/ActorEntersStage/).
*
* @group Events
*/
export class ActorSpotlighted extends DomainEvent {
public static fromJSON(o: JSONObject): ActorSpotlighted {
return new ActorSpotlighted(
CorrelationId.fromJSON(o.sceneId as string),
o.actor as unknown as SerialisedActor,
Timestamp.fromJSON(o.timestamp as string),
);
}
constructor(
public readonly sceneId: CorrelationId,
public readonly actor: SerialisedActor,
timestamp?: Timestamp,
) {
super(timestamp);
ensure('sceneId', sceneId, isDefined());
ensure('actor', actor, isDefined());
}
}