1
0
mirror of https://github.com/koloml/philomena-tagging-assistant.git synced 2026-09-23 04:19:39 +00:00

Changed naming for event name constants to differentiate them with variables

This commit is contained in:
2025-03-26 19:01:18 +04:00
parent d5ad66d902
commit 0876e5f001
14 changed files with 48 additions and 48 deletions

View File

@@ -2,7 +2,7 @@ import type { TagDropdownWrapper } from "$lib/components/TagDropdownWrapper";
import TagGroup from "$entities/TagGroup";
import { escapeRegExp } from "$lib/utils";
import { emit } from "$lib/components/events/comms";
import { eventTagCustomGroupResolved } from "$lib/components/events/tag-dropdown-events";
import { EVENT_TAG_GROUP_RESOLVED } from "$lib/components/events/tag-dropdown-events";
export default class CustomCategoriesResolver {
#exactGroupMatches = new Map<string, TagGroup>();
@@ -58,7 +58,7 @@ export default class CustomCategoriesResolver {
emit(
tagDropdown,
eventTagCustomGroupResolved,
EVENT_TAG_GROUP_RESOLVED,
this.#exactGroupMatches.get(tagName)!
);
@@ -75,7 +75,7 @@ export default class CustomCategoriesResolver {
emit(
tagDropdown,
eventTagCustomGroupResolved,
EVENT_TAG_GROUP_RESOLVED,
this.#regExpGroupMatches.get(targetRegularExpression)!
);
@@ -119,7 +119,7 @@ export default class CustomCategoriesResolver {
static #resetToOriginalCategory(tagDropdown: TagDropdownWrapper): void {
emit(
tagDropdown,
eventTagCustomGroupResolved,
EVENT_TAG_GROUP_RESOLVED,
null,
);
}