mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
899 B
29 lines
899 B
2 years ago
|
<script lang="ts" setup>
|
||
|
import { Panel, PanelPosition } from '@vue-flow/additional-components'
|
||
|
import type { ERDConfig } from './utils'
|
||
|
import MiFullscreen from '~icons/material-symbols/fullscreen'
|
||
|
import MiFullscreenExit from '~icons/material-symbols/fullscreen-exit'
|
||
|
|
||
|
const props = defineProps<{
|
||
|
config: ERDConfig
|
||
|
}>()
|
||
|
|
||
|
const config = useVModel(props, 'config')
|
||
|
|
||
|
const toggleFullScreen = () => {
|
||
|
config.value.isFullScreen = !config.value.isFullScreen
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<Panel
|
||
|
class="text-xs bg-white border-1 rounded-md p-0.5 border-gray-50 z-50 nc-erd-histogram cursor-pointer hover:bg-gray-100"
|
||
|
:position="PanelPosition.TopLeft"
|
||
|
>
|
||
|
<div class="flex">
|
||
|
<MiFullscreenExit v-if="config.isFullScreen" class="h-5 w-5" @click="() => toggleFullScreen()" />
|
||
|
<MiFullscreen v-else class="h-5 w-5" @click="() => toggleFullScreen()" />
|
||
|
</div>
|
||
|
</Panel>
|
||
|
</template>
|