Files
pqs-9100_client/frontend/src/utils/detectionLockDialog.ts

73 lines
2.5 KiB
TypeScript
Raw Normal View History

import { ElMessage, ElMessageBox } from 'element-plus'
import type { DetectionLockHolder } from '@/stores/modules/detectionLock'
/**
* S1:他人正在做检测,
*/
export const showLockBusyDialog = (holder: DetectionLockHolder) => {
ElMessageBox.confirm(
`${holder.holderUserName}」正在做检测,请稍后。`,
'检测进行中',
{
confirmButtonText: '观看检测视频教学',
cancelButtonText: '我知道了',
type: 'warning',
distinguishCancelAndClose: true,
customClass: 'detection-lock-busy-dialog'
}
)
.then(() => {
// 视频教学跳转 URL 暂未配置,先用 Toast 兜底
ElMessage.info('视频教学功能开发中,敬请期待')
})
.catch(() => {
// 用户点了"我知道了"或关闭,什么都不做
})
}
/**
* S2:未开始检测就调中间接口
*/
export const showLockNotStartedToast = () => {
ElMessage.warning('请先点击"开始检测"按钮启动本轮检测')
}
/**
* S3:自己暂停超 10 , WS STOP_TIMEOUT
*/
export const showPauseTimeoutDialog = () => {
ElMessageBox.alert('暂停超过 10 分钟未恢复,系统已自动结束本次检测。\n\n如需继续,请重新发起检测。', '本次检测已结束', {
confirmButtonText: '我知道了',
type: 'warning'
}).catch(() => {})
}
/**
* S4:被管理员强制释放
* - holder null
* - holder null
*/
export const showForceReleasedDialog = (holder: DetectionLockHolder | null) => {
if (holder) {
ElMessageBox.confirm(
`当前「${holder.holderUserName}」正在做检测,您无法继续检测,请稍后。`,
'检测已被中止',
{
confirmButtonText: '观看检测视频教学',
cancelButtonText: '我知道了',
type: 'warning',
distinguishCancelAndClose: true
}
)
.then(() => {
ElMessage.info('视频教学功能开发中,敬请期待')
})
.catch(() => {})
} else {
ElMessageBox.alert('您的检测已被管理员强制结束。\n如需继续,请重新发起检测。', '检测已被中止', {
confirmButtonText: '我知道了',
type: 'warning'
}).catch(() => {})
}
}