2023-06-04 16:59:38 +02:00
|
|
|
<script setup lang="ts">
|
2025-12-05 14:18:46 +01:00
|
|
|
import { ref, computed, defineAsyncComponent, onMounted, watch } from 'vue';
|
2023-10-13 18:02:34 +05:30
|
|
|
import type { IconEntity } from '../../types';
|
2024-02-27 10:09:52 +01:00
|
|
|
import { useElementSize, useEventListener, useVirtualList } from '@vueuse/core';
|
2025-11-07 11:04:40 +02:00
|
|
|
import { useRoute } from 'vitepress';
|
2023-10-13 18:02:34 +05:30
|
|
|
import IconGrid from './IconGrid.vue';
|
|
|
|
|
import InputSearch from '../base/InputSearch.vue';
|
|
|
|
|
import useSearch from '../../composables/useSearch';
|
|
|
|
|
import useSearchInput from '../../composables/useSearchInput';
|
2025-11-07 11:04:40 +02:00
|
|
|
import useSearchShortcut from '../../utils/useSearchShortcut';
|
2023-10-13 18:02:34 +05:30
|
|
|
import StickyBar from './StickyBar.vue';
|
|
|
|
|
import useFetchTags from '../../composables/useFetchTags';
|
|
|
|
|
import useFetchCategories from '../../composables/useFetchCategories';
|
2024-02-27 10:09:52 +01:00
|
|
|
import chunkArray from '../../utils/chunkArray';
|
2024-03-25 16:35:43 +01:00
|
|
|
import CarbonAdOverlay from './CarbonAdOverlay.vue';
|
2025-12-05 14:18:46 +01:00
|
|
|
import useSearchPlaceholder from '../../utils/useSearchPlaceholder.ts';
|
2024-02-27 10:09:52 +01:00
|
|
|
|
|
|
|
|
const ICON_SIZE = 56;
|
|
|
|
|
const ICON_GRID_GAP = 8;
|
2025-06-16 21:08:44 +01:00
|
|
|
|
|
|
|
|
const initialGridItems = computed(() => {
|
|
|
|
|
if (containerWidth.value === 0) return 120;
|
2025-12-05 14:18:46 +01:00
|
|
|
|
2025-06-16 21:08:44 +01:00
|
|
|
const itemsPerRow = columnSize.value || 10;
|
|
|
|
|
const visibleRows = Math.ceil(window.innerHeight / (ICON_SIZE + ICON_GRID_GAP));
|
|
|
|
|
|
2025-12-05 14:18:46 +01:00
|
|
|
return Math.min(itemsPerRow * (visibleRows + 2), 200);
|
2025-06-16 21:08:44 +01:00
|
|
|
});
|
2023-06-04 16:59:38 +02:00
|
|
|
|
|
|
|
|
const props = defineProps<{
|
2023-10-13 18:02:34 +05:30
|
|
|
icons: IconEntity[];
|
|
|
|
|
}>();
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2023-10-13 18:02:34 +05:30
|
|
|
const activeIconName = ref(null);
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2024-02-27 10:09:52 +01:00
|
|
|
const { execute: fetchTags, data: tags } = useFetchTags();
|
|
|
|
|
const { execute: fetchCategories, data: categories } = useFetchCategories();
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2024-02-27 10:09:52 +01:00
|
|
|
const overviewEl = ref<HTMLElement | null>(null);
|
2025-12-05 14:18:46 +01:00
|
|
|
const { width: containerWidth } = useElementSize(overviewEl);
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2024-02-27 10:09:52 +01:00
|
|
|
const columnSize = computed(() => {
|
2025-12-05 14:18:46 +01:00
|
|
|
return Math.floor(containerWidth.value / (ICON_SIZE + ICON_GRID_GAP));
|
2023-10-13 18:02:34 +05:30
|
|
|
});
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2023-06-15 14:44:43 +02:00
|
|
|
const mappedIcons = computed(() => {
|
2023-10-13 18:02:34 +05:30
|
|
|
if (tags.value == null) {
|
|
|
|
|
return props.icons;
|
2023-06-15 14:44:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return props.icons.map((icon) => {
|
2023-10-13 18:02:34 +05:30
|
|
|
const iconTags = tags.value[icon.name];
|
|
|
|
|
const iconCategories = categories.value?.[icon.name] ?? [];
|
2023-06-15 14:44:43 +02:00
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
...icon,
|
|
|
|
|
tags: iconTags,
|
|
|
|
|
categories: iconCategories,
|
2023-10-13 18:02:34 +05:30
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
});
|
2023-06-15 14:44:43 +02:00
|
|
|
|
2023-10-13 18:02:34 +05:30
|
|
|
const { searchInput, searchQuery, searchQueryDebounced } = useSearchInput();
|
2025-11-07 11:04:40 +02:00
|
|
|
|
|
|
|
|
const { shortcutText: kbdSearchShortcut } = useSearchShortcut(() => {
|
|
|
|
|
searchInput.value?.focus();
|
|
|
|
|
});
|
|
|
|
|
|
2023-10-13 18:02:34 +05:30
|
|
|
const searchResults = useSearch(searchQueryDebounced, mappedIcons, [
|
2023-06-04 16:59:38 +02:00
|
|
|
{ name: 'name', weight: 3 },
|
2024-02-27 10:09:52 +01:00
|
|
|
{ name: 'aliases', weight: 3 },
|
2023-06-04 16:59:38 +02:00
|
|
|
{ name: 'tags', weight: 2 },
|
|
|
|
|
{ name: 'categories', weight: 1 },
|
2023-10-13 18:02:34 +05:30
|
|
|
]);
|
2025-12-05 14:18:46 +01:00
|
|
|
const searchPlaceholder = useSearchPlaceholder(searchQuery, searchResults);
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2024-02-27 10:09:52 +01:00
|
|
|
const chunkedIcons = computed(() => {
|
|
|
|
|
return chunkArray(searchResults.value, columnSize.value);
|
|
|
|
|
});
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2025-12-05 14:18:46 +01:00
|
|
|
const { list, containerProps, wrapperProps, scrollTo } = useVirtualList(chunkedIcons, {
|
|
|
|
|
itemHeight: ICON_SIZE + ICON_GRID_GAP,
|
|
|
|
|
overscan: 10,
|
|
|
|
|
});
|
2024-02-27 10:09:52 +01:00
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
containerProps.ref.value = document.documentElement;
|
2025-12-05 14:18:46 +01:00
|
|
|
useEventListener(window, 'scroll', containerProps.onScroll);
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2025-11-07 11:04:40 +02:00
|
|
|
// Check if we should focus the search input from URL parameter
|
2025-12-05 14:18:46 +01:00
|
|
|
const route = useRoute();
|
2025-11-07 11:04:40 +02:00
|
|
|
if (route.data?.relativePath && window.location.search.includes('focus')) {
|
2025-12-05 14:18:46 +01:00
|
|
|
searchInput.value?.focus();
|
2025-11-07 11:04:40 +02:00
|
|
|
}
|
2025-12-05 14:18:46 +01:00
|
|
|
});
|
2023-06-04 16:59:38 +02:00
|
|
|
|
|
|
|
|
function setActiveIconName(name: string) {
|
2023-10-13 18:02:34 +05:30
|
|
|
activeIconName.value = name;
|
2023-06-04 16:59:38 +02:00
|
|
|
}
|
|
|
|
|
|
2023-06-15 14:44:43 +02:00
|
|
|
function onFocusSearchInput() {
|
|
|
|
|
if (tags.value == null) {
|
2023-10-13 18:02:34 +05:30
|
|
|
fetchTags();
|
2023-06-15 14:44:43 +02:00
|
|
|
}
|
|
|
|
|
if (categories.value == null) {
|
2023-10-13 18:02:34 +05:30
|
|
|
fetchCategories();
|
2023-06-15 14:44:43 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-13 18:02:34 +05:30
|
|
|
const NoResults = defineAsyncComponent(() => import('./NoResults.vue'));
|
2023-06-04 16:59:38 +02:00
|
|
|
|
2023-10-13 18:02:34 +05:30
|
|
|
const IconDetailOverlay = defineAsyncComponent(() => import('./IconDetailOverlay.vue'));
|
2024-02-27 10:09:52 +01:00
|
|
|
|
|
|
|
|
watch(searchQueryDebounced, () => {
|
2025-12-05 14:18:46 +01:00
|
|
|
scrollTo(0);
|
|
|
|
|
});
|
2024-03-25 16:35:43 +01:00
|
|
|
|
|
|
|
|
function handleCloseDrawer() {
|
|
|
|
|
setActiveIconName('');
|
|
|
|
|
|
|
|
|
|
window.history.pushState({}, '', '/icons/');
|
|
|
|
|
}
|
2023-06-04 16:59:38 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-12-05 14:18:46 +01:00
|
|
|
<div
|
|
|
|
|
ref="overviewEl"
|
|
|
|
|
class="overview-container"
|
|
|
|
|
>
|
2024-02-27 10:09:52 +01:00
|
|
|
<StickyBar>
|
|
|
|
|
<InputSearch
|
2026-01-02 14:48:03 +07:00
|
|
|
:placeholder="`Search ${icons.length} icons…`"
|
2024-02-27 10:09:52 +01:00
|
|
|
v-model="searchQuery"
|
|
|
|
|
ref="searchInput"
|
2025-11-07 11:04:40 +02:00
|
|
|
:shortcut="kbdSearchShortcut"
|
2024-02-27 10:09:52 +01:00
|
|
|
class="input-wrapper"
|
|
|
|
|
@focus="onFocusSearchInput"
|
|
|
|
|
/>
|
|
|
|
|
</StickyBar>
|
|
|
|
|
<NoResults
|
2025-12-05 14:18:46 +01:00
|
|
|
v-if="searchPlaceholder.isNoResults"
|
|
|
|
|
:searchQuery="searchPlaceholder.query"
|
|
|
|
|
:isBrandSearch="searchPlaceholder.isBrand"
|
2024-02-27 10:09:52 +01:00
|
|
|
@clear="searchQuery = ''"
|
2023-06-04 16:59:38 +02:00
|
|
|
/>
|
2024-11-29 19:02:31 +01:00
|
|
|
<IconGrid
|
|
|
|
|
v-else-if="list.length === 0"
|
|
|
|
|
overlayMode
|
2025-06-16 21:08:44 +01:00
|
|
|
:icons="searchResults.slice(0, initialGridItems)"
|
2024-11-29 19:02:31 +01:00
|
|
|
:activeIcon="activeIconName"
|
|
|
|
|
@setActiveIcon="setActiveIconName"
|
|
|
|
|
/>
|
|
|
|
|
<div
|
|
|
|
|
v-bind="wrapperProps"
|
|
|
|
|
class="icon"
|
|
|
|
|
v-else
|
|
|
|
|
>
|
2024-02-27 10:09:52 +01:00
|
|
|
<IconGrid
|
|
|
|
|
v-for="{ index, data: icons } in list"
|
|
|
|
|
:key="index"
|
|
|
|
|
overlayMode
|
|
|
|
|
:icons="icons"
|
|
|
|
|
:activeIcon="activeIconName"
|
|
|
|
|
@setActiveIcon="setActiveIconName"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2023-06-04 16:59:38 +02:00
|
|
|
<IconDetailOverlay
|
2023-06-15 14:44:43 +02:00
|
|
|
:iconName="activeIconName"
|
2024-03-25 16:35:43 +01:00
|
|
|
@close="handleCloseDrawer"
|
2023-06-04 16:59:38 +02:00
|
|
|
/>
|
2024-03-25 16:35:43 +01:00
|
|
|
|
|
|
|
|
<CarbonAdOverlay :drawerOpen="!!activeIconName" />
|
2023-06-04 16:59:38 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.icons {
|
2024-02-27 10:09:52 +01:00
|
|
|
margin-bottom: 8px;
|
2023-06-04 16:59:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-wrapper {
|
|
|
|
|
width: 100%;
|
docs(version-1): Version 1 website (#4142)
* Update images
* Adjust color
* update accessebility
* Add matrix hero
* Add typescript documentation
* Add basics section to vue pages
* Add svelte docs
* Fix dynamic sidebar
* Add animation?
* Some adjustments
* Adjust animation
* Updates docs
* Add scaledown animation
* Add docs for vue types
* Fix layout accessibility page
* fix framework select
* adjust easing home animation
* Write docs for Vue
* Adjust animation home
* Adjust home hero animation
* Finish svelte docs
* Add solid pages
* remove spiral animation component
* Add group icons
* Added solid docs
* update preact docs
* Adjust examples preact docs
* Add snackplayer
* Get new editor
* Save this
* Add examples
* Adjust styling
* setup custom sandpack
* Add script
* Format files
* Make sandpack plugin work
* migrate react docs
* Fix svelte and solid examples
* Migrate to solid packages
* Add darkmode package logos
* Fix bug in selector
* migrate vue examples
* migrate advanced vue items
* migrate preact and svelte examples
* Add astro docs
* adding more docs on guide for lucide library
* Fix home animation
* Cleanup
* Added resources page, with more details and content
* Add hero badge for Version 1
* Fix vercel json
* Update missing paths
* Fix build?
* Replace lucide-vue-next
* Fix build
* Add some docs
* update markdown
* Setup angular docs
* Add basic angular docs
* Adjust code examples
* Update title and descriptions
* Update accessibility link
* Update title and description
* Add og image
* Fix alignment
* Add migration guides
* Adjust version 1 markdown file
* Add migration guide to the main list
* Minor fixes
* Update docs
* Apply feedback
* Select icons
* Add pointer events none
* Fix package links homepage
* Format code
* Fix types
* Fix focus
* Fix build
* Fix focus
* Apply feedback
* Adjust imports
* Adjust imports
* Fix search
* Apply feedback
* Fix import in font docs
* Small fixes
* docs(guide): added easter egg icon. stay tuned, guys 😉
* Add llm txt plugin
* Adjust logo top
* docs(version-1): upgraded @lucide/angular guide for v1 website (#4144)
* docs(guide/angular): rewrite some angular documentation
* docs(guide/angular): extens angular guide with combining icons & icon provider guides
* docs(guide/angular): fix angular sandbox, still needs @lucide/angular release tho
* docs(guide/angular): rework the getting started page a bit more, refactor some more prop=>input occurences
* docs(guide/angular): context provider => provideLucideConfig
* Update docs/guide/angular/migration.md
Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
* Update docs/guide/angular/advanced/combining-icons.md
Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
* Apply suggestions from code review
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* docs(guide/angular): rework a11y for better flow & pacing
* docs(guide/angular): salvage original phrase, it has better flow
* docs(guide/angular): some more a11y nitpicking
* docs(guide/angular): reduce llm fatigue
* docs(guides/angular): fix app component selector
* docs(guides/angular): fix angular sandpacks
* Add sandpack angular to improve tree-shakable stack
* Update docs/guide/angular/getting-started.md
* docs(guides/angular): fix user import in combinding icons guide
* docs(guides/angular): fix nested SVG phrasing
* Update docs/guide/angular/advanced/with-lucide-lab.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update docs/guide/angular/advanced/filled-icons.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* docs(guides/angular): fix createLucideIcon guide
* docs(guides/angular): upgrade all relevant angular sandpack demos
---------
Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* fix(docs): add autogenerated OG images to gitignore
* fix(docs): unify the case of "Lucide" & "Lucide Lab" over all docs and readmes
* Fix build
* Add next tag to all installation guides
* Add top bar notification
* Minor fixes
* Update text
* Add todos
* Update og image
* Adjust install command
* Color top bar
* fix(docs): ignore all OG images, expect general.png
* fix(docs): fix the package list, hide @lucide/icons, downgrade angular logo, link to v0 guide, fix package title alignment
* Update docs/.vitepress/theme/components/base/LayoutTop.vue
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update docs/guide/react/advanced/dynamic-icon-component.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update CONTRIBUTING.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update docs/.vitepress/sidebar/resources.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Fix code example
* fix(docs): version 1 => Version 1
* feat(docs): add angular to new features in v1
* Fix next line issue
* feat(docs): fix typo (code example_s_)
* Fix deadlink
* feat(docs): fix some more typos and irky grammar
* feat(docs): fix lowercase lucide in sidebar 😅
* Update docs/guide/version-1.md
Co-authored-by: Karsa <contact@karsa.org>
---------
Co-authored-by: Karsa <contact@karsa.org>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-03-20 17:04:28 +01:00
|
|
|
/* view-transition-name: icons-search-box; */
|
2023-06-04 16:59:38 +02:00
|
|
|
}
|
|
|
|
|
</style>
|