mirror of https://github.com/nocodb/nocodb
աɨռɢӄաօռɢ
2 years ago
committed by
GitHub
7 changed files with 182 additions and 48 deletions
@ -0,0 +1,93 @@ |
|||||||
|
<script setup lang="ts"> |
||||||
|
import { Sketch } from '@ckpack/vue-color' |
||||||
|
import { useColumnCreateStoreOrThrow } from '#imports' |
||||||
|
import { enumColor, getMdiIcon } from '@/utils' |
||||||
|
|
||||||
|
const { formState, validateInfos, setAdditionalValidations, sqlUi, onDataTypeChange, onAlter } = useColumnCreateStoreOrThrow() |
||||||
|
|
||||||
|
// cater existing v1 cases |
||||||
|
const iconList = [ |
||||||
|
{ |
||||||
|
full: 'mdi-star', |
||||||
|
empty: 'mdi-star-outline', |
||||||
|
}, |
||||||
|
{ |
||||||
|
full: 'mdi-heart', |
||||||
|
empty: 'mdi-heart-outline', |
||||||
|
}, |
||||||
|
{ |
||||||
|
full: 'mdi-moon-full', |
||||||
|
empty: 'mdi-moon-new', |
||||||
|
}, |
||||||
|
{ |
||||||
|
full: 'mdi-thumb-up', |
||||||
|
empty: 'mdi-thumb-up-outline', |
||||||
|
}, |
||||||
|
{ |
||||||
|
full: 'mdi-flag', |
||||||
|
empty: 'mdi-flag-outline', |
||||||
|
}, |
||||||
|
] |
||||||
|
|
||||||
|
const advanced = ref(true) |
||||||
|
|
||||||
|
const picked = ref(formState.value.meta.color || enumColor.light[0]) |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<a-row> |
||||||
|
<a-col :span="12"> |
||||||
|
<a-form-item label="Icon"> |
||||||
|
<a-select v-model:value="formState.meta.icon" size="small" class="w-52"> |
||||||
|
<!-- FIXME: antdv doesn't support object as value --> |
||||||
|
<a-select-option v-for="(icon, i) of iconList" :key="i" :value="icon"> |
||||||
|
<component |
||||||
|
:is="getMdiIcon(icon.full)" |
||||||
|
:style="{ |
||||||
|
color: formState.meta.color, |
||||||
|
}" |
||||||
|
/> |
||||||
|
{{ ' ' }} |
||||||
|
<component |
||||||
|
:is="getMdiIcon(icon.empty)" |
||||||
|
:style="{ |
||||||
|
color: formState.meta.color, |
||||||
|
}" |
||||||
|
/> |
||||||
|
</a-select-option> |
||||||
|
</a-select> |
||||||
|
</a-form-item> |
||||||
|
</a-col> |
||||||
|
<a-col :span="12"> |
||||||
|
<a-form-item label="Max"> |
||||||
|
<a-select v-model:value="formState.meta.max" class="w-52" size="small"> |
||||||
|
<a-select-option v-for="(v, i) in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]" :key="i" :value="v"> |
||||||
|
{{ v }} |
||||||
|
</a-select-option> |
||||||
|
</a-select> |
||||||
|
</a-form-item> |
||||||
|
</a-col> |
||||||
|
</a-row> |
||||||
|
<a-row> |
||||||
|
<a-card class="w-full shadow-lg mt-2" body-style="padding: 0px"> |
||||||
|
<a-collapse v-model:activeKey="advanced" accordion ghost expand-icon-position="right"> |
||||||
|
<a-collapse-panel key="1" header="Advanced" class=""> |
||||||
|
<a-button class="!bg-primary text-white w-full" @click="formState.meta.color = picked.hex"> Pick Color </a-button> |
||||||
|
<div class="px-7 py-3"> |
||||||
|
<Sketch v-model="picked" /> |
||||||
|
</div> |
||||||
|
</a-collapse-panel> |
||||||
|
</a-collapse> |
||||||
|
</a-card> |
||||||
|
</a-row> |
||||||
|
</template> |
||||||
|
|
||||||
|
<style scoped lang="scss"> |
||||||
|
.color-selector:hover { |
||||||
|
@apply brightness-90; |
||||||
|
} |
||||||
|
|
||||||
|
.color-selector.selected { |
||||||
|
@apply py-[5px] px-[10px] brightness-90; |
||||||
|
} |
||||||
|
</style> |
@ -0,0 +1,47 @@ |
|||||||
|
import MdiCheckBold from '~icons/mdi/check-bold' |
||||||
|
import MdiCropSquare from '~icons/mdi/crop-square' |
||||||
|
import MdiCheckCircleOutline from '~icons/mdi/check-circle-outline' |
||||||
|
import MdiCheckboxBlankCircleOutline from '~icons/mdi/checkbox-blank-circle-outline' |
||||||
|
import MdiStar from '~icons/mdi/star' |
||||||
|
import MdiStarOutline from '~icons/mdi/star-outline' |
||||||
|
import MdiHeart from '~icons/mdi/heart' |
||||||
|
import MdiHeartOutline from '~icons/mdi/heart-outline' |
||||||
|
import MdiMoonFull from '~icons/mdi/moon-full' |
||||||
|
import MdiMoonNew from '~icons/mdi/moon-new' |
||||||
|
import MdiThumbUp from '~icons/mdi/thumb-up' |
||||||
|
import MdiThumbUpOutline from '~icons/mdi/thumb-up-outline' |
||||||
|
import MdiFlag from '~icons/mdi/flag' |
||||||
|
import MdiFlagOutline from '~icons/mdi/flag-outline' |
||||||
|
|
||||||
|
export const getMdiIcon = (type: string) => { |
||||||
|
switch (type) { |
||||||
|
case 'mdi-check-bold': |
||||||
|
return MdiCheckBold |
||||||
|
case 'mdi-crop-square': |
||||||
|
return MdiCropSquare |
||||||
|
case 'mdi-check-circle-outline': |
||||||
|
return MdiCheckCircleOutline |
||||||
|
case 'mdi-checkbox-blank-circle-outline': |
||||||
|
return MdiCheckboxBlankCircleOutline |
||||||
|
case 'mdi-star': |
||||||
|
return MdiStar |
||||||
|
case 'mdi-star-outline': |
||||||
|
return MdiStarOutline |
||||||
|
case 'mdi-heart': |
||||||
|
return MdiHeart |
||||||
|
case 'mdi-heart-outline': |
||||||
|
return MdiHeartOutline |
||||||
|
case 'mdi-moon-full': |
||||||
|
return MdiMoonFull |
||||||
|
case 'mdi-moon-new': |
||||||
|
return MdiMoonNew |
||||||
|
case 'mdi-thumb-up': |
||||||
|
return MdiThumbUp |
||||||
|
case 'mdi-thumb-up-outline': |
||||||
|
return MdiThumbUpOutline |
||||||
|
case 'mdi-flag': |
||||||
|
return MdiFlag |
||||||
|
case 'mdi-flag-outline': |
||||||
|
return MdiFlagOutline |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue