-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(pivot-data-table): create pivot form (transform data-table) #5215
Changes from 1 commit
f3a7954
1384440
4383bd8
d1a6a99
02de55b
564b25e
c4105ac
9dad6ed
3ec1a44
812d132
eb2f144
e3968af
df8db1b
973f997
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,261 @@ | ||
<script setup lang="ts"> | ||
import { | ||
computed, reactive, watch, | ||
} from 'vue'; | ||
|
||
import { | ||
PDivider, PFieldGroup, PSelectButton, PTextInput, PSelectDropdown, | ||
} from '@cloudforet/mirinae'; | ||
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type'; | ||
|
||
import { i18n } from '@/translations'; | ||
|
||
import { useProxyValue } from '@/common/composables/proxy-state'; | ||
import WidgetFormDataTableCardTransformDataTableDropdown | ||
from '@/common/modules/widgets/_components/WidgetFormDataTableCardTransformDataTableDropdown.vue'; | ||
import WidgetFormDataTableCardTransformFormWrapper | ||
from '@/common/modules/widgets/_components/WidgetFormDataTableCardTransformFormWrapper.vue'; | ||
import { | ||
type DATA_TABLE_OPERATOR, DEFAULT_TRANSFORM_DATA_TABLE_VALUE_MAP, | ||
} from '@/common/modules/widgets/_constants/data-table-constant'; | ||
import { useWidgetGenerateStore } from '@/common/modules/widgets/_store/widget-generate-store'; | ||
import type { TransformDataTableInfo } from '@/common/modules/widgets/types/widget-data-table-type'; | ||
import type { PivotOptions } from '@/common/modules/widgets/types/widget-model'; | ||
|
||
|
||
|
||
interface Props { | ||
dataTableId: string; | ||
dataTableInfo: TransformDataTableInfo; | ||
formData: Omit<PivotOptions, 'dataTableId'>; | ||
} | ||
|
||
const props = defineProps<Props>(); | ||
|
||
const emit = defineEmits<{(e: 'update:form-data', value: Omit<PivotOptions, 'dataTableId'>): void; | ||
(e: 'update:data-table-info', value: TransformDataTableInfo): void; | ||
}>(); | ||
const widgetGenerateStore = useWidgetGenerateStore(); | ||
const widgetGenerateState = widgetGenerateStore.state; | ||
|
||
const storeState = reactive({ | ||
dataTables: computed(() => widgetGenerateState.dataTables), | ||
}); | ||
const state = reactive({ | ||
isInitiated: true, | ||
proxyDataTableInfo: useProxyValue<TransformDataTableInfo>('dataTableInfo', props, emit), | ||
proxyFormData: useProxyValue<Omit<PivotOptions, 'dataTableId'>>('formData', props, emit), | ||
selectedDataTable: computed(() => storeState.dataTables.find((dataTable) => dataTable.data_table_id === state.proxyDataTableInfo.dataTableId)), | ||
labelFieldItems: computed<MenuItem[]>(() => { | ||
if (!state.selectedDataTable) return []; | ||
const labelsInfo = state.selectedDataTable.labels_info; | ||
return Object.keys(labelsInfo).map((key) => ({ | ||
name: key, | ||
label: key, | ||
})); | ||
}), | ||
dataFieldItems: computed<MenuItem[]>(() => { | ||
if (!state.selectedDataTable) return []; | ||
const dataInfo = state.selectedDataTable.data_info; | ||
return Object.keys(dataInfo).map((key) => ({ | ||
name: key, | ||
label: key, | ||
})); | ||
}), | ||
columnFieldInvalid: computed<boolean>(() => { | ||
if (state.labelFieldItems.length === 1) return true; | ||
return false; | ||
}), | ||
valueTypeItems: computed<MenuItem[]>(() => [ | ||
{ | ||
name: 'auto', | ||
label: i18n.t('DASHBOARDS.WIDGET.OVERLAY.STEP_2.AUTO'), | ||
}, | ||
{ | ||
name: 'fixed', | ||
label: i18n.t('DASHBOARDS.WIDGET.OVERLAY.STEP_2.FIXED'), | ||
}, | ||
]), | ||
selectedValueType: 'auto', | ||
selectedDynamicFieldMenuItems: computed(() => []), | ||
dynamicFieldLoading: false, | ||
}); | ||
/* Events */ | ||
const handleUpdateCriteria = (value: string) => { | ||
state.proxyFormData = { | ||
...state.proxyFormData, | ||
fields: { | ||
...state.proxyFormData.fields, | ||
data: value, | ||
}, | ||
}; | ||
}; | ||
const handleUpdateColumn = (value: string) => { | ||
state.proxyFormData = { | ||
...state.proxyFormData, | ||
fields: { | ||
...state.proxyFormData.fields, | ||
column: value, | ||
}, | ||
}; | ||
}; | ||
|
||
const handleChangeValueType = (value: string) => { | ||
state.selectedValueType = value; | ||
if (value === 'auto') { | ||
state.proxyFormData = { | ||
...state.proxyFormData, | ||
select: undefined, | ||
limit: DEFAULT_TRANSFORM_DATA_TABLE_VALUE_MAP.PIVOT.limit, | ||
}; | ||
} else { | ||
state.proxyFormData = { | ||
...state.proxyFormData, | ||
select: [], | ||
limit: undefined, | ||
}; | ||
} | ||
}; | ||
|
||
const handleSelectDynamicFields = (value: MenuItem[]) => { | ||
state.proxyFormData = { | ||
...state.proxyFormData, | ||
select: value.map((item) => item.name), | ||
}; | ||
}; | ||
const handleUpdateLimit = (value: string) => { | ||
state.proxyFormData = { | ||
...state.proxyFormData, | ||
limit: value, | ||
}; | ||
}; | ||
Comment on lines
+131
to
+159
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: updating the merged object(formData) everytime when each property has changed is.. I think, a little dangerous 🤔. |
||
|
||
watch(() => props.formData, (formData) => { | ||
console.debug('watch props.formData', formData); | ||
if (state.isInitiated) { | ||
state.selectedValueType = formData.limit !== undefined ? 'auto' : 'fixed'; | ||
state.isInitiated = false; | ||
} | ||
}); | ||
|
||
watch(() => state.proxyDataTableInfo, (dataTableInfo) => { | ||
const dataTableId = dataTableInfo.dataTableId; | ||
if (dataTableId) { | ||
state.selectedValueType = 'auto'; | ||
state.proxyFormData = DEFAULT_TRANSFORM_DATA_TABLE_VALUE_MAP.PIVOT; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue: constant object must be assign with new object to prevent not intended mutation. |
||
} | ||
}); | ||
|
||
</script> | ||
|
||
<template> | ||
<div class="widget-form-data-table-card-transform-pivot-form"> | ||
<widget-form-data-table-card-transform-form-wrapper :operator="DATA_TABLE_OPERATOR.PIVOT"> | ||
<div> | ||
<div class="data-table-dropdown-wrapper"> | ||
<widget-form-data-table-card-transform-data-table-dropdown :data-table-id="props.dataTableId" | ||
:operator="DATA_TABLE_OPERATOR.PIVOT" | ||
:data-table-info.sync="state.proxyDataTableInfo" | ||
/> | ||
</div> | ||
<div class="pivot-form"> | ||
<p-field-group :label="$t('COMMON.WIDGETS.CRITERIA')" | ||
style-type="secondary" | ||
required | ||
class="criteria-field" | ||
> | ||
<p-select-dropdown :menu="state.dataFieldItems" | ||
:selected="state.proxyFormData.fields?.data" | ||
appearance-type="badge" | ||
block | ||
@update:selected="handleUpdateCriteria" | ||
/> | ||
</p-field-group> | ||
<p-field-group :label="$t('COMMON.WIDGETS.FIELD')" | ||
style-type="secondary" | ||
required | ||
class="w-full" | ||
> | ||
<div class="field-contents-wrapper"> | ||
<p-select-dropdown :menu="state.labelFieldItems" | ||
:selected="state.proxyFormData.fields?.column" | ||
appearance-type="badge" | ||
:invalid="state.columnFieldInvalid" | ||
:disabled="state.columnFieldInvalid" | ||
block | ||
@update:selected="handleUpdateColumn" | ||
/> | ||
<p-divider vertical /> | ||
<p-select-button v-for="selectItem in state.valueTypeItems" | ||
:key="`select-button-${selectItem.name}`" | ||
class="value-type-button" | ||
:value="selectItem.name" | ||
style-type="secondary" | ||
:selected="state.selectedValueType" | ||
block | ||
@change="handleChangeValueType" | ||
> | ||
{{ selectItem.label }} | ||
</p-select-button> | ||
</div> | ||
</p-field-group> | ||
<p-field-group required> | ||
<div class="dynamic-field-value-contents-wrapper"> | ||
<p-select-dropdown v-if="state.selectedValueType === 'fixed'" | ||
class="dynamic-field-select-dropdown" | ||
:menu="[]" | ||
:selected="state.selectedDynamicFieldMenuItems" | ||
:loading="state.dynamicFieldLoading" | ||
use-fixed-menu-style | ||
multi-selectable | ||
appearance-type="badge" | ||
show-select-marker | ||
show-clear-selection | ||
block | ||
@select="handleSelectDynamicFields" | ||
@clear-selection="handleSelectDynamicFields([])" | ||
/> | ||
<p-text-input v-else | ||
type="number" | ||
class="dynamic-field-auto-count" | ||
:min="1" | ||
:max="15" | ||
:placeholder="$t('COMMON.WIDGETS.MAX_ITEMS')" | ||
:invalid="!state.proxyFormData.limit" | ||
:value="state.proxyFormData.limit" | ||
block | ||
@update:value="handleUpdateLimit" | ||
/> | ||
</div> | ||
</p-field-group> | ||
</div> | ||
</div> | ||
</widget-form-data-table-card-transform-form-wrapper> | ||
</div> | ||
</template> | ||
|
||
<style scoped lang="postcss"> | ||
.widget-form-data-table-card-transform-pivot-form { | ||
.data-table-dropdown-wrapper { | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.pivot-form { | ||
.field-contents-wrapper { | ||
@apply flex gap-2; | ||
|
||
.value-type-button { | ||
height: 2rem; | ||
padding: 0 1rem; | ||
} | ||
} | ||
.dynamic-field-value-contents-wrapper { | ||
margin-top: 0.5rem; | ||
|
||
.dynamic-field-auto-count { | ||
height: 2rem; | ||
} | ||
} | ||
} | ||
} | ||
</style> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: Why didn't u use fieldValidator or formValidator? It has different behavior?