fix: workflow template => flow form data, scroll to last item, sidemenu active

This commit is contained in:
puriphatt 2024-10-25 10:12:13 +07:00
parent 7554fe8150
commit f2258e9e90
3 changed files with 31 additions and 45 deletions

View file

@ -5,19 +5,9 @@ import { moveItemUp, moveItemDown, deleteItem } from 'src/stores/utils';
import ToggleButton from 'src/components/button/ToggleButton.vue'; import ToggleButton from 'src/components/button/ToggleButton.vue';
import { DeleteButton } from '../button'; import { DeleteButton } from '../button';
import { WorkflowTemplatePayload } from 'src/stores/workflow-template/types';
type WorkFlow = { const flowData = defineModel<WorkflowTemplatePayload>('flowData', {
name: string;
step: FlowStep[];
};
type FlowStep = {
responsiblePersonId: string[];
value: string[];
name: string;
};
const flowData = defineModel<WorkFlow>('flowData', {
required: true, required: true,
default: { default: {
name: '', name: '',
@ -78,13 +68,15 @@ defineEmits<{
outlined outlined
dense dense
class="col" class="col"
id="input-flow-template-name"
v-model="flowData.name" v-model="flowData.name"
hide-bottom-space
:label="$t(`general.name`, { msg: $t('flow.step') })" :label="$t(`general.name`, { msg: $t('flow.step') })"
:rules="[(val: string) => !!val || $t('form.error.required')]"
></q-input> ></q-input>
</section> </section>
<section <section
id="form-flow-step"
class="col-12 q-pb-sm q-pt-lg text-weight-bold text-body1 row items-center" class="col-12 q-pb-sm q-pt-lg text-weight-bold text-body1 row items-center"
> >
<q-icon <q-icon
@ -100,6 +92,7 @@ defineEmits<{
<section class="col-12"> <section class="col-12">
<q-table <q-table
id="form-flow-step"
flat flat
bordered bordered
hide-pagination hide-pagination
@ -124,8 +117,8 @@ defineEmits<{
<q-td style="width: 60%"> <q-td style="width: 60%">
<section class="row items-center"> <section class="row items-center">
<q-btn <q-btn
id="btn-up" :id="`btn-up-${props.rowIndex}`"
for="btn-up" :for="`btn-up-${props.rowIndex}`"
icon="mdi-arrow-up" icon="mdi-arrow-up"
size="sm" size="sm"
dense dense
@ -136,8 +129,8 @@ defineEmits<{
@click.stop="moveItemUp(flowData.step, props.rowIndex)" @click.stop="moveItemUp(flowData.step, props.rowIndex)"
/> />
<q-btn <q-btn
id="btn-down" :id="`btn-down-${props.rowIndex}`"
for="btn-down" :for="`btn-down-${props.rowIndex}`"
icon="mdi-arrow-down" icon="mdi-arrow-down"
size="sm" size="sm"
dense dense
@ -165,14 +158,17 @@ defineEmits<{
class="col" class="col"
:placeholder="$t('general.no', { msg: $t('flow.step') })" :placeholder="$t('general.no', { msg: $t('flow.step') })"
v-model="props.row.name" v-model="props.row.name"
></q-input> hide-bottom-space
:rules="[(val: string) => !!val || $t('form.error.required')]"
/>
</section> </section>
</q-td> </q-td>
<q-td> <q-td>
<q-field @click.stop dense outlined> <q-field @click.stop dense outlined>
<span class="app-text-muted"> <span class="app-text-muted row items-center col">
{{ $t('general.no', { msg: $t('flow.responsiblePerson') }) }} {{ $t('general.no', { msg: $t('flow.responsiblePerson') }) }}
<q-icon name="mdi-chevron-down" class="q-ml-auto" />
</span> </span>
<q-menu style="width: 18rem" :offset="[0, 4]"> <q-menu style="width: 18rem" :offset="[0, 4]">
<q-list> <q-list>

View file

@ -5,6 +5,7 @@ import StatCardComponent from 'src/components/StatCardComponent.vue';
import CreateButton from 'src/components/AddButton.vue'; import CreateButton from 'src/components/AddButton.vue';
import PaginationComponent from 'src/components/PaginationComponent.vue'; import PaginationComponent from 'src/components/PaginationComponent.vue';
import FlowDialog from '../04_product-service/FlowDialog.vue'; import FlowDialog from '../04_product-service/FlowDialog.vue';
import { WorkflowTemplatePayload } from 'src/stores/workflow-template/types';
const pageState = reactive({ const pageState = reactive({
hideStat: false, hideStat: false,
@ -16,6 +17,11 @@ const pageState = reactive({
addModal: false, addModal: false,
}); });
const formFlowData = ref<WorkflowTemplatePayload>({
name: '',
step: [],
});
const statusFilter = ref<'all' | 'statusACTIVE' | 'statusINACTIVE'>('all'); const statusFilter = ref<'all' | 'statusACTIVE' | 'statusINACTIVE'>('all');
function triggerAddDialog() { function triggerAddDialog() {
@ -259,5 +265,5 @@ function triggerAddDialog() {
</section> </section>
</div> </div>
<FlowDialog v-model="pageState.addModal" /> <FlowDialog v-model="pageState.addModal" v-model:flow-data="formFlowData" />
</template> </template>

View file

@ -2,21 +2,11 @@
import DialogForm from 'src/components/DialogForm.vue'; import DialogForm from 'src/components/DialogForm.vue';
import SideMenu from 'src/components/SideMenu.vue'; import SideMenu from 'src/components/SideMenu.vue';
import FormFlow from 'src/components/04_flow-management/FormFlow.vue'; import FormFlow from 'src/components/04_flow-management/FormFlow.vue';
import { ref } from 'vue'; import { WorkflowTemplatePayload } from 'src/stores/workflow-template/types';
import { nextTick } from 'vue';
type WorkFlow = {
name: string;
step: FlowStep[];
};
type FlowStep = {
responsiblePersonId: string[];
value: string[];
name: string;
};
const model = defineModel<boolean>({ required: true, default: false }); const model = defineModel<boolean>({ required: true, default: false });
const flowData = defineModel<WorkFlow>('flowStep', { const flowData = defineModel<WorkflowTemplatePayload>('flowData', {
required: true, required: true,
default: { default: {
name: '', name: '',
@ -24,11 +14,6 @@ const flowData = defineModel<WorkFlow>('flowStep', {
}, },
}); });
const mockFlowData = ref<WorkFlow>({
name: '',
step: [],
});
withDefaults( withDefaults(
defineProps<{ defineProps<{
readonly?: boolean; readonly?: boolean;
@ -36,18 +21,17 @@ withDefaults(
{ readonly: false }, { readonly: false },
); );
function addStep() { async function addStep() {
mockFlowData.value.step.push({ flowData.value.step.push({
responsiblePersonId: [''], responsiblePersonId: [''],
value: [''], value: [''],
name: '', name: '',
}); });
await nextTick();
const scrollTarget = document.getElementById( const scrollTarget = document.getElementById(
`input-flow-step-name-${mockFlowData.value.step.length - 1}`, `input-flow-step-name-${flowData.value.step.length - 1}`,
); );
console.log(`input-flow-step-name-${mockFlowData.value.step.length - 1}`);
console.log(scrollTarget);
if (scrollTarget) if (scrollTarget)
scrollTarget.scrollIntoView({ behavior: 'instant', inline: 'center' }); scrollTarget.scrollIntoView({ behavior: 'instant', inline: 'center' });
} }
@ -106,14 +90,14 @@ function addStep() {
<section <section
class="col-12 col-md-10" class="col-12 col-md-10"
id="customer-form-content"
:class="{ :class="{
'q-py-md q-pr-md ': $q.screen.gt.sm, 'q-py-md q-pr-md ': $q.screen.gt.sm,
'q-py-md q-px-lg': !$q.screen.gt.sm, 'q-py-md q-px-lg': !$q.screen.gt.sm,
}" }"
style="height: 100%; max-height: 100%; overflow-y: auto" style="height: 100%; max-height: 100%; overflow-y: auto"
id="flow-form"
> >
<FormFlow id="#flow-form" v-model:flow-data="mockFlowData" /> <FormFlow v-model:flow-data="flowData" />
</section> </section>
</div> </div>
</DialogForm> </DialogForm>