mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
110 lines
3.0 KiB
Vue
110 lines
3.0 KiB
Vue
<template>
|
|
<dropdown class="content-menu" :placement="placement" offset="5">
|
|
<template #default="{ openMenu, closeMenu }">
|
|
<slot name="button">
|
|
<menu-bar-button
|
|
icon="question-circle"
|
|
circle
|
|
ghost
|
|
class="legend-question-button"
|
|
@mouseover.native="openMenu()"
|
|
@mouseleave.native="closeMenu()"
|
|
/>
|
|
</slot>
|
|
</template>
|
|
<template #popover="" class="legend">
|
|
<div class="legend-container">
|
|
<div class="legend-header">{{ $t(`editor.legend.legendTitle`) }}</div>
|
|
<div class="legend-table" v-for="item in legenditems" :key="item.name">
|
|
<div>
|
|
<base-button size="small" circle ghost :icon="item.iconname" class="legend-icon">
|
|
<span v-if="item.label">{{ item.label }}</span>
|
|
</base-button>
|
|
<span>{{ $t(item.name) }}</span>
|
|
</div>
|
|
<span class="tool-shortcut">{{ item.shortcut }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import Dropdown from '~/components/Dropdown'
|
|
import MenuBarButton from './MenuBarButton'
|
|
|
|
export default {
|
|
components: {
|
|
Dropdown,
|
|
MenuBarButton,
|
|
},
|
|
props: {
|
|
placement: { type: String, default: 'bottom-start' },
|
|
},
|
|
data() {
|
|
return {
|
|
legenditems: [
|
|
{ iconname: 'bold', name: `editor.legend.bold`, shortcut: 'Ctrl+b' },
|
|
{ iconname: 'italic', name: `editor.legend.italic`, shortcut: 'Ctrl+i' },
|
|
{ iconname: 'underline', name: `editor.legend.underline`, shortcut: 'Ctrl+u' },
|
|
{ iconname: 'link', name: `editor.legend.link`, shortcut: '' },
|
|
{ iconname: 'paragraph', name: `editor.legend.paragraph`, shortcut: '' },
|
|
{ label: 'H3', name: `editor.legend.heading3`, shortcut: '### + space' },
|
|
{ label: 'H4', name: `editor.legend.heading4`, shortcut: '#### + space' },
|
|
{ iconname: 'list-ul', name: `editor.legend.unorderedList`, shortcut: '* + space' },
|
|
{ iconname: 'list-ol', name: `editor.legend.orderedList`, shortcut: '1. + space' },
|
|
{ iconname: 'quote-right', name: `editor.legend.quote`, shortcut: '> + space' },
|
|
{ iconname: 'minus', name: `editor.legend.ruler`, shortcut: '---' },
|
|
],
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.legend-question-button {
|
|
color: $color-neutral-40;
|
|
font-size: 1.2rem !important;
|
|
}
|
|
.legend-question-button:hover {
|
|
background: none !important;
|
|
color: $color-neutral-40 !important;
|
|
}
|
|
.legend-question-button:focus {
|
|
outline: none !important;
|
|
}
|
|
.legend {
|
|
padding: 0rem;
|
|
border: 1px solid #e5e3e8;
|
|
}
|
|
.legend-container {
|
|
display: flex;
|
|
width: 18rem !important;
|
|
flex-direction: column;
|
|
}
|
|
.legend-header {
|
|
margin-bottom: 0.5em;
|
|
text-align: center;
|
|
}
|
|
|
|
.legend-table {
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: 1fr 1fr;
|
|
border-bottom: 0.5px solid grey;
|
|
padding: 0.2em;
|
|
}
|
|
|
|
.legend-table > div {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.tool-shortcut {
|
|
padding-left: 2rem;
|
|
}
|
|
.legend-icon {
|
|
pointer-events: none;
|
|
margin-right: 1rem;
|
|
}
|
|
</style>
|