feat: Sort document tags alphabetically and prevent hover/focus on empty folder menu items.

This commit is contained in:
2025-11-28 19:46:25 +01:00
parent 34604c5842
commit 4fd1b712fa
5 changed files with 23 additions and 5 deletions
@@ -1,4 +1,4 @@
import React from 'react';
import React, { useMemo } from 'react';
import { getTagColorStyle } from '../../utils/colors';
import { writeTagTransferData } from '../tagTransfer';
import type { DocumentTag } from '../../types/documents';
@@ -23,13 +23,21 @@ const DocumentTags: React.FC<DocumentTagsProps> = ({
onTagDragStart,
onTagDragEnd,
}) => {
const sortedTags = useMemo(() => {
return [...tags].sort((a, b) => {
const labelA = (a.label || '').toLowerCase();
const labelB = (b.label || '').toLowerCase();
return labelA.localeCompare(labelB);
});
}, [tags]);
if (tags.length === 0) {
return null;
}
return (
<>
{tags.map((tag, index) => {
{sortedTags.map((tag, index) => {
const colorSource = tag?.color || tagLookupById?.get(tag.id)?.color;
const style = getTagColorStyle(colorSource);
const tagId = tag?.id ?? null;
@@ -4,7 +4,7 @@ import type { Identifier } from '../../types/identifiers';
import type { DocumentTag } from '../../types/documents';
interface EntryTagsProps {
tags: Identifier[];
tags: DocumentTag[];
tagLookupById?: Map<Identifier, DocumentTag> | null;
onTagClick?: (tagId: Identifier) => void;
docId: Identifier;