-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from moeyashi/feature/132
Feature/132
- Loading branch information
Showing
3 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// @ts-check | ||
import { SlashCommandBuilder } from 'discord.js'; | ||
import { searchTrack } from '../const/track.js'; | ||
import { displayMilliseconds } from '../util/time.js'; | ||
|
||
/** @type { import('../types').SlashCommand } */ | ||
export default { | ||
data: new SlashCommandBuilder() | ||
.setName('rival') | ||
.setDescription('サーバー内のユーザーと記録を比較します') | ||
.addUserOption((option) => | ||
option.setName('rival').setDescription('比較対象').setRequired(true), | ||
), | ||
execute: async (interaction, nitaRepository) => { | ||
if (!interaction.guild) { | ||
if (!interaction.inGuild()) { | ||
throw new Error( | ||
'サーバー内で実行してください。rivalコマンドはDMやグループDMでは実行できません。', | ||
); | ||
} | ||
// https://github.com/discordjs/discord.js/blob/main/packages/discord.js/src/structures/BaseInteraction.js#L180-L182 | ||
// https://github.com/moeyashi/discord-mk8d-nita-record/issues/78 | ||
// https://scrapbox.io/discordjs-japan/%E3%83%9E%E3%83%8D%E3%83%BC%E3%82%B8%E3%83%A3%E3%83%BC%E3%81%8B%E3%82%89%E3%83%87%E3%83%BC%E3%82%BF%E3%82%92%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B | ||
// interaction.guildはキャッシュから取得しているしているため、interaction.guildがfalsyでinteraction.guildIdがtruthyの場合はfetchして取得する | ||
await interaction.client.guilds.fetch(interaction.guildId); | ||
if (!interaction.guild) { | ||
throw new Error( | ||
'不明なエラー:サーバーが見つかりませんでした。スクショして連絡してもらえたらありがたいです!', | ||
); | ||
} | ||
} | ||
|
||
const userQuery = interaction.options.getUser('rival'); | ||
if (!userQuery) { | ||
throw new Error('比較対象を指定してください'); | ||
} | ||
|
||
await interaction.deferReply(); | ||
|
||
const tracks = await nitaRepository.selectRival( | ||
interaction.user.id, | ||
userQuery.id, | ||
); | ||
/** @type {import('discord.js').InteractionReplyOptions} */ | ||
const res = { | ||
content: `VS ${userQuery.displayName || userQuery.username}`, | ||
}; | ||
if (tracks.length === 0) { | ||
res.content = res.content + '\n\n記録がありません'; | ||
} else { | ||
/** @type {import('discord.js').APIEmbed[]} */ | ||
const embeds = []; | ||
res.embeds = tracks.reduce( | ||
(pv, { trackCode, executorMilliseconds, rivalMilliseconds }, i) => { | ||
const track = searchTrack(trackCode); | ||
if (i % 25 === 0) { | ||
pv.push({ | ||
fields: [], | ||
}); | ||
} | ||
const diffRival = executorMilliseconds - rivalMilliseconds; | ||
pv[pv.length - 1].fields?.push({ | ||
name: track?.trackName || '', | ||
value: `${displayMilliseconds(executorMilliseconds)} VS ${displayMilliseconds(rivalMilliseconds)} ${diffRival / 1000}秒`, | ||
}); | ||
return pv; | ||
}, | ||
embeds, | ||
); | ||
} | ||
await interaction.followUp(res); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters