fix(接口测试): 前后置条件及断言添加没有删除二次提醒

--bug=1037910 --user=宋昌昌 【接口测试】定义-调试-断言-脚本重命名输入一个超长的名称 https://www.tapd.cn/55049933/s/1490281
--bug=1037488 --user=宋昌昌 【接口测试】定义-调试-后置-脚本操作-删除存在内容的脚本没有二次确认 https://www.tapd.cn/55049933/s/1490326
This commit is contained in:
song-cc-rock 2024-04-08 16:20:54 +08:00 committed by 刘瑞斌
parent 1bcbb6a306
commit 6934478aec
8 changed files with 104 additions and 14 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<conditionContent v-model:data="condition" :disabled="props.disabled" /> <conditionContent v-model:data="condition" :disabled="props.disabled" @delete="deleteItem" />
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@ -25,6 +25,7 @@
const emit = defineEmits<{ const emit = defineEmits<{
(e: 'change', val: ScriptItem): void; // (e: 'change', val: ScriptItem): void; //
(e: 'update:data'): void; // (e: 'update:data'): void; //
(e: 'deleteScriptItem', id: string | number): void; //
}>(); }>();
const condition = useVModel(props, 'data', emit); const condition = useVModel(props, 'data', emit);
@ -39,9 +40,16 @@
/** 向孙组件提供属性 */ /** 向孙组件提供属性 */
provide('currentEnvConfig', readonly(currentEnvConfig)); provide('currentEnvConfig', readonly(currentEnvConfig));
/**
* 删除列表项
*/
function deleteItem(id: string | number) {
emit('deleteScriptItem', id);
}
onBeforeMount(() => { onBeforeMount(() => {
initEnvironment(); initEnvironment();
}); });
</script> </script>
<style lang="less" scoped></style> <style lang="less" scoped></style>

View File

@ -40,9 +40,13 @@
> >
<div class="ms-assertion-body-left-item-row"> <div class="ms-assertion-body-left-item-row">
<span class="ms-assertion-body-left-item-row-num">{{ index + 1 }}</span> <span class="ms-assertion-body-left-item-row-num">{{ index + 1 }}</span>
<div class="one-line-text" :class="{ 'text-[rgb(var(--primary-5))]': activeKey === item.id }">{{ <a-tooltip :content="item.name">
item.name <div
}}</div> class="one-line-text max-w-[80px]"
:class="{ 'text-[rgb(var(--primary-5))]': activeKey === item.id }"
>{{ item.name }}</div
>
</a-tooltip>
</div> </div>
<div class="ms-assertion-body-left-item-switch"> <div class="ms-assertion-body-left-item-switch">
<div v-show="!props.disabled" class="ms-assertion-body-left-item-switch-action"> <div v-show="!props.disabled" class="ms-assertion-body-left-item-switch-action">
@ -128,6 +132,7 @@
v-model:data="getCurrentItemState" v-model:data="getCurrentItemState"
:disabled="props.disabled" :disabled="props.disabled"
@change="handleChange" @change="handleChange"
@deleteScriptItem="deleteScriptItem"
/> />
</div> </div>
</div> </div>
@ -152,14 +157,17 @@
import ScriptTab from './comp/ScriptTab.vue'; import ScriptTab from './comp/ScriptTab.vue';
import StatusCodeTab from './comp/StatusCodeTab.vue'; import StatusCodeTab from './comp/StatusCodeTab.vue';
import VariableTab from './comp/VariableTab.vue'; import VariableTab from './comp/VariableTab.vue';
import { useI18n } from '@/hooks/useI18n'; import { useI18n } from '@/hooks/useI18n';
import useModal from '@/hooks/useModal';
import { characterLimit } from '@/utils';
import { ExecuteAssertionConfig } from '@/models/apiTest/common'; import { ExecuteAssertionConfig } from '@/models/apiTest/common';
import { ResponseAssertionType, ResponseBodyAssertionType } from '@/enums/apiEnum'; import { ResponseAssertionType, ResponseBodyAssertionType } from '@/enums/apiEnum';
import { MsAssertionItem } from './type'; import { MsAssertionItem } from './type';
const { openModal } = useModal();
defineOptions({ defineOptions({
name: 'MsAssertion', name: 'MsAssertion',
}); });
@ -358,8 +366,25 @@
const handleMoreActionSelect = (event: ActionsItem, item: MsAssertionItem) => { const handleMoreActionSelect = (event: ActionsItem, item: MsAssertionItem) => {
const currentIndex = assertions.value.findIndex((tmpItem) => tmpItem.id === item.id); const currentIndex = assertions.value.findIndex((tmpItem) => tmpItem.id === item.id);
if (event.eventTag === 'delete') { if (event.eventTag === 'delete') {
assertions.value.splice(currentIndex, 1); openModal({
activeKey.value = currentIndex > 0 ? assertions.value[currentIndex - 1].id : ''; type: 'error',
title: t('system.orgTemplate.deleteTemplateTitle', { name: characterLimit(item.name) }),
content: t('script.delete.confirm'),
okText: t('system.userGroup.confirmDelete'),
cancelText: t('system.userGroup.cancel'),
okButtonProps: {
status: 'danger',
},
onBeforeOk: async () => {
try {
assertions.value.splice(currentIndex, 1);
activeKey.value = currentIndex > 0 ? assertions.value[currentIndex - 1].id : '';
} catch (error) {
console.log(error);
}
},
hideCancel: false,
});
} else { } else {
// copy item // copy item
const tmpObj = { ...cloneDeep(assertions.value[currentIndex]), id: new Date().getTime().valueOf().toString() }; const tmpObj = { ...cloneDeep(assertions.value[currentIndex]), id: new Date().getTime().valueOf().toString() };
@ -370,6 +395,15 @@
} }
}; };
/**
* 删除脚本项
*/
const deleteScriptItem = (id: string | number) => {
const currentIndex = assertions.value.findIndex((tmpItem) => tmpItem.id === id);
assertions.value.splice(currentIndex, 1);
activeKey.value = currentIndex > 0 ? assertions.value[currentIndex - 1].id : '';
};
// item // item
const handleItemClick = (item: MsAssertionItem) => { const handleItemClick = (item: MsAssertionItem) => {
activeKey.value = item.id; activeKey.value = item.id;
@ -522,4 +556,4 @@
opacity: 1; opacity: 1;
} }
} }
</style> </style>

View File

@ -8,6 +8,7 @@ export interface MsAssertionItem {
id: string; id: string;
label: string; label: string;
value: string; value: string;
name: string;
valueObj: ValueObject; valueObj: ValueObject;
} }

View File

@ -457,9 +457,7 @@
import MsCodeEditor from '@/components/pure/ms-code-editor/index.vue'; import MsCodeEditor from '@/components/pure/ms-code-editor/index.vue';
import { LanguageEnum } from '@/components/pure/ms-code-editor/types'; import { LanguageEnum } from '@/components/pure/ms-code-editor/types';
import MsIcon from '@/components/pure/ms-icon-font/index.vue'; import MsIcon from '@/components/pure/ms-icon-font/index.vue';
import MsBaseTable from '@/components/pure/ms-table/base-table.vue';
import type { MsTableColumn } from '@/components/pure/ms-table/type'; import type { MsTableColumn } from '@/components/pure/ms-table/type';
import useTable from '@/components/pure/ms-table/useTable';
import { ActionsItem } from '@/components/pure/ms-table-more-action/types'; import { ActionsItem } from '@/components/pure/ms-table-more-action/types';
import InsertCommonScript from '@/components/business/ms-common-script/insertCommonScript.vue'; import InsertCommonScript from '@/components/business/ms-common-script/insertCommonScript.vue';
import AddScriptDrawer from '@/components/business/ms-common-script/ms-addScriptDrawer.vue'; import AddScriptDrawer from '@/components/business/ms-common-script/ms-addScriptDrawer.vue';
@ -472,7 +470,9 @@
import { getProtocolList } from '@/api/modules/api-test/common'; import { getProtocolList } from '@/api/modules/api-test/common';
import { useI18n } from '@/hooks/useI18n'; import { useI18n } from '@/hooks/useI18n';
import useModal from '@/hooks/useModal';
import useAppStore from '@/store/modules/app'; import useAppStore from '@/store/modules/app';
import { characterLimit } from '@/utils';
import { hasAnyPermission } from '@/utils/permission'; import { hasAnyPermission } from '@/utils/permission';
import { import {
@ -497,6 +497,8 @@
import { defaultKeyValueParamItem } from '@/views/api-test/components/config'; import { defaultKeyValueParamItem } from '@/views/api-test/components/config';
const { openModal } = useModal();
export type ExpressionConfig = (RegexExtract | JSONPathExtract | XPathExtract) & Record<string, any>; export type ExpressionConfig = (RegexExtract | JSONPathExtract | XPathExtract) & Record<string, any>;
const appStore = useAppStore(); const appStore = useAppStore();
const props = withDefaults( const props = withDefaults(
@ -604,7 +606,24 @@ if (!result){
* 删除条件 * 删除条件
*/ */
function deleteCondition() { function deleteCondition() {
emit('delete', condition.value.id); openModal({
type: 'error',
title: t('system.orgTemplate.deleteTemplateTitle', { name: characterLimit(condition.value.name) }),
content: t('script.delete.confirm'),
okText: t('system.userGroup.confirmDelete'),
cancelText: t('system.userGroup.cancel'),
okButtonProps: {
status: 'danger',
},
onBeforeOk: async () => {
try {
emit('delete', condition.value.id);
} catch (error) {
console.log(error);
}
},
hideCancel: false,
});
} }
const commonScriptShowType = ref<'parameters' | 'scriptContent'>('parameters'); const commonScriptShowType = ref<'parameters' | 'scriptContent'>('parameters');

View File

@ -67,6 +67,8 @@
import { conditionTypeNameMap } from '@/config/apiTest'; import { conditionTypeNameMap } from '@/config/apiTest';
import { useI18n } from '@/hooks/useI18n'; import { useI18n } from '@/hooks/useI18n';
import useModal from '@/hooks/useModal';
import { characterLimit } from '@/utils';
import { ExecuteConditionProcessor } from '@/models/apiTest/common'; import { ExecuteConditionProcessor } from '@/models/apiTest/common';
import { RequestConditionProcessor } from '@/enums/apiEnum'; import { RequestConditionProcessor } from '@/enums/apiEnum';
@ -86,6 +88,7 @@
const { t } = useI18n(); const { t } = useI18n();
const data = useVModel(props, 'list', emit); const data = useVModel(props, 'list', emit);
const { openModal } = useModal();
// //
const focusItemKey = ref<any>(''); const focusItemKey = ref<any>('');
@ -206,7 +209,24 @@
if (event.eventTag === 'copy') { if (event.eventTag === 'copy') {
copyListItem(item); copyListItem(item);
} else if (event.eventTag === 'delete') { } else if (event.eventTag === 'delete') {
deleteListItem(item); openModal({
type: 'error',
title: t('system.orgTemplate.deleteTemplateTitle', { name: characterLimit(item.name) }),
content: t('script.delete.confirm'),
okText: t('system.userGroup.confirmDelete'),
cancelText: t('system.userGroup.cancel'),
okButtonProps: {
status: 'danger',
},
onBeforeOk: async () => {
try {
deleteListItem(item);
} catch (error) {
console.log(error);
}
},
hideCancel: false,
});
} }
} }
</script> </script>
@ -218,4 +238,4 @@
background: white !important; background: white !important;
box-shadow: 0 0 0 1px var(--color-text-n8); box-shadow: 0 0 0 1px var(--color-text-n8);
} }
</style> </style>

View File

@ -632,6 +632,12 @@
(val) => { (val) => {
if (val) { if (val) {
activeTab.value = 'detail'; activeTab.value = 'detail';
} else {
const query = { ...route.query };
delete query.id;
router.replace({
query,
});
} }
} }
); );

View File

@ -128,4 +128,5 @@ export default {
'project.environmental.database.nameIsExist': 'Database name already exists', 'project.environmental.database.nameIsExist': 'Database name already exists',
'project.environmental.http.noneDataExist': 'There is already a domain name with an enabled range of none!', 'project.environmental.http.noneDataExist': 'There is already a domain name with an enabled range of none!',
'project.environmental.http.selectModule': 'Please select module', 'project.environmental.http.selectModule': 'Please select module',
'script.delete.confirm': 'After deletion, it cannot be restored. Please exercise caution.',
}; };

View File

@ -132,4 +132,5 @@ export default {
'project.environmental.database.nameIsExist': '数据源名称已存在', 'project.environmental.database.nameIsExist': '数据源名称已存在',
'project.environmental.http.noneDataExist': '已存在启用范围为无的域名!', 'project.environmental.http.noneDataExist': '已存在启用范围为无的域名!',
'project.environmental.http.selectModule': '请选择模块', 'project.environmental.http.selectModule': '请选择模块',
'script.delete.confirm': '删除后无法恢复, 请谨慎操作!',
}; };