mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
122 lines
3.3 KiB
Vue
122 lines
3.3 KiB
Vue
<template>
|
|
<dropdown :placement="placement" offset="5">
|
|
<template #default="{ openMenu, closeMenu }">
|
|
<slot name="button">
|
|
<menu-bar-button
|
|
class="legend-question-button"
|
|
icon="question-circle"
|
|
circle
|
|
ghost
|
|
:onClick="
|
|
() => {
|
|
isDropdownOpen ? closeMenu() : openMenu()
|
|
isDropdownOpen = !isDropdownOpen
|
|
}
|
|
"
|
|
/>
|
|
</slot>
|
|
</template>
|
|
<!-- eslint-disable-next-line vue/no-useless-template-attributes -->
|
|
<template #popover="" class="legend">
|
|
<div class="legend-container">
|
|
<div class="legend-header">{{ $t(`editor.legend.legendTitle`) }}</div>
|
|
<div
|
|
:class="['legend-table', index < legendItems.length - 1 && 'legend-table-split-line']"
|
|
v-for="(item, index) 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: '---' },
|
|
],
|
|
isDropdownOpen: false,
|
|
}
|
|
},
|
|
}
|
|
</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;
|
|
padding: 0.2em;
|
|
}
|
|
.legend-table-split-line {
|
|
border-bottom: 0.5px solid grey;
|
|
}
|
|
|
|
.legend-table > div {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.tool-shortcut {
|
|
padding-left: 2rem;
|
|
}
|
|
.legend-icon {
|
|
pointer-events: none;
|
|
margin-right: 1rem;
|
|
}
|
|
</style>
|