/[sudobot]/trunk/src/services/RandomStatus.ts
ViewVC logotype

Contents of /trunk/src/services/RandomStatus.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 302 - (show annotations)
Mon Jul 29 17:29:26 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 1059 byte(s)
fix: random status service
1 import { ExcludeEnum, PresenceStatusData } from "discord.js";
2 import { ActivityTypes } from "discord.js/typings/enums";
3 import DiscordClient from "../client/Client";
4 import Service from "../utils/structures/Service";
5 import { random } from "../utils/util";
6
7 export default class RandomStatus extends Service {
8 async update(status?: PresenceStatusData) {
9 status ??= random(['dnd', 'idle', 'online'] as PresenceStatusData[]);
10 console.log(status);
11
12 await this.client.user?.setActivity({
13 type: this.client.config.props.status?.type ?? 'WATCHING',
14 name: this.client.config.props.status?.name ?? 'over the server'
15 });
16
17 await this.client.user?.setStatus(status!);
18 }
19
20 async config(name?: string, type?: ExcludeEnum<typeof ActivityTypes, 'CUSTOM'>) {
21 this.client.config.props.status ??= {};
22 this.client.config.props.status.type = type ?? 'WATCHING';
23 this.client.config.props.status.name = name ?? 'over the server';
24 this.client.config.write();
25 }
26 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26