stream-chat
Version:
JS SDK for the Stream Chat API
77 lines (60 loc) • 2.01 kB
text/typescript
import type { StreamChat } from './client';
import type { CampaignData, GetCampaignOptions } from './types';
export class Campaign {
id: string | null;
data?: CampaignData;
client: StreamChat;
constructor(client: StreamChat, id: string | null, data?: CampaignData) {
this.client = client;
this.id = id;
this.data = data;
}
async create() {
const body = {
id: this.id,
message_template: this.data?.message_template,
segment_ids: this.data?.segment_ids,
sender_id: this.data?.sender_id,
sender_mode: this.data?.sender_mode,
channel_template: this.data?.channel_template,
create_channels: this.data?.create_channels,
show_channels: this.data?.show_channels,
description: this.data?.description,
name: this.data?.name,
skip_push: this.data?.skip_push,
skip_webhook: this.data?.skip_webhook,
user_ids: this.data?.user_ids,
};
const result = await this.client.createCampaign(body);
this.id = result.campaign.id;
this.data = result.campaign;
return result;
}
verifyCampaignId() {
if (!this.id) {
throw new Error(
'Campaign id is missing. Either create the campaign using campaign.create() or set the id during instantiation - const campaign = client.campaign(id)',
);
}
}
async start(options?: { scheduledFor?: string; stopAt?: string }) {
this.verifyCampaignId();
return await this.client.startCampaign(this.id as string, options);
}
update(data: Partial<CampaignData>) {
this.verifyCampaignId();
return this.client.updateCampaign(this.id as string, data);
}
async delete() {
this.verifyCampaignId();
return await this.client.deleteCampaign(this.id as string);
}
stop() {
this.verifyCampaignId();
return this.client.stopCampaign(this.id as string);
}
get(options?: GetCampaignOptions) {
this.verifyCampaignId();
return this.client.getCampaign(this.id as string, options);
}
}