egirlskey/packages/frontend/src/components/MkKeyValue.vue

64 lines
1.2 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2021-11-28 11:07:37 +00:00
<template>
2023-05-19 04:58:09 +00:00
<div :class="[$style.root, { [$style.oneline]: oneline }]">
<div :class="$style.key">
2021-11-28 11:07:37 +00:00
<slot name="key"></slot>
</div>
2023-05-19 04:58:09 +00:00
<div :class="$style.value">
2021-11-28 11:07:37 +00:00
<slot name="value"></slot>
2023-09-30 19:53:52 +00:00
<button v-if="copy" v-tooltip="i18n.ts.copy" class="_textButton" style="margin-left: 0.5em;" @click="copy_"><i class="ph-copy ph-bold ph-lg"></i></button>
2021-11-28 11:07:37 +00:00
</div>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
2023-09-19 07:37:43 +00:00
import copyToClipboard from '@/scripts/copy-to-clipboard.js';
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
2021-11-28 11:07:37 +00:00
const props = withDefaults(defineProps<{
2022-06-29 05:19:40 +00:00
copy?: string | null;
oneline?: boolean;
}>(), {
copy: null,
oneline: false,
2021-11-28 11:07:37 +00:00
});
const copy_ = () => {
copyToClipboard(props.copy);
os.success();
};
2021-11-28 11:07:37 +00:00
</script>
2023-05-19 04:58:09 +00:00
<style lang="scss" module>
.root {
2022-01-04 06:36:14 +00:00
&.oneline {
display: flex;
2023-05-19 04:58:09 +00:00
.key {
2022-01-04 06:36:14 +00:00
width: 30%;
font-size: 1em;
padding: 0 8px 0 0;
}
2023-05-19 04:58:09 +00:00
.value {
2022-01-04 06:36:14 +00:00
width: 70%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2022-01-04 06:36:14 +00:00
}
}
2021-11-28 11:07:37 +00:00
}
2023-05-19 04:58:09 +00:00
.key {
font-size: 0.85em;
padding: 0 0 0.25em 0;
opacity: 0.75;
}
2021-11-28 11:07:37 +00:00
</style>