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.
71 lines
1.4 KiB
71 lines
1.4 KiB
4 months ago
|
<script lang="ts" setup>
|
||
|
const props = withDefaults(
|
||
|
defineProps<{
|
||
|
integrationType: string
|
||
|
size?: 'xs' | 'sm' | 'md' | 'lg'
|
||
|
}>(),
|
||
|
{
|
||
|
size: 'md',
|
||
|
},
|
||
|
)
|
||
|
|
||
|
const { integrationType: integrationTypeOrigin } = useIntegrationStore()
|
||
|
|
||
|
const { size, integrationType } = toRefs(props)
|
||
|
|
||
|
const pxSize = computed(() => {
|
||
|
switch (size.value) {
|
||
|
case 'xs':
|
||
|
return '16px'
|
||
|
case 'sm':
|
||
|
return '24px'
|
||
|
case 'md':
|
||
|
return '32px'
|
||
|
case 'lg':
|
||
|
return '48px'
|
||
|
}
|
||
|
})
|
||
|
const pxWrapperPadding = computed(() => {
|
||
|
switch (size.value) {
|
||
|
case 'xs':
|
||
|
return '8px'
|
||
|
case 'sm':
|
||
|
return '8px'
|
||
|
default:
|
||
|
return '10px'
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div
|
||
|
class="logo-wrapper"
|
||
|
:style="{
|
||
|
padding: pxWrapperPadding,
|
||
|
}"
|
||
|
>
|
||
|
<GeneralBaseLogo
|
||
|
v-if="integrationType === integrationTypeOrigin.MySQL"
|
||
|
source-type="mysql2"
|
||
|
:style="{ width: pxSize, height: pxSize }"
|
||
|
/>
|
||
|
<GeneralBaseLogo
|
||
|
v-else-if="integrationType === integrationTypeOrigin.PostgreSQL"
|
||
|
source-type="pg"
|
||
|
:style="{ width: pxSize, height: pxSize }"
|
||
|
/>
|
||
|
<GeneralIcon
|
||
|
v-else-if="integrationType === 'request'"
|
||
|
icon="plusSquare"
|
||
|
class="text-gray-700"
|
||
|
:style="{ width: pxSize, height: pxSize }"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.logo-wrapper {
|
||
|
@apply bg-gray-200 rounded-lg flex items-center justify-center;
|
||
|
}
|
||
|
</style>
|