mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
import { Case } from "../../../data/entities/Case";
|
|
import { MessageContent } from "eris";
|
|
import moment from "moment-timezone";
|
|
import { CaseTypes } from "../../../data/CaseTypes";
|
|
import { PluginData, helpers } from "knub";
|
|
import { CasesPluginType } from "../types";
|
|
import { CaseTypeColors } from "../../../data/CaseTypeColors";
|
|
import { resolveCaseId } from "./resolveCaseId";
|
|
import { chunkLines, chunkMessageLines, emptyEmbedValue } from "../../../utils";
|
|
|
|
export async function getCaseEmbed(
|
|
pluginData: PluginData<CasesPluginType>,
|
|
caseOrCaseId: Case | number,
|
|
): Promise<MessageContent> {
|
|
const theCase = await pluginData.state.cases.with("notes").find(resolveCaseId(caseOrCaseId));
|
|
if (!theCase) return null;
|
|
|
|
const createdAt = moment(theCase.created_at);
|
|
const actionTypeStr = CaseTypes[theCase.type].toUpperCase();
|
|
|
|
const embed: any = {
|
|
title: `${actionTypeStr} - Case #${theCase.case_number}`,
|
|
footer: {
|
|
text: `Case created at ${createdAt.format("YYYY-MM-DD [at] HH:mm")}`,
|
|
},
|
|
fields: [
|
|
{
|
|
name: "User",
|
|
value: `${theCase.user_name}\n<@!${theCase.user_id}>`,
|
|
inline: true,
|
|
},
|
|
{
|
|
name: "Moderator",
|
|
value: `${theCase.mod_name}\n<@!${theCase.mod_id}>`,
|
|
inline: true,
|
|
},
|
|
],
|
|
};
|
|
|
|
if (theCase.pp_id) {
|
|
embed.fields[1].value += `\np.p. ${theCase.pp_name}\n<@!${theCase.pp_id}>`;
|
|
}
|
|
|
|
if (theCase.is_hidden) {
|
|
embed.title += " (hidden)";
|
|
}
|
|
|
|
if (CaseTypeColors[theCase.type]) {
|
|
embed.color = CaseTypeColors[theCase.type];
|
|
}
|
|
|
|
if (theCase.notes.length) {
|
|
theCase.notes.forEach((note: any) => {
|
|
const noteDate = moment(note.created_at);
|
|
let noteBody = note.body.trim();
|
|
if (noteBody === "") {
|
|
noteBody = emptyEmbedValue;
|
|
}
|
|
|
|
const chunks = chunkMessageLines(noteBody, 1014);
|
|
|
|
for (let i = 0; i < chunks.length; i++) {
|
|
if (i === 0) {
|
|
embed.fields.push({
|
|
name: `${note.mod_name} at ${noteDate.format("YYYY-MM-DD [at] HH:mm")}:`,
|
|
value: chunks[i],
|
|
});
|
|
} else {
|
|
embed.fields.push({
|
|
name: emptyEmbedValue,
|
|
value: chunks[i],
|
|
});
|
|
}
|
|
}
|
|
});
|
|
} else {
|
|
embed.fields.push({
|
|
name: "!!! THIS CASE HAS NO NOTES !!!",
|
|
value: "\u200B",
|
|
});
|
|
}
|
|
|
|
return { embed };
|
|
}
|