chore (backend): remove unused file
This commit is contained in:
parent
d6332a8adc
commit
8234858ab7
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
import { IsNull } from "typeorm";
|
|
||||||
import { config } from "@/config.js";
|
|
||||||
import type { NoteReaction } from "@/models/entities/note-reaction.js";
|
|
||||||
import type { Note } from "@/models/entities/note.js";
|
|
||||||
import { Emojis } from "@/models/index.js";
|
|
||||||
import { renderEmoji } from "backend-rs";
|
|
||||||
|
|
||||||
export const renderLike = async (noteReaction: NoteReaction, note: Note) => {
|
|
||||||
const reaction = noteReaction.reaction;
|
|
||||||
|
|
||||||
const object = {
|
|
||||||
type: "Like",
|
|
||||||
id: `${config.url}/likes/${noteReaction.id}`,
|
|
||||||
actor: `${config.url}/users/${noteReaction.userId}`,
|
|
||||||
object: note.uri ? note.uri : `${config.url}/notes/${noteReaction.noteId}`,
|
|
||||||
content: reaction,
|
|
||||||
} as any;
|
|
||||||
|
|
||||||
if (reaction.startsWith(":")) {
|
|
||||||
const name = reaction.replace(/:/g, "");
|
|
||||||
const emoji = await Emojis.findOneBy({
|
|
||||||
name,
|
|
||||||
host: IsNull(),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (emoji) object.tag = [renderEmoji(emoji)];
|
|
||||||
}
|
|
||||||
|
|
||||||
return object;
|
|
||||||
};
|
|
Loading…
Reference in a new issue