-
Notifications
You must be signed in to change notification settings - Fork 2k
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
perf: optimization workflow interactive #2481
Changes from all commits
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 |
---|---|---|
|
@@ -17,17 +17,14 @@ export const startNode = { | |
} | ||
], | ||
globalFields: [ | ||
{ label: t('views.applicationWorkflow.nodes.startNode.currentTime'), value: 'time' }, | ||
{ | ||
value: 'time', | ||
label: t('views.applicationWorkflow.nodes.startNode.currentTime') | ||
label: t('views.application.applicationForm.form.historyRecord.label'), | ||
value: 'history_context' | ||
}, | ||
{ | ||
value: 'history_context', | ||
label: t('views.application.applicationForm.form.historyRecord.label') | ||
}, | ||
{ | ||
value: 'chat_id', | ||
label: t('chat.chatId') | ||
label: t('chat.chatId'), | ||
value: 'chat_id' | ||
} | ||
] | ||
}, | ||
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. There are several areas in the code that could be improved:
Here's refactored version of the code: export const startNode = {
conditions: [
{ name: 'current_date', fieldNames: ['date'] },
{ name: 'past_dates', fieldNames: ['period'] }
],
globalFields: [
{ label: t('views.applicationWorkflow.nodes.startNode.currentTime'), value: 'time' }, // Use distinct labels if needed
{ label: t('chat.chatId'), value: 'chat_id' } // Rename similar values consistently
]
}; This refactoring simplifies the structure while addressing potential duplication and clarity issues. Let me know if you need further adjustments! |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
ref="replyNodeFormRef" | ||
hide-required-asterisk | ||
> | ||
<el-scrollbar max-height="750" @wheel="wheel"> | ||
<template v-for="(item, index) in form_data.variable_list" :key="item.id"> | ||
<el-card shadow="never" class="card-never mb-8" style="--el-card-padding: 12px"> | ||
<el-form-item :label="$t('views.applicationWorkflow.variable.label')"> | ||
|
@@ -127,17 +128,18 @@ | |
/> | ||
</el-form-item> | ||
</div> | ||
|
||
<NodeCascader | ||
v-else | ||
ref="nodeCascaderRef2" | ||
:nodeModel="nodeModel" | ||
class="w-full" | ||
:placeholder="$t('views.applicationWorkflow.variable.placeholder')" | ||
v-model="item.reference" | ||
/> | ||
<el-form-item v-else> | ||
<NodeCascader | ||
ref="nodeCascaderRef2" | ||
:nodeModel="nodeModel" | ||
class="w-full" | ||
:placeholder="$t('views.applicationWorkflow.variable.placeholder')" | ||
v-model="item.reference" | ||
/> | ||
</el-form-item> | ||
</el-card> | ||
</template> | ||
</el-scrollbar> | ||
<el-button link type="primary" @click="addVariable"> | ||
<el-icon class="mr-4"> | ||
<Plus /> | ||
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. The code appears to be well-formed according to ESLint rules. Here are some minor optimizations and improvements:
here's the optimized version of your code: <template>
<el-row :gutter="16" justify="space-around">
<el-col
v-for="(item, index) in formData.variableList"
:key="item.id"
:span="8"
>
<el-card shadow="never">
<el-form-item label="$t('views.applicationWorkflow.variable.label')">
<!-- Form item contents -->
</el-form-item>
<div v-if="... condition...">
<!-- ... -->
</div>
<el-form-item v-else>
<NodeCascader
ref="nodeCascaderRef2"
:nodeModel="nodeModel"
class="w-full"
:placeholder="$t('views.applicationWorkflow.variable.placeholder')"
v-model="item.reference"
/>
</el-form-item>
</el-card>
</el-col>
</el-row>
</template>
<script setup>
import NodeCascader from '@/components/NodeCascader.vue';
import { Plus } from '@element-plus/icons-vue';
const formDa = reactive({
variableList: [...],
});
function addVariable() {
// Add logic here
}
</script>
<style lang="scss">
/* Your styles here */
</style> Key Changes:
This keeps the code clean and maintainable while adhering to standard coding practices and ESLint conventions. |
||
|
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.
Code Review and Suggestions:
Irregularities and Potential Issues:
Variable Naming:
cloneWorkFlow
appears to be intended to hold a copy of the graph data, but it's not assigned anywhere after initialization.Redundant Logic for Save Check:
back()
that checks changes againstgetGraphData()
is redundant becausesaveApplication
already handles updating only when there are changes.Synchronization Issue: In
saveApplication
, you're settingloading.value = back || false
. Ifbool
is true,loading
should reflect this value correctly.Optimization Suggestions:
Use
watchEffect()
for Graph Data Changes:Instead of performing the save operation manually on each change, consider using Vue's reactive watchers to detect graph changes automatically.
This approach ensures that saving occurs whenever the graph state changes without manual intervention.
Remove Redundancy in Click Outside History Functionality:
Remove unnecessary checks within
clickoutsideHistory
.By making these optimizations, the code will become more efficient, readable, and maintainable. Additionally, using
watchEffect()
can simplify error handling related to network requests since Vue handles re-rendering and updates seamlessly during such conditions.