aboutsummaryrefslogtreecommitdiff
path: root/src/arguments/roleWithDuration.ts
blob: 9bf4bb2478c699a89107cbb37473aa04bb179193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { type BushArgumentTypeCaster } from '#lib';

export const roleWithDuration: BushArgumentTypeCaster = async (
	message,
	phrase
): Promise<{ duration: number | null; role: string | null } | null> => {
	// eslint-disable-next-line prefer-const
	let { duration, contentWithoutTime } = client.util.parseDuration(phrase);
	if (contentWithoutTime === null || contentWithoutTime === undefined) return null;
	contentWithoutTime = contentWithoutTime.trim();
	const role = await util.arg.cast('role', message, contentWithoutTime);
	if (!role) return null;
	return { duration, role };
};