feat: add copy action indicator to color table

This commit is contained in:
Sebin Nyshkim 2023-01-18 18:35:52 +01:00
parent 5b16aae03c
commit e29a98f06d
2 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,3 @@
<template>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M280 64h40c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64h40 9.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64H280zM64 112c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H304v24c0 13.3-10.7 24-24 24H192 104c-13.3 0-24-10.7-24-24V112H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"/></svg>
</template>

View file

@ -1,4 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import ClipboardIcon from "@/assets/icons/ClipboardIcon.vue";
interface ColorDict { interface ColorDict {
name: string; name: string;
value: string; value: string;
@ -8,6 +10,10 @@ interface Props {
colors: ColorDict[]; colors: ColorDict[];
} }
const copyToClipboard = (value: string) => {
navigator.clipboard.writeText(value);
};
defineProps<Props>(); defineProps<Props>();
</script> </script>
@ -23,7 +29,13 @@ defineProps<Props>();
<tbody class="color-table__body"> <tbody class="color-table__body">
<tr class="color-table__row" v-for="(color, idx) in colors" :key="idx"> <tr class="color-table__row" v-for="(color, idx) in colors" :key="idx">
<td class="color-table__cell name">{{ color.name }}</td> <td class="color-table__cell name">{{ color.name }}</td>
<td class="color-table__cell value">{{ color.value }}</td> <td
class="color-table__cell value"
@click.prevent="copyToClipboard(color.value)"
>
{{ color.value }}
<ClipboardIcon class="color-table__copy" />
</td>
<td <td
class="color-table__cell color" class="color-table__cell color"
:style="{ 'background-color': color.value }" :style="{ 'background-color': color.value }"
@ -49,11 +61,17 @@ defineProps<Props>();
&.value { &.value {
font-family: monospace; font-family: monospace;
text-align: center; text-align: center;
cursor: pointer;
} }
&.color { &.color {
min-width: 10vw; min-width: 10vw;
} }
} }
&__copy {
margin: 0 0 -0.25rem 0;
max-height: 1.25rem;
}
} }
</style> </style>