mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-12-02 03:57:35 +08:00
refactor(page): refactor source --> metadata --> visual
This commit is contained in:
parent
9e52c41ddf
commit
ef28a35b7e
@ -577,8 +577,14 @@ export default {
|
||||
deleteAlert3: 'To confirm, type [ $VALUE ] in the box below',
|
||||
publishSuccess: 'Report [ $VALUE ] published successfully'
|
||||
},
|
||||
placeholder: {
|
||||
name: 'Please enter the report name',
|
||||
description: 'Please enter the report description'
|
||||
},
|
||||
validator: {
|
||||
name: 'Please enter the report name'
|
||||
name: {
|
||||
required: 'Report name cannot be empty'
|
||||
}
|
||||
}
|
||||
},
|
||||
pipeline: {
|
||||
|
@ -577,8 +577,14 @@ export default {
|
||||
deleteAlert3: '要确认,请在下面的框中键入 [ $VALUE ]',
|
||||
publishSuccess: '报表 [ $VALUE ] 发布成功'
|
||||
},
|
||||
placeholder: {
|
||||
name: '请输入报表名称',
|
||||
description: '请输入报表描述'
|
||||
},
|
||||
validator: {
|
||||
name: '请输入报表名称'
|
||||
name: {
|
||||
required: '报表名称不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
pipeline: {
|
||||
|
@ -1,51 +1,43 @@
|
||||
<template>
|
||||
<ShadcnCard>
|
||||
<template #title>
|
||||
<div class="ml-2 font-normal text-sm">{{ $t('role.common.list') }}</div>
|
||||
<ShadcnSpace>
|
||||
<ShadcnButton size="small">
|
||||
<RouterLink :to="`/admin/dataset/info/source/${configure.code}`" target="_blank">
|
||||
<span class="flex items-center">
|
||||
<ShadcnIcon icon="Plus" size="15"/>
|
||||
<span>{{ $t('common.dataset') }}</span>
|
||||
</span>
|
||||
</RouterLink>
|
||||
</ShadcnButton>
|
||||
|
||||
<ShadcnButton size="small" type="default" @click="visualVisible = true">
|
||||
<ShadcnIcon icon="BarChart" :size="15"/>
|
||||
<span>{{ $t('dataset.common.visual') }}</span>
|
||||
</ShadcnButton>
|
||||
|
||||
<ShadcnTooltip :content="$t('query.tip.pageShow')">
|
||||
<ShadcnSwitch v-model="isPage" @on-change="onChange"/>
|
||||
</ShadcnTooltip>
|
||||
|
||||
<ShadcnTooltip :content="$t('query.tip.smallTips')">
|
||||
<ShadcnButton circle size="small" type="default">
|
||||
<ShadcnIcon icon="CircleHelp" :size="15"/>
|
||||
</ShadcnButton>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnSpace>
|
||||
</template>
|
||||
|
||||
<ag-grid-vue v-if="type === 'table'"
|
||||
class="ag-theme-datacap"
|
||||
:key="timestamp"
|
||||
:style="{width: configure.width + 'px', height: configure.height + 'px', 'margin-top': '2px'}"
|
||||
:pagination="isPage"
|
||||
:columnDefs="columnDefs"
|
||||
:rowData="configure.columns"
|
||||
:gridOptions="gridOptions as any"/>
|
||||
</ShadcnCard>
|
||||
|
||||
|
||||
<div>
|
||||
<Card class="p-0" style="border-radius: 0;">
|
||||
<CardHeader class="p-0">
|
||||
<CardTitle class="pt-1 pl-3 space-x-2">
|
||||
<Button size="sm" class="h-7 space-x-1">
|
||||
<RouterLink :to="`/admin/dataset/info/source/${configure.code}`" target="_blank">
|
||||
<span class="flex items-center">
|
||||
<Plus :size="18"/> {{ $t('common.dataset') }}
|
||||
</span>
|
||||
</RouterLink>
|
||||
</Button>
|
||||
<Button size="sm" variant="outline" class="h-7 space-x-1" @click="visualVisible = true">
|
||||
<BarChart :size="18"/>
|
||||
<span>{{ $t('dataset.common.visual') }}</span>
|
||||
</Button>
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger>
|
||||
<Switch :default-checked="isPage" @update:checked="handlerChange"/>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>{{ $t('query.tip.pageShow') }}</TooltipContent>
|
||||
</Tooltip>
|
||||
</TooltipProvider>
|
||||
<HoverCard>
|
||||
<HoverCardTrigger as-child>
|
||||
<Button size="icon" class="h-7 w-7" variant="outline">
|
||||
<CircleHelp :size="18"/>
|
||||
</Button>
|
||||
</HoverCardTrigger>
|
||||
<HoverCardContent class="w-80">{{ $t('query.tip.smallTips') }}</HoverCardContent>
|
||||
</HoverCard>
|
||||
</CardTitle>
|
||||
<CardContent class="p-0" style="margin-top: -5px;">
|
||||
<ag-grid-vue v-if="type === 'table'" :key="timestamp" :style="{width: configure.width + 'px', height: configure.height + 'px', 'margin-top': '2px'}" :pagination="isPage"
|
||||
class="ag-theme-datacap" :columnDefs="columnDefs" :rowData="configure.columns" :gridOptions="gridOptions as any"/>
|
||||
</CardContent>
|
||||
</CardHeader>
|
||||
</Card>
|
||||
</div>
|
||||
<GridVisual :is-visible="visualVisible" :configure="configure" @close="visualVisible = $event"/>
|
||||
</template>
|
||||
|
||||
@ -83,7 +75,7 @@ export default defineComponent({
|
||||
},
|
||||
created()
|
||||
{
|
||||
this.handlerInitialize()
|
||||
this.handleInitialize()
|
||||
},
|
||||
data()
|
||||
{
|
||||
@ -98,7 +90,7 @@ export default defineComponent({
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['updateData']),
|
||||
handlerInitialize()
|
||||
handleInitialize()
|
||||
{
|
||||
if (this.configure) {
|
||||
this.updateData(this.configure)
|
||||
@ -108,12 +100,7 @@ export default defineComponent({
|
||||
})
|
||||
}
|
||||
},
|
||||
handlerApplyColumn()
|
||||
{
|
||||
this.columnDefs = this.visibleColumns
|
||||
this.columnDrawerVisible = false
|
||||
},
|
||||
handlerChange(value: boolean)
|
||||
onChange(value: boolean)
|
||||
{
|
||||
this.timestamp = ObjectUtils.getTimestamp()
|
||||
this.isPage = value
|
||||
|
@ -1,46 +1,45 @@
|
||||
<template>
|
||||
<Dialog :is-visible="visible" width="80%" @close="handlerCancel">
|
||||
<template #title>
|
||||
<div class="flex items-center space-x-2">
|
||||
<BarChart :size="18"/>
|
||||
<span>{{ $t('dataset.common.visual') }}</span>
|
||||
<ShadcnModal v-model="visible"
|
||||
width="80%"
|
||||
:title="$t('dataset.common.visual')"
|
||||
@on-close="onCancel">
|
||||
|
||||
<ShadcnAlert v-if="message" type="error" :title="message"/>
|
||||
|
||||
<ShadcnForm v-model="formState" @on-submit="onSubmit">
|
||||
<ShadcnFormItem name="name"
|
||||
:label="$t('common.name')"
|
||||
:rules="[
|
||||
{ required: true, message: $t('report.validator.name.required') }
|
||||
]">
|
||||
<ShadcnInput v-model="formState.name" name="name" :placeholder="$t('report.placeholder.name')"/>
|
||||
</ShadcnFormItem>
|
||||
|
||||
<ShadcnFormItem name="description"
|
||||
:label="$t('common.description')">
|
||||
<ShadcnInput v-model="formState.description"
|
||||
type="textarea"
|
||||
name="description"
|
||||
:placeholder="$t('report.placeholder.description')"/>
|
||||
</ShadcnFormItem>
|
||||
|
||||
<ShadcnFormItem>
|
||||
<VisualEditor :loading="loading" :configuration="configuration" @commitOptions="onCommitOptions"/>
|
||||
</ShadcnFormItem>
|
||||
|
||||
<div class="flex justify-end">
|
||||
<ShadcnSpace>
|
||||
<ShadcnButton type="default" @click="onCancel">
|
||||
{{ $t('common.cancel') }}
|
||||
</ShadcnButton>
|
||||
|
||||
<ShadcnButton submit :disabled="published" :loading="published">
|
||||
{{ $t('common.publish') }}
|
||||
</ShadcnButton>
|
||||
</ShadcnSpace>
|
||||
</div>
|
||||
</template>
|
||||
<div class="pl-4 pr-4">
|
||||
<Alert v-if="message" type="error" :description="message"/>
|
||||
<FormField name="name">
|
||||
<FormItem>
|
||||
<FormLabel class="mr-1 w-20 text-right">
|
||||
{{ $t('common.name') }}
|
||||
</FormLabel>
|
||||
<FormControl>
|
||||
<Input v-model="formState.name"/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
</FormField>
|
||||
<FormField name="description">
|
||||
<FormItem>
|
||||
<FormLabel class="mr-1 w-20 text-right">
|
||||
{{ $t('common.description') }}
|
||||
</FormLabel>
|
||||
<FormControl>
|
||||
<Textarea v-model="formState.description"/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
</FormField>
|
||||
<VisualEditor :loading="loading" :configuration="configuration" @commitOptions="handlerCommitOptions"/>
|
||||
</div>
|
||||
<template #footer>
|
||||
<div class="space-x-2">
|
||||
<Button size="sm" variant="outline" class="h-7 space-x-1" @click="handlerCancel">
|
||||
{{ $t('common.cancel') }}
|
||||
</Button>
|
||||
<Button size="sm" class="h-7 space-x-1" :loading="published" @click="handlerPublish">
|
||||
{{ $t('common.publish') }}
|
||||
</Button>
|
||||
</div>
|
||||
</template>
|
||||
</Dialog>
|
||||
</ShadcnForm>
|
||||
</ShadcnModal>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
@ -105,11 +104,11 @@ export default defineComponent({
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handlerCommitOptions(value: any)
|
||||
onCommitOptions(value: any)
|
||||
{
|
||||
this.formState.configure = JSON.stringify(value)
|
||||
},
|
||||
handlerPublish()
|
||||
onSubmit()
|
||||
{
|
||||
this.validator()
|
||||
if (!this.message) {
|
||||
@ -117,17 +116,23 @@ export default defineComponent({
|
||||
ReportService.saveOrUpdate(this.formState)
|
||||
.then(response => {
|
||||
if (response.status) {
|
||||
ToastUtils.success(this.$t('report.tip.publishSuccess').replace('$VALUE', this.formState.name))
|
||||
this.$Message.success({
|
||||
content: this.$t('report.tip.publishSuccess').replace('$VALUE', this.formState.name),
|
||||
showIcon: true
|
||||
})
|
||||
router.push('/admin/report')
|
||||
}
|
||||
else {
|
||||
ToastUtils.error(response.message)
|
||||
this.$Message.error({
|
||||
content: response.message,
|
||||
showIcon: true
|
||||
})
|
||||
}
|
||||
})
|
||||
.finally(() => this.published = false)
|
||||
}
|
||||
},
|
||||
handlerCancel()
|
||||
onCancel()
|
||||
{
|
||||
this.visible = false
|
||||
},
|
||||
|
@ -1,204 +1,239 @@
|
||||
<template>
|
||||
<div class="flex h-full space-x-1 mt-2">
|
||||
<div class="left flex-1 justify-center">
|
||||
<CircularLoading v-if="loading" :show="loading"/>
|
||||
<div v-else>
|
||||
<Alert v-if="configuration?.headers.length === 0 && !configuration?.message" class="mt-20" :title="$t('dataset.tip.adhocDnd')"/>
|
||||
<Alert v-else-if="configuration?.message" class="mt-20" :title="configuration.message" type="error"/>
|
||||
<div v-else>
|
||||
<VisualTable v-if="configuration?.type === Type.TABLE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualLine v-else-if="configuration?.type === Type.LINE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualBar v-else-if="configuration?.type === Type.BAR" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualArea v-else-if="configuration?.type === Type.AREA" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualPie v-else-if="configuration?.type === Type.PIE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualHistogram v-else-if="configuration?.type === Type.HISTOGRAM" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualWordCloud v-else-if="configuration?.type === Type.WORDCLOUD" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualScatter v-else-if="configuration?.type === Type.SCATTER" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualRadar v-else-if="configuration?.type === Type.RADAR" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualFunnel v-else-if="configuration?.type === Type.FUNNEL" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualGauge v-else-if="configuration?.type === Type.GAUGE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualRose v-else-if="configuration?.type === Type.ROSE" :configuration="configuration" @change="handlerCommit"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right w-[210px] space-y-2">
|
||||
<DataCapCard>
|
||||
<template #title>{{ $t('dataset.common.visualType') }}</template>
|
||||
<CircularLoading v-if="loading" :show="loading"/>
|
||||
<div v-else-if="configuration">
|
||||
<ToggleGroup v-model="configuration.type" type="single">
|
||||
<div class="grid grid-cols-4 items-center space-x-1 space-y-1">
|
||||
<ToggleGroupItem class="mt-1" :disabled="configuration.headers.length === 0" :value="Type.TABLE">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeTable')">
|
||||
<Table :size="20"/>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.LINE">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeLine')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="lineChart"
|
||||
style="width: 24px;">
|
||||
<path d="M4 4.5V18.5C4 19.0523 4.44772 19.5 5 19.5H20" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M8 14.5L12.4982 9.91029C12.5716 9.83537 12.6889 9.82567 12.7737 9.88752L15.812 12.1051C15.8933 12.1644 16.0051 12.1582 16.0793 12.0903L20 8.5"
|
||||
stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.BAR">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeBar')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="barChart"
|
||||
style="width: 24px;">
|
||||
<path d="M4 4.5V18.5C4 19.0523 4.44772 19.5 5 19.5H20" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M13 7V16" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M8.5 10V16" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M17.5 12V16" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.AREA">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeArea')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="areaChart"
|
||||
style="width: 24px;">
|
||||
<path
|
||||
d="M18 20H6C4.89543 20 4 19.1046 4 18V9L8.71327 5.70071C8.88543 5.5802 9.11457 5.5802 9.28673 5.70071L13.7201 8.8041C13.8889 8.92223 14.1128 8.92478 14.2842 8.81051L19.2226 5.51823C19.5549 5.29672 20 5.53491 20 5.93426V18C20 19.1046 19.1046 20 18 20Z"
|
||||
stroke="#21252C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M20 11L14 14.5L9 11L4 14.5" stroke="#21252C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.PIE">
|
||||
<Tooltip :content="$t('dataset.common.visualTypePie')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none" class="vchart-dropdown-content-item-icon" id="pieChart"
|
||||
style="width: 24px;">
|
||||
<path d="M6.26599 3.38867C3.46047 4.60563 1.5 7.38359 1.5 10.6159C1.5 14.97 5.0576 18.4998 9.44612 18.4998C12.6024 18.4998 15.3288 16.674 16.6111 14.0288"
|
||||
stroke="#21252C" stroke-opacity="0.9" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path
|
||||
d="M18.4993 9.88932C18.4405 5.28275 14.7173 1.55949 10.1107 1.50071C10.0498 1.49993 10 1.54934 10 1.61021V9.44897C10 9.7533 10.2467 10 10.551 10H18.3898C18.4507 10 18.5001 9.95018 18.4993 9.88932Z"
|
||||
stroke="#21252C" stroke-opacity="0.9" stroke-width="1.8"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.HISTOGRAM">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeHistogram')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="20" viewBox="0 0 21 20" fill="none">
|
||||
<g clip-path="url(#clip0_1700_69225)">
|
||||
<path
|
||||
d="M11.1663 3.33331H9.83301C9.28072 3.33331 8.83301 3.78103 8.83301 4.33331V15.6666C8.83301 16.2189 9.28072 16.6666 9.83301 16.6666H11.1663C11.7186 16.6666 12.1663 16.2189 12.1663 15.6666V4.33331C12.1663 3.78103 11.7186 3.33331 11.1663 3.33331Z"
|
||||
stroke="#21252C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path
|
||||
d="M5.33333 7.5H4C3.44772 7.5 3 7.94772 3 8.5V15.6667C3 16.219 3.44771 16.6667 4 16.6667H5.33333C5.88562 16.6667 6.33333 16.2189 6.33333 15.6667V8.5C6.33333 7.94772 5.88562 7.5 5.33333 7.5Z"
|
||||
stroke="#21252C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path
|
||||
d="M17.0003 9.16669H15.667C15.1147 9.16669 14.667 9.6144 14.667 10.1667V15.6667C14.667 16.219 15.1147 16.6667 15.667 16.6667H17.0003C17.5526 16.6667 18.0003 16.219 18.0003 15.6667V10.1667C18.0003 9.6144 17.5526 9.16669 17.0003 9.16669Z"
|
||||
stroke="#21252C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1700_69225">
|
||||
<rect width="20" height="20" fill="white" transform="translate(0.5)"></rect>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.WORDCLOUD">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeWordCloud')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="wordCloud"
|
||||
style="width: 24px;">
|
||||
<path d="M5.81563 7V8.77143H3.92339V15H2.39681V8.77143H0.5V7H5.81563Z" fill="#21252C"></path>
|
||||
<path d="M11.4096 13.28V15H6.50986V7H11.3913V8.72H8.03645V10.1029H11.1947V11.8171H8.03645V13.28H11.4096Z" fill="#21252C"></path>
|
||||
<path d="M17.972 7L15.9015 10.96L17.9948 15H16.2443L14.9645 12.4L13.6847 15H11.9525L14.0458 10.96L11.9799 7H13.7304L14.9828 9.54857L16.2351 7H17.972Z"
|
||||
fill="#21252C"></path>
|
||||
<path d="M23.5 7V8.77143H21.6078V15H20.0812V8.77143H18.1844V7H23.5Z" fill="#21252C"></path>
|
||||
<path
|
||||
d="M4.94095 17.8V18.73H3.69895V22H2.69695V18.73H1.45195V17.8H4.94095ZM8.61263 21.097V22H5.39663V17.8H8.60063V18.703H6.39863V19.429H8.47163V20.329H6.39863V21.097H8.61263ZM12.92 17.8L11.561 19.879L12.935 22H11.786L10.946 20.635L10.106 22H8.96897L10.343 19.879L8.98697 17.8H10.136L10.958 19.138L11.78 17.8H12.92ZM16.5484 17.8V18.73H15.3064V22H14.3044V18.73H13.0594V17.8H16.5484Z"
|
||||
fill="#21252C"></path>
|
||||
<path
|
||||
d="M13.6175 1.5V2.275H12.5825V5H11.7475V2.275H10.71V1.5H13.6175ZM16.6772 4.2475V5H13.9972V1.5H16.6672V2.2525H14.8322V2.8575H16.5597V3.6075H14.8322V4.2475H16.6772ZM20.2666 1.5L19.1341 3.2325L20.2791 5H19.3216L18.6216 3.8625L17.9216 5H16.9741L18.1191 3.2325L16.9891 1.5H17.9466L18.6316 2.615L19.3166 1.5H20.2666ZM23.2903 1.5V2.275H22.2553V5H21.4203V2.275H20.3828V1.5H23.2903Z"
|
||||
fill="#21252C"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.SCATTER">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeScatter')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="scatterChart"
|
||||
style="width: 24px;">
|
||||
<path d="M4 4.5V18.5C4 19.0523 4.44772 19.5 5 19.5H20" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<circle cx="8.5" cy="15.5" r="1.5" fill="#21252C"></circle>
|
||||
<circle cx="16" cy="7" r="2" fill="#21252C"></circle>
|
||||
<circle cx="18" cy="15" r="2" fill="#21252C"></circle>
|
||||
<circle cx="12.75" cy="12.25" r="2.25" fill="#21252C"></circle>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.RADAR">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeRadar')">
|
||||
<svg width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M1.57045 8.16646L10.3949 1.45986C10.7525 1.18808 11.2475 1.18808 11.6051 1.45986L20.4296 8.16646C20.7706 8.42565 20.9087 8.87328 20.7729 9.27956L17.4187 19.3169C17.2824 19.7249 16.9004 20 16.4703 20H5.52971C5.09956 20 4.7176 19.7249 4.58127 19.3169L1.22709 9.27956C1.09132 8.87328 1.2294 8.42565 1.57045 8.16646Z"
|
||||
stroke="#21252C" stroke-width="1.7" stroke-linecap="round"></path>
|
||||
<path
|
||||
d="M6.11243 9.82863L10.8826 6.2478C10.951 6.19642 11.0446 6.19428 11.1153 6.24249L16.3379 9.80252C16.4279 9.8639 16.4522 9.98606 16.3926 10.0773L13.5468 14.4281C13.5169 14.4739 13.4696 14.5054 13.4158 14.5153L7.91428 15.5328C7.81444 15.5513 7.71661 15.492 7.68675 15.395L6.04134 10.0474C6.01654 9.96678 6.04498 9.87927 6.11243 9.82863Z"
|
||||
stroke="#21252C" stroke-width="1.7" stroke-linecap="round"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.FUNNEL">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeFunnel')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="funnelChart"
|
||||
style="width: 24px;">
|
||||
<path
|
||||
d="M10.7172 18.1334C11.3011 19.0968 12.6989 19.0968 13.2828 18.1334L20.6197 6.02745C21.2256 5.0278 20.5058 3.75 19.3369 3.75H4.66307C3.49415 3.75 2.77442 5.02779 3.38027 6.02745L10.7172 18.1334Z"
|
||||
stroke="#21252C" stroke-width="1.8"></path>
|
||||
<path d="M4.52637 8.25H19.5264" stroke="#21252C" stroke-width="1.8"></path>
|
||||
<path d="M7.52637 12.25H16.5264" stroke="#21252C" stroke-width="1.8"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.GAUGE">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeGauge')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="gauge"
|
||||
style="width: 24px;">
|
||||
<circle cx="12" cy="12" r="9.5" stroke="#21252C" stroke-width="1.8"></circle>
|
||||
<circle cx="12" cy="16" r="2" stroke="#21252C" stroke-width="1.8"></circle>
|
||||
<path d="M12.9 7C12.9 6.50294 12.4971 6.1 12 6.1C11.5029 6.1 11.1 6.50294 11.1 7H12.9ZM11.1 7V14H12.9V7H11.1Z" fill="#21252C"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ToggleGroupItem :disabled="configuration.headers.length === 0" :value="Type.ROSE">
|
||||
<Tooltip :content="$t('dataset.common.visualTypeRose')">
|
||||
<svg width="23" height="19" viewBox="0 0 23 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M14.2891 4.34061C12.6163 4.34061 11.1033 5.02518 10.0152 6.12945M9.28906 13.6584C10.364 15.2751 12.2021 16.3406 14.2891 16.3406C14.623 16.3406 14.9507 16.3133 15.2698 16.2608M19.9477 12.3406C20.1688 11.715 20.2891 11.0419 20.2891 10.3406C20.2891 9.29406 20.0211 8.3101 19.5501 7.45357"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
<path
|
||||
d="M21.1403 5.56187C20.0934 2.84561 17.0299 1.28508 14.2419 2.112C14.1199 2.1482 14.0412 2.265 14.0476 2.39211L14.4231 9.83589C14.4343 10.0576 14.6835 10.182 14.8674 10.0576L21.0342 5.8887C21.1407 5.81671 21.1865 5.68182 21.1403 5.56187Z"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
<path
|
||||
d="M15.5303 18.0445C18.321 18.3698 20.8099 16.1368 21.3718 13.3596C21.3983 13.2288 21.3249 13.0997 21.2012 13.0499L14.9075 10.5185C14.7075 10.4381 14.4941 10.6001 14.5179 10.8143L15.2918 17.7994C15.3059 17.9266 15.4033 18.0297 15.5303 18.0445Z"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
<path
|
||||
d="M6.11156 3.00092C2.12443 6.01236 1.38079 11.9577 4.17682 16.11C4.25866 16.2316 4.42097 16.267 4.54805 16.194L14.0167 10.759C14.1817 10.6643 14.2094 10.4377 14.072 10.3061L6.47293 3.02416C6.37404 2.92939 6.22086 2.91837 6.11156 3.00092Z"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
</svg>
|
||||
</Tooltip>
|
||||
</ToggleGroupItem>
|
||||
<ShadcnCard :border="false">
|
||||
<div class="relative">
|
||||
<ShadcnLayout>
|
||||
<ShadcnLayoutWrapper>
|
||||
<ShadcnLayoutContent>
|
||||
<ShadcnSpin v-if="loading" fixed/>
|
||||
|
||||
<ShadcnAlert v-if="configuration?.headers.length === 0 && !configuration?.message" class="mt-20" :title="$t('dataset.tip.adhocDnd')"/>
|
||||
|
||||
<ShadcnAlert v-else-if="configuration?.message" class="mt-20" :title="configuration.message" type="error"/>
|
||||
|
||||
<div v-else>
|
||||
<VisualTable v-if="configuration?.type === Type.TABLE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualLine v-else-if="configuration?.type === Type.LINE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualBar v-else-if="configuration?.type === Type.BAR" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualArea v-else-if="configuration?.type === Type.AREA" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualPie v-else-if="configuration?.type === Type.PIE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualHistogram v-else-if="configuration?.type === Type.HISTOGRAM" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualWordCloud v-else-if="configuration?.type === Type.WORDCLOUD" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualScatter v-else-if="configuration?.type === Type.SCATTER" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualRadar v-else-if="configuration?.type === Type.RADAR" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualFunnel v-else-if="configuration?.type === Type.FUNNEL" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualGauge v-else-if="configuration?.type === Type.GAUGE" :configuration="configuration" @change="handlerCommit"/>
|
||||
<VisualRose v-else-if="configuration?.type === Type.ROSE" :configuration="configuration" @change="handlerCommit"/>
|
||||
</div>
|
||||
</ToggleGroup>
|
||||
</div>
|
||||
</DataCapCard>
|
||||
<DataCapCard>
|
||||
<template #title>{{ $t('dataset.common.visualConfigure') }}</template>
|
||||
<CircularLoading v-if="loading" :show="loading"/>
|
||||
<div v-else-if="configuration" class="flex items-center justify-center">
|
||||
<Alert v-if="configuration.type === Type.TABLE" :title="$t('dataset.common.visualConfigureNotSpecified')"/>
|
||||
<Button v-else size="sm" class="w-[80%]" @click="configureVisible = true">{{ $t('common.configure') }}</Button>
|
||||
</div>
|
||||
</DataCapCard>
|
||||
</ShadcnLayoutContent>
|
||||
<ShadcnLayoutSider>
|
||||
<ShadcnCard :title="$t('dataset.common.visualType')">
|
||||
<div class="relative p-2 flex items-center">
|
||||
<ShadcnSpin v-if="loading" fixed/>
|
||||
|
||||
<div v-if="configuration">
|
||||
<ShadcnRadioGroup v-model="configuration.type">
|
||||
<ShadcnSpace class="items-center" wrap>
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.TABLE">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeTable')">
|
||||
<ShadcnIcon icon="Table" size="20"/>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.LINE">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeLine')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="lineChart"
|
||||
style="width: 24px;">
|
||||
<path d="M4 4.5V18.5C4 19.0523 4.44772 19.5 5 19.5H20" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M8 14.5L12.4982 9.91029C12.5716 9.83537 12.6889 9.82567 12.7737 9.88752L15.812 12.1051C15.8933 12.1644 16.0051 12.1582 16.0793 12.0903L20 8.5"
|
||||
stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.BAR">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeBar')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="barChart"
|
||||
style="width: 24px;">
|
||||
<path d="M4 4.5V18.5C4 19.0523 4.44772 19.5 5 19.5H20" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M13 7V16" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M8.5 10V16" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path d="M17.5 12V16" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.AREA">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeArea')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="areaChart"
|
||||
style="width: 24px;">
|
||||
<path
|
||||
d="M18 20H6C4.89543 20 4 19.1046 4 18V9L8.71327 5.70071C8.88543 5.5802 9.11457 5.5802 9.28673 5.70071L13.7201 8.8041C13.8889 8.92223 14.1128 8.92478 14.2842 8.81051L19.2226 5.51823C19.5549 5.29672 20 5.53491 20 5.93426V18C20 19.1046 19.1046 20 18 20Z"
|
||||
stroke="#21252C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M20 11L14 14.5L9 11L4 14.5" stroke="#21252C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.PIE">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypePie')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none" class="vchart-dropdown-content-item-icon" id="pieChart"
|
||||
style="width: 24px;">
|
||||
<path
|
||||
d="M6.26599 3.38867C3.46047 4.60563 1.5 7.38359 1.5 10.6159C1.5 14.97 5.0576 18.4998 9.44612 18.4998C12.6024 18.4998 15.3288 16.674 16.6111 14.0288"
|
||||
stroke="#21252C" stroke-opacity="0.9" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<path
|
||||
d="M18.4993 9.88932C18.4405 5.28275 14.7173 1.55949 10.1107 1.50071C10.0498 1.49993 10 1.54934 10 1.61021V9.44897C10 9.7533 10.2467 10 10.551 10H18.3898C18.4507 10 18.5001 9.95018 18.4993 9.88932Z"
|
||||
stroke="#21252C" stroke-opacity="0.9" stroke-width="1.8"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.HISTOGRAM">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeHistogram')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="20" viewBox="0 0 21 20" fill="none">
|
||||
<g clip-path="url(#clip0_1700_69225)">
|
||||
<path
|
||||
d="M11.1663 3.33331H9.83301C9.28072 3.33331 8.83301 3.78103 8.83301 4.33331V15.6666C8.83301 16.2189 9.28072 16.6666 9.83301 16.6666H11.1663C11.7186 16.6666 12.1663 16.2189 12.1663 15.6666V4.33331C12.1663 3.78103 11.7186 3.33331 11.1663 3.33331Z"
|
||||
stroke="#21252C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path
|
||||
d="M5.33333 7.5H4C3.44772 7.5 3 7.94772 3 8.5V15.6667C3 16.219 3.44771 16.6667 4 16.6667H5.33333C5.88562 16.6667 6.33333 16.2189 6.33333 15.6667V8.5C6.33333 7.94772 5.88562 7.5 5.33333 7.5Z"
|
||||
stroke="#21252C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path
|
||||
d="M17.0003 9.16669H15.667C15.1147 9.16669 14.667 9.6144 14.667 10.1667V15.6667C14.667 16.219 15.1147 16.6667 15.667 16.6667H17.0003C17.5526 16.6667 18.0003 16.219 18.0003 15.6667V10.1667C18.0003 9.6144 17.5526 9.16669 17.0003 9.16669Z"
|
||||
stroke="#21252C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1700_69225">
|
||||
<rect width="20" height="20" fill="white" transform="translate(0.5)"></rect>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.WORDCLOUD">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeWordCloud')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="wordCloud"
|
||||
style="width: 24px;">
|
||||
<path d="M5.81563 7V8.77143H3.92339V15H2.39681V8.77143H0.5V7H5.81563Z" fill="#21252C"></path>
|
||||
<path d="M11.4096 13.28V15H6.50986V7H11.3913V8.72H8.03645V10.1029H11.1947V11.8171H8.03645V13.28H11.4096Z" fill="#21252C"></path>
|
||||
<path d="M17.972 7L15.9015 10.96L17.9948 15H16.2443L14.9645 12.4L13.6847 15H11.9525L14.0458 10.96L11.9799 7H13.7304L14.9828 9.54857L16.2351 7H17.972Z"
|
||||
fill="#21252C"></path>
|
||||
<path d="M23.5 7V8.77143H21.6078V15H20.0812V8.77143H18.1844V7H23.5Z" fill="#21252C"></path>
|
||||
<path
|
||||
d="M4.94095 17.8V18.73H3.69895V22H2.69695V18.73H1.45195V17.8H4.94095ZM8.61263 21.097V22H5.39663V17.8H8.60063V18.703H6.39863V19.429H8.47163V20.329H6.39863V21.097H8.61263ZM12.92 17.8L11.561 19.879L12.935 22H11.786L10.946 20.635L10.106 22H8.96897L10.343 19.879L8.98697 17.8H10.136L10.958 19.138L11.78 17.8H12.92ZM16.5484 17.8V18.73H15.3064V22H14.3044V18.73H13.0594V17.8H16.5484Z"
|
||||
fill="#21252C"></path>
|
||||
<path
|
||||
d="M13.6175 1.5V2.275H12.5825V5H11.7475V2.275H10.71V1.5H13.6175ZM16.6772 4.2475V5H13.9972V1.5H16.6672V2.2525H14.8322V2.8575H16.5597V3.6075H14.8322V4.2475H16.6772ZM20.2666 1.5L19.1341 3.2325L20.2791 5H19.3216L18.6216 3.8625L17.9216 5H16.9741L18.1191 3.2325L16.9891 1.5H17.9466L18.6316 2.615L19.3166 1.5H20.2666ZM23.2903 1.5V2.275H22.2553V5H21.4203V2.275H20.3828V1.5H23.2903Z"
|
||||
fill="#21252C"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.SCATTER">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeScatter')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="scatterChart"
|
||||
style="width: 24px;">
|
||||
<path d="M4 4.5V18.5C4 19.0523 4.44772 19.5 5 19.5H20" stroke="#21252C" stroke-width="1.8" stroke-linecap="round"></path>
|
||||
<circle cx="8.5" cy="15.5" r="1.5" fill="#21252C"></circle>
|
||||
<circle cx="16" cy="7" r="2" fill="#21252C"></circle>
|
||||
<circle cx="18" cy="15" r="2" fill="#21252C"></circle>
|
||||
<circle cx="12.75" cy="12.25" r="2.25" fill="#21252C"></circle>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.RADAR">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeRadar')">
|
||||
<svg width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M1.57045 8.16646L10.3949 1.45986C10.7525 1.18808 11.2475 1.18808 11.6051 1.45986L20.4296 8.16646C20.7706 8.42565 20.9087 8.87328 20.7729 9.27956L17.4187 19.3169C17.2824 19.7249 16.9004 20 16.4703 20H5.52971C5.09956 20 4.7176 19.7249 4.58127 19.3169L1.22709 9.27956C1.09132 8.87328 1.2294 8.42565 1.57045 8.16646Z"
|
||||
stroke="#21252C" stroke-width="1.7" stroke-linecap="round"></path>
|
||||
<path
|
||||
d="M6.11243 9.82863L10.8826 6.2478C10.951 6.19642 11.0446 6.19428 11.1153 6.24249L16.3379 9.80252C16.4279 9.8639 16.4522 9.98606 16.3926 10.0773L13.5468 14.4281C13.5169 14.4739 13.4696 14.5054 13.4158 14.5153L7.91428 15.5328C7.81444 15.5513 7.71661 15.492 7.68675 15.395L6.04134 10.0474C6.01654 9.96678 6.04498 9.87927 6.11243 9.82863Z"
|
||||
stroke="#21252C" stroke-width="1.7" stroke-linecap="round"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.FUNNEL">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeFunnel')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="funnelChart"
|
||||
style="width: 24px;">
|
||||
<path
|
||||
d="M10.7172 18.1334C11.3011 19.0968 12.6989 19.0968 13.2828 18.1334L20.6197 6.02745C21.2256 5.0278 20.5058 3.75 19.3369 3.75H4.66307C3.49415 3.75 2.77442 5.02779 3.38027 6.02745L10.7172 18.1334Z"
|
||||
stroke="#21252C" stroke-width="1.8"></path>
|
||||
<path d="M4.52637 8.25H19.5264" stroke="#21252C" stroke-width="1.8"></path>
|
||||
<path d="M7.52637 12.25H16.5264" stroke="#21252C" stroke-width="1.8"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.GAUGE">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeGauge')">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="vchart-dropdown-content-item-icon" id="gauge"
|
||||
style="width: 24px;">
|
||||
<circle cx="12" cy="12" r="9.5" stroke="#21252C" stroke-width="1.8"></circle>
|
||||
<circle cx="12" cy="16" r="2" stroke="#21252C" stroke-width="1.8"></circle>
|
||||
<path d="M12.9 7C12.9 6.50294 12.4971 6.1 12 6.1C11.5029 6.1 11.1 6.50294 11.1 7H12.9ZM11.1 7V14H12.9V7H11.1Z" fill="#21252C"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
|
||||
<ShadcnRadio :disabled="configuration.headers.length === 0" :value="Type.ROSE">
|
||||
<ShadcnTooltip :content="$t('dataset.common.visualTypeRose')">
|
||||
<svg width="23" height="19" viewBox="0 0 23 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M14.2891 4.34061C12.6163 4.34061 11.1033 5.02518 10.0152 6.12945M9.28906 13.6584C10.364 15.2751 12.2021 16.3406 14.2891 16.3406C14.623 16.3406 14.9507 16.3133 15.2698 16.2608M19.9477 12.3406C20.1688 11.715 20.2891 11.0419 20.2891 10.3406C20.2891 9.29406 20.0211 8.3101 19.5501 7.45357"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
<path
|
||||
d="M21.1403 5.56187C20.0934 2.84561 17.0299 1.28508 14.2419 2.112C14.1199 2.1482 14.0412 2.265 14.0476 2.39211L14.4231 9.83589C14.4343 10.0576 14.6835 10.182 14.8674 10.0576L21.0342 5.8887C21.1407 5.81671 21.1865 5.68182 21.1403 5.56187Z"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
<path
|
||||
d="M15.5303 18.0445C18.321 18.3698 20.8099 16.1368 21.3718 13.3596C21.3983 13.2288 21.3249 13.0997 21.2012 13.0499L14.9075 10.5185C14.7075 10.4381 14.4941 10.6001 14.5179 10.8143L15.2918 17.7994C15.3059 17.9266 15.4033 18.0297 15.5303 18.0445Z"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
<path
|
||||
d="M6.11156 3.00092C2.12443 6.01236 1.38079 11.9577 4.17682 16.11C4.25866 16.2316 4.42097 16.267 4.54805 16.194L14.0167 10.759C14.1817 10.6643 14.2094 10.4377 14.072 10.3061L6.47293 3.02416C6.37404 2.92939 6.22086 2.91837 6.11156 3.00092Z"
|
||||
stroke="#21252C" stroke-width="1.6"></path>
|
||||
</svg>
|
||||
</ShadcnTooltip>
|
||||
</ShadcnRadio>
|
||||
</ShadcnSpace>
|
||||
</ShadcnRadioGroup>
|
||||
</div>
|
||||
</div>
|
||||
</ShadcnCard>
|
||||
|
||||
<ShadcnCard class="mt-1">
|
||||
<template #title>{{ $t('dataset.common.visualConfigure') }}</template>
|
||||
|
||||
<div class="relative p-2">
|
||||
<ShadcnSpin v-model="loading"/>
|
||||
|
||||
<div v-if="configuration" class="flex items-center justify-center">
|
||||
<ShadcnAlert v-if="configuration.type === Type.TABLE" :title="$t('dataset.common.visualConfigureNotSpecified')"/>
|
||||
|
||||
<ShadcnButton v-else @click="configureVisible = true">{{ $t('common.configure') }}</ShadcnButton>
|
||||
</div>
|
||||
</div>
|
||||
</ShadcnCard>
|
||||
</ShadcnLayoutSider>
|
||||
</ShadcnLayoutWrapper>
|
||||
</ShadcnLayout>
|
||||
</div>
|
||||
</div>
|
||||
<VisualConfigure v-if="configureVisible && configuration" :is-visible="configureVisible" :configuration="configuration" :field-group="forwardFiled(configuration.type)"
|
||||
@close="configureVisible = $event" @change="configuration.chartConfigure = $event"/>
|
||||
</ShadcnCard>
|
||||
|
||||
<VisualConfigure v-if="configureVisible && configuration"
|
||||
:is-visible="configureVisible"
|
||||
:configuration="configuration"
|
||||
:field-group="forwardFiled(configuration.type)"
|
||||
@close="configureVisible = $event"
|
||||
@change="configuration.chartConfigure = $event"/>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, PropType } from 'vue'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { Type } from '@/views/components/visual/Type'
|
||||
import VisualWordCloud from '@/views/components/visual/components/VisualWordCloud.vue'
|
||||
import VisualHistogram from '@/views/components/visual/components/VisualHistogram.vue'
|
||||
@ -208,22 +243,18 @@ import { ChartFieldGroup, Configuration } from './Configuration'
|
||||
import VisualBar from '@/views/components/visual/components/VisualBar.vue'
|
||||
import VisualLine from '@/views/components/visual/components/VisualLine.vue'
|
||||
import VisualTable from '@/views/components/visual/components/VisualTable.vue'
|
||||
import { defineComponent, PropType } from 'vue'
|
||||
|
||||
import VisualScatter from '@/views/components/visual/components/VisualScatter.vue'
|
||||
import VisualConfigure from '@/views/components/visual/components/VisualConfigure.vue'
|
||||
import VisualRadar from '@/views/components/visual/components/VisualRadar.vue'
|
||||
import VisualFunnel from '@/views/components/visual/components/VisualFunnel.vue'
|
||||
import VisualGauge from '@/views/components/visual/components/VisualGauge.vue'
|
||||
import { createdConfigure } from '@/views/components/visual/Utils.ts'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import VisualRose from '@/views/components/visual/components/VisualRose.vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'VisualEditor',
|
||||
components: {
|
||||
VisualRose,
|
||||
VisualGauge, VisualFunnel, VisualRadar, VisualConfigure, VisualScatter,
|
||||
VisualRose, VisualGauge, VisualFunnel, VisualRadar, VisualConfigure, VisualScatter,
|
||||
VisualWordCloud, VisualHistogram, VisualPie, VisualArea, VisualBar, VisualLine, VisualTable
|
||||
},
|
||||
computed: {
|
||||
|
@ -1,53 +1,63 @@
|
||||
<template>
|
||||
<Dialog :is-visible="visible" :title="$t('common.configure')" width="40%" @close="handlerCancel">
|
||||
<div v-if="configuration && formState" class="space-y-2 pl-3 pr-3">
|
||||
<Tabs v-model="activeGroup">
|
||||
<TabsList class="grid w-full grid-cols-2">
|
||||
<TabsTrigger v-for="group in fieldGroup" :key="group.label" :value="group.label as string">{{ group.label }}</TabsTrigger>
|
||||
</TabsList>
|
||||
<TabsContent :value="activeGroup as any" class="grid grid-cols-4 gap-4">
|
||||
<FormField v-for="item in fieldGroup.find(value => value.label === activeGroup)?.fields" :name="item.field as string">
|
||||
<FormItem>
|
||||
<FormLabel>{{ item.label }}</FormLabel>
|
||||
<FormControl>
|
||||
<div v-if="item.type === 'SWITCH'">
|
||||
<Switch class="mt-2" :value="item.value" :default-checked="formState[item.field as keyof IChart] ? formState[item.field as keyof IChart] as boolean : item.value"
|
||||
@update:checked="formState[item.field as keyof IChart] = $event as any"/>
|
||||
</div>
|
||||
<Tooltip v-else-if="item.type === 'SLIDER'" :content="formState[item.field as keyof IChart] ? formState[item.field as keyof IChart] : [item.value] as any">
|
||||
<Slider v-model="formState[item.field as keyof IChart] as any" class="pt-3" :default-value="[item.value]" :min="item.min" :max="item.max"
|
||||
:step="item.step"
|
||||
@update:modelValue="formState[item.field as keyof IChart] = $event as any"/>
|
||||
</Tooltip>
|
||||
<Input v-else-if="item.type === 'TEXT'" v-model="formState[item.field as keyof IChart] as string" :placeholder="item.label"
|
||||
:disabled="item.disabled?.field ? formState[item.disabled?.field as keyof IChart] === item.disabled?.value : false"/>
|
||||
<Select v-else v-model="formState[item.field as keyof IChart] as string" :default-value="item.value"
|
||||
:disabled="item.disabled?.field ? formState[item.disabled?.field as keyof IChart] === item.disabled?.value : false">
|
||||
<SelectTrigger class="w-full">
|
||||
<SelectValue :placeholder="item.label"/>
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem v-if="item.values" class="cursor-pointer" v-for="data in item.values" :value="data.value as string">{{ data.label }}</SelectItem>
|
||||
<SelectItem v-else v-for="item in configuration.headers" class="cursor-pointer" :value="item as string">{{ item }}</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
</FormField>
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
<ShadcnDrawer v-model="visible"
|
||||
width="40%"
|
||||
:title="$t('common.configure')"
|
||||
@close="onCancel">
|
||||
|
||||
<div v-if="configuration && formState" style="margin-right: -1rem">
|
||||
<ShadcnTab v-model="activeGroup" direction="vertical" position="right">
|
||||
<ShadcnTabItem v-for="group in fieldGroup"
|
||||
class="space-y-4"
|
||||
:name="group.label"
|
||||
:label="group.label"
|
||||
:key="group.label"
|
||||
:value="group.label">
|
||||
<ShadcnFormItem v-for="item in fieldGroup.find(value => value.label === activeGroup)?.fields"
|
||||
:name="item.field"
|
||||
:key="item.field"
|
||||
:label="item.label">
|
||||
<ShadcnSwitch v-if="item.type === 'SWITCH'" v-model="formState[Object(item.field)]"/>
|
||||
|
||||
<ShadcnSlider v-else-if="item.type === 'SLIDER'" v-model="formState[Object(item.field)]"
|
||||
:min="item.min"
|
||||
:max="item.max"
|
||||
:step="item.step"/>
|
||||
|
||||
<ShadcnInput v-else-if="item.type === 'TEXT'"
|
||||
v-model="formState[Object(item.field)]"
|
||||
:placeholder="item.label"
|
||||
:disabled="item.disabled?.field ? formState[Object(item.disabled?.field)] === item.disabled?.value : false"/>
|
||||
|
||||
<ShadcnSelect v-else v-model="formState[Object(item.field)]"
|
||||
:disabled="item.disabled?.field ? formState[Object(item.disabled?.field)] === item.disabled?.value : false">
|
||||
<template #options>
|
||||
<ShadcnSelectOption v-if="item.values"
|
||||
v-for="data in item.values"
|
||||
:value="data.value"
|
||||
:label="data.label"/>
|
||||
|
||||
<ShadcnSelectOption v-else
|
||||
v-for="item in configuration.headers"
|
||||
:value="item"
|
||||
:label="item"/>
|
||||
</template>
|
||||
</ShadcnSelect>
|
||||
</ShadcnFormItem>
|
||||
</ShadcnTabItem>
|
||||
</ShadcnTab>
|
||||
</div>
|
||||
|
||||
<template #footer>
|
||||
<div class="space-x-5">
|
||||
<Button variant="outline" size="sm" @click="handlerCancel">
|
||||
<ShadcnSpace>
|
||||
<ShadcnButton type="default" @click="onCancel">
|
||||
{{ $t('common.cancel') }}
|
||||
</Button>
|
||||
<Button size="sm" @click="handlerSubmit">
|
||||
</ShadcnButton>
|
||||
<ShadcnButton @click="onSubmit">
|
||||
{{ $t('common.apply') }}
|
||||
</Button>
|
||||
</div>
|
||||
</ShadcnButton>
|
||||
</ShadcnSpace>
|
||||
</template>
|
||||
</Dialog>
|
||||
</ShadcnDrawer>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
@ -106,14 +116,14 @@ export default defineComponent({
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handlerCancel()
|
||||
onCancel()
|
||||
{
|
||||
this.visible = false
|
||||
},
|
||||
handlerSubmit()
|
||||
onSubmit()
|
||||
{
|
||||
this.$emit('change', this.formState)
|
||||
this.handlerCancel()
|
||||
this.onCancel()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user