iceshrimp/packages/client/src/components/MkKeyValue.vue

59 lines
1 KiB
Vue
Raw Normal View History

2021-11-28 12:07:37 +01:00
<template>
2022-01-04 07:36:14 +01:00
<div class="alqyeyti" :class="{ oneline }">
2021-11-28 12:07:37 +01:00
<div class="key">
<slot name="key"></slot>
</div>
<div class="value">
<slot name="value"></slot>
2023-03-11 22:01:04 +01:00
<button v-if="copy" v-tooltip="i18n.ts.copy" class="_textButton" style="margin-left: 0.5em;" @click="copy_"><i class="ph-clipboard-text ph-bold"></i></button>
2021-11-28 12:07:37 +01:00
</div>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
2021-11-28 12:07:37 +01:00
import copyToClipboard from '@/scripts/copy-to-clipboard';
import * as os from '@/os';
2022-07-20 15:24:26 +02:00
import { i18n } from '@/i18n';
2021-11-28 12:07:37 +01:00
const props = withDefaults(defineProps<{
2022-06-29 07:19:40 +02:00
copy?: string | null;
oneline?: boolean;
}>(), {
copy: null,
oneline: false,
2021-11-28 12:07:37 +01:00
});
const copy_ = () => {
copyToClipboard(props.copy);
os.success();
};
2021-11-28 12:07:37 +01:00
</script>
<style lang="scss" scoped>
.alqyeyti {
> .key {
font-size: 0.85em;
padding: 0 0 0.25em 0;
opacity: 0.75;
}
2022-01-04 07:36:14 +01:00
&.oneline {
display: flex;
> .key {
width: 30%;
font-size: 1em;
padding: 0 8px 0 0;
}
> .value {
width: 70%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2022-01-04 07:36:14 +01:00
}
}
2021-11-28 12:07:37 +01:00
}
</style>