-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
in addition to last commit, rename Fancy to D
- Loading branch information
Showing
2 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<template> | ||
<div> | ||
<v-menu | ||
v-model="menu" | ||
:close-on-content-click="false" | ||
location="start" | ||
offset="10" | ||
transition="false" | ||
> | ||
<template v-slot:activator="{ props: menu }"> | ||
<v-btn class="text-subtitle-2 font-weight-regular" variant="text" v-bind="menu"> | ||
<v-icon>mdi-dots-horizontal</v-icon> | ||
</v-btn> | ||
</template> | ||
|
||
<v-card min-width="200" class="rounded-lg dispatch-side-card"> | ||
<v-divider></v-divider> | ||
<v-list lines="one"> | ||
<v-list-item | ||
v-for="(option, index) in options" | ||
:key="index" | ||
@click="selectOption(option)" | ||
density="compact" | ||
rounded="lg" | ||
active-class="ma-4" | ||
> | ||
<v-list-item-title class="dispatch-text-title">{{ option }}</v-list-item-title> | ||
</v-list-item> | ||
</v-list> | ||
</v-card> | ||
</v-menu> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ref } from "vue" | ||
import type { Ref } from "vue" | ||
const props = defineProps<{ options: string[] }>() | ||
const menu: Ref<boolean> = ref(false) | ||
const emit = defineEmits(["selection-changed"]) | ||
const selectOption = (option: string) => { | ||
emit("selection-changed", option) | ||
menu.value = false | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import "@/styles/index.scss"; | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<script setup lang="ts"> | ||
import { defineProps } from "vue" | ||
import Hotkey from "@/atomics/Hotkey.vue" | ||
// Define the Anchor type | ||
type Anchor = "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | ||
/* Define component props | ||
* text: a string that represents the tooltip text | ||
* hotkeys: an array of strings, each representing a hotkey to display | ||
*/ | ||
const props = withDefaults( | ||
defineProps<{ | ||
text: string | ||
hotkeys: string[] | ||
location?: Anchor | ||
}>(), | ||
{ | ||
location: "bottom", | ||
} | ||
) | ||
</script> | ||
|
||
<!-- | ||
* Usage Example: | ||
* | ||
* <Tooltip text="Save changes" :hotkeys="['Ctrl', 'S']"> | ||
* <template v-slot:activator="{ tooltip }"> | ||
* <v-btn v-bind="tooltip">Save</v-btn> | ||
* </template> | ||
* </Tooltip> | ||
* | ||
* This example creates a Tooltip with the text "Save changes" and hotkeys "Ctrl + S". | ||
* The tooltip is activated by a button with the text "Save". | ||
*/ | ||
--> | ||
|
||
<template> | ||
<!-- This is a tooltip component that displays text and hotkeys. --> | ||
<v-tooltip :location="props.location" open-delay="750" transition="fade-transition"> | ||
<template v-slot:activator="{ props: tooltip }"> | ||
<!-- Tooltip activator slot. Pass the activator component here. --> | ||
<slot name="activator" :tooltip="tooltip"></slot> | ||
</template> | ||
|
||
<v-row no-gutters> | ||
<!-- Tooltip text --> | ||
<v-col align-self="start"> | ||
<span>{{ text }}</span> | ||
</v-col> | ||
|
||
<!-- Hotkeys display --> | ||
<v-col align-self="end" :cols="hotkeys.length" v-if="hotkeys.length"> | ||
<Hotkey v-for="(hotkey, index) in hotkeys" :key="index" :hotkey="hotkey" /> | ||
</v-col> | ||
</v-row> | ||
</v-tooltip> | ||
</template> | ||
|
||
<style scoped> | ||
.v-tooltip :deep(.v-overlay__content) { | ||
align-items: center !important; | ||
max-height: 30px !important; | ||
opacity: 2 !important; | ||
color: rgb(25, 28, 24) !important; | ||
font-size: 0.6875rem !important; | ||
backdrop-filter: blur(12px) saturate(190%) contrast(50%) brightness(130%) !important; | ||
background-color: rgba(255, 255, 255, 0.5) !important; | ||
border: 0.5px solid rgb(216, 216, 216) !important; | ||
} | ||
</style> |