在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用popup-dialog
星标2
分支0
更新时间2026年5月21日 01:22
popup dialog for creating or modifying items
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
popup dialog for creating or modifying items
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | popup-dialog |
| description | popup dialog for creating or modifying items |
This skill provides a reusable popup dialog component that can be used for creating or modifying items.
IPopupDialogParams object to specify the dialog's title, fields, and other options.showDialog with the IPopupDialogParams object to display the dialog and get the result.import type { ILowCodeField, IPopupDialogParams } from 'src/components/lowCode/types'
import { LowCodeFieldType } from 'src/components/lowCode/types'
import { showDialog } from 'src/components/lowCode/PopupDialog'
import { confirmOperation, notifySuccess } from 'src/utils/dialog'
function buildCategoryFields(category?: ICategoryInfo) {
const fields: ILowCodeField[] = [
{
name: 'name',
label: t('categoryList.field_name'),
value: category ? category.name : '',
type: LowCodeFieldType.text,
required: true,
validate: (value: string) => {
// 必须仅包含字母、数字、下划线且不能以数字开头
const valid = /^[A-Za-z_][A-Za-z0-9_]*$/.test(value)
if (!valid) {
return {
ok: false,
message: t('categoryList.onlyLettersNumbersUnderscoresAndCannotStartWithNumber')
}
}
return { ok: true }
}
},
{
name: 'description',
label: t('categoryList.field_description'),
value: category ? category.description || '' : '',
type: LowCodeFieldType.textarea
}
]
return fields
}
// 新增分类
async function onCreateCategory() {
const popupParams: IPopupDialogParams = {
title: t('categoryList.newCategory'),
fields: buildCategoryFields(),
oneColumn: true
}
const result = await showDialog<ICategoryInfo>(popupParams)
if (!result.ok) return
// 添加默认的 icon
const newCategory = await props.createCategory(result.data)
categoryItems.value.push({
...newCategory,
active: false
})
// 设置新组为当前组
activeCategory(categoryItems.value[categoryItems.value.length - 1] as ICategoryInfo)
// 新增组
notifySuccess(t('categoryList.newCategorySuccess'))
}
async function onModifyCategory(categoryDetails: Record<string, any>) {
const categoryInfo = categoryDetails as ICategoryInfo
const popupParams: IPopupDialogParams = {
title: t('categoryList.modifyCategory'),
fields: buildCategoryFields(categoryInfo),
oneColumn: true
}
const result = await showDialog<ICategoryInfo>(popupParams)
if (!result.ok) return
// 指定 id 和 oid
result.data.id = categoryInfo.id
result.data.oid = categoryInfo.oid
await props.updateCategory(result.data)
// 更新数据
categoryInfo.name = result.data.name
categoryInfo.description = result.data.description
// 修改分类成功
notifySuccess(t('categoryList.modifyCategorySuccess'))
}