mirror of https://github.com/VERT-sh/VERT.git
parent
5da55a56a1
commit
70862a5abf
|
@ -22,6 +22,7 @@
|
||||||
let open = $state(false);
|
let open = $state(false);
|
||||||
let hover = $state(false);
|
let hover = $state(false);
|
||||||
let dropdown = $state<HTMLDivElement>();
|
let dropdown = $state<HTMLDivElement>();
|
||||||
|
let initialCategory = $state<string | null>();
|
||||||
let currentCategory = $state<string | null>();
|
let currentCategory = $state<string | null>();
|
||||||
let searchQuery = $state("");
|
let searchQuery = $state("");
|
||||||
let dropdownMenu: HTMLElement | undefined = $state();
|
let dropdownMenu: HTMLElement | undefined = $state();
|
||||||
|
@ -35,6 +36,7 @@
|
||||||
);
|
);
|
||||||
currentCategory =
|
currentCategory =
|
||||||
foundCat || Object.keys(categories)[0] || null;
|
foundCat || Object.keys(categories)[0] || null;
|
||||||
|
initialCategory = currentCategory;
|
||||||
} else {
|
} else {
|
||||||
// find category based on file types
|
// find category based on file types
|
||||||
const fileFormats = files.files.map((f) => f.from);
|
const fileFormats = files.files.map((f) => f.from);
|
||||||
|
@ -45,6 +47,7 @@
|
||||||
);
|
);
|
||||||
currentCategory =
|
currentCategory =
|
||||||
foundCat || Object.keys(categories)[0] || null;
|
foundCat || Object.keys(categories)[0] || null;
|
||||||
|
initialCategory = currentCategory;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -59,35 +62,99 @@
|
||||||
categories[cat].canConvertTo?.includes(currentCategory || ""),
|
categories[cat].canConvertTo?.includes(currentCategory || ""),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const shouldShowFormat = (format: string, category: string): boolean => {
|
||||||
|
const currentFileExt = files.files[0]?.from;
|
||||||
|
if (!currentFileExt) return true;
|
||||||
|
|
||||||
|
if (category === initialCategory) {
|
||||||
|
return true;
|
||||||
|
} else if (
|
||||||
|
initialCategory &&
|
||||||
|
categories[initialCategory].formats.includes(format)
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatInOtherCategories = Object.keys(categories)
|
||||||
|
.filter((cat) => cat !== category)
|
||||||
|
.some((cat) => categories[cat].formats.includes(format));
|
||||||
|
|
||||||
|
if (formatInOtherCategories) {
|
||||||
|
const nativeCategory = Object.keys(categories).find((cat) =>
|
||||||
|
cat.toLowerCase().includes(format.slice(1)),
|
||||||
|
);
|
||||||
|
|
||||||
|
return category === nativeCategory;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
const filteredData = $derived.by(() => {
|
const filteredData = $derived.by(() => {
|
||||||
|
// if no query, return formats for current category
|
||||||
if (!searchQuery) {
|
if (!searchQuery) {
|
||||||
return {
|
return {
|
||||||
categories: availableCategories,
|
categories: availableCategories,
|
||||||
formats: currentCategory
|
formats: currentCategory
|
||||||
? categories[currentCategory].formats
|
? categories[currentCategory].formats.filter((format) =>
|
||||||
|
shouldShowFormat(format, currentCategory || ""),
|
||||||
|
)
|
||||||
: [],
|
: [],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
const searchLower = searchQuery.toLowerCase();
|
||||||
|
|
||||||
// filter categories that have matching formats
|
// find all categories that have formats matching the search query
|
||||||
const matchingCategories = availableCategories.filter((cat) =>
|
const matchingCategories = availableCategories.filter((cat) =>
|
||||||
categories[cat].formats.some((format) =>
|
categories[cat].formats.some(
|
||||||
format.toLowerCase().includes(searchQuery.toLowerCase()),
|
(format) =>
|
||||||
|
format.toLowerCase().includes(searchLower) &&
|
||||||
|
shouldShowFormat(format, cat),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
if (matchingCategories.length === 0) {
|
||||||
|
return {
|
||||||
|
categories: availableCategories,
|
||||||
|
formats: [],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// only show formats from the current category that match the search
|
// find all matching formats across all categories
|
||||||
const filteredFormats =
|
const allMatchingFormats = matchingCategories.flatMap((cat) => {
|
||||||
currentCategory && categories[currentCategory]
|
return categories[cat].formats
|
||||||
? categories[currentCategory].formats.filter((format) =>
|
.filter(
|
||||||
format
|
(format) =>
|
||||||
.toLowerCase()
|
format.toLowerCase().includes(searchLower) &&
|
||||||
.includes(searchQuery.toLowerCase()),
|
shouldShowFormat(format, cat),
|
||||||
)
|
)
|
||||||
: [];
|
.map((format) => ({ format, category: cat }));
|
||||||
|
});
|
||||||
|
|
||||||
|
// if current category has no matches, switch to first category that does
|
||||||
|
const currentCategoryHasMatches =
|
||||||
|
currentCategory &&
|
||||||
|
allMatchingFormats.some(
|
||||||
|
(item) => item.category === currentCategory,
|
||||||
|
);
|
||||||
|
if (!currentCategoryHasMatches && matchingCategories.length > 0) {
|
||||||
|
const newCategory = matchingCategories[0];
|
||||||
|
currentCategory = newCategory;
|
||||||
|
}
|
||||||
|
|
||||||
|
// return formats only from the current category that match the search
|
||||||
|
const filteredFormats = currentCategory
|
||||||
|
? categories[currentCategory].formats.filter(
|
||||||
|
(format) =>
|
||||||
|
format.toLowerCase().includes(searchLower) &&
|
||||||
|
shouldShowFormat(format, currentCategory || ""),
|
||||||
|
)
|
||||||
|
: [];
|
||||||
return {
|
return {
|
||||||
categories: matchingCategories,
|
categories:
|
||||||
|
matchingCategories.length > 0
|
||||||
|
? matchingCategories
|
||||||
|
: availableCategories,
|
||||||
formats: filteredFormats,
|
formats: filteredFormats,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -95,6 +162,21 @@
|
||||||
const selectOption = (option: string) => {
|
const selectOption = (option: string) => {
|
||||||
selected = option;
|
selected = option;
|
||||||
open = false;
|
open = false;
|
||||||
|
|
||||||
|
// find the category of this option if it's not in the current category
|
||||||
|
if (
|
||||||
|
currentCategory &&
|
||||||
|
!categories[currentCategory].formats.includes(option)
|
||||||
|
) {
|
||||||
|
const formatCategory = Object.keys(categories).find((cat) =>
|
||||||
|
categories[cat].formats.includes(option),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (formatCategory) {
|
||||||
|
currentCategory = formatCategory;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onselect?.(option);
|
onselect?.(option);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -104,7 +186,34 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSearch = (event: Event) => {
|
const handleSearch = (event: Event) => {
|
||||||
searchQuery = (event.target as HTMLInputElement).value;
|
const query = (event.target as HTMLInputElement).value;
|
||||||
|
searchQuery = query;
|
||||||
|
|
||||||
|
// find which categories have matching formats & switch
|
||||||
|
if (query) {
|
||||||
|
const queryLower = query.toLowerCase();
|
||||||
|
const categoriesWithMatches = availableCategories.filter((cat) =>
|
||||||
|
categories[cat].formats.some(
|
||||||
|
(format) =>
|
||||||
|
format.toLowerCase().includes(queryLower) &&
|
||||||
|
shouldShowFormat(format, cat),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (categoriesWithMatches.length > 0) {
|
||||||
|
const currentHasMatches =
|
||||||
|
currentCategory &&
|
||||||
|
categories[currentCategory].formats.some(
|
||||||
|
(format) =>
|
||||||
|
format.toLowerCase().includes(queryLower) &&
|
||||||
|
shouldShowFormat(format, currentCategory || ""),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!currentHasMatches) {
|
||||||
|
currentCategory = categoriesWithMatches[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
|
@ -184,7 +293,6 @@
|
||||||
{#if open}
|
{#if open}
|
||||||
<div
|
<div
|
||||||
bind:this={dropdownMenu}
|
bind:this={dropdownMenu}
|
||||||
style={hover ? "will-change: opacity, fade, transform" : ""}
|
|
||||||
transition:fade={{
|
transition:fade={{
|
||||||
duration,
|
duration,
|
||||||
easing: quintOut,
|
easing: quintOut,
|
||||||
|
@ -202,43 +310,59 @@
|
||||||
class="flex-grow w-full !pl-11 !pr-3 rounded-lg bg-panel text-foreground"
|
class="flex-grow w-full !pl-11 !pr-3 rounded-lg bg-panel text-foreground"
|
||||||
bind:value={searchQuery}
|
bind:value={searchQuery}
|
||||||
oninput={handleSearch}
|
oninput={handleSearch}
|
||||||
|
onfocus={() => {}}
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
class="absolute left-4 top-1/2 -translate-y-1/2 flex items-center"
|
class="absolute left-4 top-1/2 -translate-y-1/2 flex items-center"
|
||||||
>
|
>
|
||||||
<SearchIcon class="w-4 h-4" />
|
<SearchIcon class="w-4 h-4" />
|
||||||
</span>
|
</span>
|
||||||
|
{#if searchQuery}
|
||||||
|
<span
|
||||||
|
class="absolute right-2 top-1/2 -translate-y-1/2 text-xs text-muted"
|
||||||
|
style="font-size: 0.7rem;"
|
||||||
|
>
|
||||||
|
{filteredData.formats.length}
|
||||||
|
{filteredData.formats.length === 1
|
||||||
|
? "result"
|
||||||
|
: "results"}
|
||||||
|
</span>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- available categories -->
|
<!-- available categories -->
|
||||||
<div class="flex items-center justify-between">
|
<div class="flex items-center justify-between">
|
||||||
{#each filteredData.categories as category}
|
{#each filteredData.categories as category}
|
||||||
<button
|
<button
|
||||||
class="flex-grow text-lg text-muted hover:text-muted/20 border-b-[1px] pb-2 capitalize
|
class="flex-grow text-lg hover:text-muted/20 border-b-[1px] pb-2 capitalize
|
||||||
{currentCategory === category
|
{currentCategory === category
|
||||||
? 'text-accent border-b-accent'
|
? 'text-accent border-b-accent'
|
||||||
: 'border-b-separator'}"
|
: 'border-b-separator text-muted'}"
|
||||||
onclick={() => selectCategory(category)}
|
onclick={() => selectCategory(category)}
|
||||||
>
|
>
|
||||||
{category}
|
{category}
|
||||||
</button>
|
</button>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- available formats -->
|
<!-- available formats -->
|
||||||
<div class="max-h-80 overflow-y-auto grid grid-cols-3 gap-2 p-2">
|
<div class="max-h-80 overflow-y-auto grid grid-cols-3 gap-2 p-2">
|
||||||
{#each filteredData.formats as format}
|
{#if filteredData.formats.length > 0}
|
||||||
<button
|
{#each filteredData.formats as format}
|
||||||
class="w-full p-2 text-center rounded-xl
|
<button
|
||||||
{format === selected
|
class="w-full p-2 text-center rounded-xl
|
||||||
? 'bg-accent text-black'
|
{format === selected ? 'bg-accent text-black' : 'hover:bg-panel'}"
|
||||||
: 'hover:bg-panel'}"
|
onclick={() => selectOption(format)}
|
||||||
onclick={() => selectOption(format)}
|
>
|
||||||
>
|
{format}
|
||||||
{format}
|
</button>
|
||||||
</button>
|
{/each}
|
||||||
{/each}
|
{:else}
|
||||||
|
<div class="col-span-3 text-center p-4 text-muted">
|
||||||
|
{searchQuery
|
||||||
|
? "No formats match your search"
|
||||||
|
: "No formats available"}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
|
@ -23,8 +23,8 @@ export function getConverterByFormat(format: string) {
|
||||||
|
|
||||||
export const categories: Categories = {
|
export const categories: Categories = {
|
||||||
image: { formats: [""], canConvertTo: [] },
|
image: { formats: [""], canConvertTo: [] },
|
||||||
video: { formats: [""], canConvertTo: [] }, // add "audio" when "nullptr/experimental-audio-to-video" is implemented
|
video: { formats: [""], canConvertTo: ["audio"] },
|
||||||
audio: { formats: [""], canConvertTo: [] }, // add "video" when "nullptr/experimental-audio-to-video" is implemented
|
audio: { formats: [""], canConvertTo: ["video"] },
|
||||||
docs: { formats: [""], canConvertTo: [] },
|
docs: { formats: [""], canConvertTo: [] },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ categories.docs.formats =
|
||||||
.find((c) => c.name === "pandoc")
|
.find((c) => c.name === "pandoc")
|
||||||
?.formatStrings((f) => f.toSupported)
|
?.formatStrings((f) => f.toSupported)
|
||||||
.filter((f) => f !== ".pdf") || [];
|
.filter((f) => f !== ".pdf") || [];
|
||||||
|
|
||||||
export const byNative = (format: string) => {
|
export const byNative = (format: string) => {
|
||||||
return (a: Converter, b: Converter) => {
|
return (a: Converter, b: Converter) => {
|
||||||
const aFormat = a.supportedFormats.find((f) => f.name === format);
|
const aFormat = a.supportedFormats.find((f) => f.name === format);
|
||||||
|
|
|
@ -113,7 +113,6 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#snippet fileItem(file: VertFile, index: number)}
|
{#snippet fileItem(file: VertFile, index: number)}
|
||||||
{@const availableConverters = file.findConverters()}
|
|
||||||
{@const currentConverter = converters.find(
|
{@const currentConverter = converters.find(
|
||||||
(c) =>
|
(c) =>
|
||||||
c.formatStrings((f) => f.fromSupported).includes(file.from) &&
|
c.formatStrings((f) => f.fromSupported).includes(file.from) &&
|
||||||
|
|
Loading…
Reference in New Issue