mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
106 lines
1.9 KiB
Vue
106 lines
1.9 KiB
Vue
<template>
|
|
<div :class="classes" v-bind="$attrs">
|
|
<div v-if="$slots.prepend" :class="$style.icon">
|
|
<slot name="prepend" />
|
|
</div>
|
|
<div :class="$style.content">
|
|
<div v-if="$slots.header" :class="$style.header">
|
|
<slot name="header" />
|
|
</div>
|
|
<div v-if="$slots.default" :class="$style.body">
|
|
<slot />
|
|
</div>
|
|
<div v-if="$slots.footer" :class="$style.footer">
|
|
<slot name="footer" />
|
|
</div>
|
|
</div>
|
|
<div v-if="$slots.append" :class="$style.append">
|
|
<slot name="append" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, useCssModule } from 'vue';
|
|
|
|
interface CardProps {
|
|
hoverable?: boolean;
|
|
}
|
|
|
|
defineOptions({ name: 'N8nCard' });
|
|
const props = withDefaults(defineProps<CardProps>(), {
|
|
hoverable: false,
|
|
});
|
|
|
|
const $style = useCssModule();
|
|
const classes = computed(() => ({
|
|
card: true,
|
|
[$style.card]: true,
|
|
[$style.hoverable]: props.hoverable,
|
|
}));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.card {
|
|
border-radius: var(--border-radius-large);
|
|
border: var(--border-base);
|
|
background-color: var(--color-background-xlight);
|
|
padding: var(--spacing-s);
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
align-items: center;
|
|
}
|
|
|
|
.header,
|
|
.footer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.body {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.icon {
|
|
width: 24px;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-right: var(--spacing-s);
|
|
}
|
|
|
|
.hoverable {
|
|
cursor: pointer;
|
|
transition-property: border, color;
|
|
transition-duration: 0.3s;
|
|
transition-timing-function: ease;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: var(--color-primary);
|
|
border-color: var(--color-primary);
|
|
}
|
|
}
|
|
|
|
.append {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: default;
|
|
}
|
|
</style>
|