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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26