Skip to content

Commit

Permalink
Base of command palette
Browse files Browse the repository at this point in the history
  • Loading branch information
Xithrius committed Jan 1, 2024
1 parent 4f28a2f commit 5cd50d7
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 7 deletions.
9 changes: 3 additions & 6 deletions site/app.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
<script setup lang="ts">
useHead({
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
meta: [{ name: 'viewport', content: 'width=device-width, initial-scale=1' }],
htmlAttrs: {
lang: 'en'
}
lang: 'en',
},
})
</script>

<template>
Expand Down
64 changes: 64 additions & 0 deletions site/components/navigation/CommandPalette.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<script setup>
const commandPaletteRef = ref()
const suggestions = [
{ id: 'linear', label: 'Linear', icon: 'i-simple-icons-linear' },
{ id: 'figma', label: 'Figma', icon: 'i-simple-icons-figma' },
{ id: 'slack', label: 'Slack', icon: 'i-simple-icons-slack' },
{ id: 'youtube', label: 'YouTube', icon: 'i-simple-icons-youtube' },
{ id: 'github', label: 'GitHub', icon: 'i-simple-icons-github' }
]
const commands = [
{ id: 'clipboard-history', label: 'Clipboard History', icon: 'i-heroicons-clipboard', click: () => alert('New file') },
{ id: 'import-extension', label: 'Import Extension', icon: 'i-heroicons-wrench-screwdriver', click: () => alert('New folder') },
{ id: 'manage-extensions', label: 'Manage Extensions', icon: 'i-heroicons-wrench-screwdriver', click: () => alert('Add hashtag') }
]
const groups = [{
key: 'suggestions',
label: 'Suggestions',
inactive: 'Application',
commands: suggestions
}, {
key: 'commands',
label: 'Commands',
inactive: 'Command',
commands
}]
const ui = {
wrapper: 'flex flex-col flex-1 min-h-0 divide-y divide-gray-200 dark:divide-gray-700 bg-gray-50 dark:bg-gray-800',
container: 'relative flex-1 overflow-y-auto divide-y divide-gray-200 dark:divide-gray-700 scroll-py-2',
input: {
base: 'w-full h-14 px-4 placeholder-gray-400 dark:placeholder-gray-500 bg-transparent border-0 text-gray-900 dark:text-white focus:ring-0 focus:outline-none'
},
group: {
label: 'px-2 my-2 text-xs font-semibold text-gray-500 dark:text-gray-400',
command: {
base: 'flex justify-between select-none cursor-default items-center rounded-md px-2 py-2 gap-2 relative',
active: 'bg-gray-200 dark:bg-gray-700/50 text-gray-900 dark:text-white',
container: 'flex items-center gap-3 min-w-0',
icon: {
base: 'flex-shrink-0 w-5 h-5',
active: 'text-gray-900 dark:text-white',
inactive: 'text-gray-400 dark:text-gray-500'
},
avatar: {
size: '2xs'
}
}
}
}
</script>

<template>
<UCommandPalette
ref="commandPaletteRef"
:groups="groups"
icon=""
:ui="ui"
:autoselect="false"
placeholder="Search for apps and commands"
/>
</template>
1 change: 1 addition & 0 deletions site/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default defineNuxtConfig({
Inter: [400, 500, 600, 700, 800, 900],
'Turret+Road': [200],
'JetBrains+Mono': [200],
monospace: [200],
},
download: true,
},
Expand Down
4 changes: 3 additions & 1 deletion site/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
<HomeIntro />
</div>
</div>
<CommandPalette />
</main>
</template>

<script setup>
import CommandPalette from '~/components/navigation/CommandPalette.vue'
useSeoMeta({
title: 'xithrius.cloud',
})
</script>

0 comments on commit 5cd50d7

Please sign in to comment.