refactor(ScriptTable): 添加脚本和脚本用户的拖拽功能

This commit is contained in:
2025-09-19 01:06:17 +08:00
parent ed6b52451b
commit 01ee70f3fb
3 changed files with 452 additions and 410 deletions

View File

@@ -35,13 +35,29 @@
}
],
"extraResources": [
{ "from": "src/assets", "to": "assets", "filter": ["**/*"] }
{
"from": "src/assets",
"to": "assets",
"filter": [
"**/*"
]
}
],
"win": {
"requestedExecutionLevel": "requireAdministrator",
"target": [
{ "target": "nsis", "arch": ["x64"] },
{ "target": "zip", "arch": ["x64"] }
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"icon": "public/AUTO-MAS.ico",
"artifactName": "AUTO-MAS-Setup-${version}-${arch}.${ext}"
@@ -67,7 +83,8 @@
"form-data": "^4.0.4",
"markdown-it": "^14.1.0",
"vue": "^3.5.17",
"vue-router": "4"
"vue-router": "4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@types/node": "22.17.1",

View File

@@ -1,288 +1,302 @@
<template>
<div class="scripts-grid">
<a-row :gutter="[24, 24]">
<a-col
v-for="script in props.scripts"
:key="script.id"
:xs="24"
:sm="24"
:md="24"
:lg="24"
:xl="24"
:xxl="24"
>
<a-card :hoverable="true" class="script-card" :body-style="{ padding: '0' }">
<!-- 脚本头部信息 -->
<div class="script-header">
<div class="script-info">
<div class="script-logo-container">
<img
v-if="script.type === 'MAA'"
src="@/assets/MAA.png"
alt="MAA"
class="script-logo"
/>
<img v-else src="@/assets/AUTO-MAS.ico" alt="AUTO-MAS" class="script-logo" />
<!-- 使用vuedraggable包装脚本列表 -->
<draggable
v-model="localScripts"
item-key="id"
:animation="200"
ghost-class="script-ghost"
chosen-class="script-chosen"
drag-class="script-drag"
@end="onScriptDragEnd"
class="draggable-scripts"
>
<template #item="{ element: script }">
<div class="script-wrapper" :key="script.id">
<a-card :hoverable="true" class="script-card" :body-style="{ padding: '0' }">
<!-- 脚本头部信息 -->
<div class="script-header">
<div class="script-info">
<div class="script-logo-container">
<img
v-if="script.type === 'MAA'"
src="@/assets/MAA.png"
alt="MAA"
class="script-logo"
/>
<img v-else src="@/assets/AUTO-MAS.ico" alt="AUTO-MAS" class="script-logo" />
</div>
<div class="script-details">
<h3 class="script-name">{{ script.name }}</h3>
<a-tag :color="script.type === 'MAA' ? 'blue' : 'green'" class="script-type">
{{ script.type }}
</a-tag>
</div>
</div>
<div class="script-details">
<h3 class="script-name">{{ script.name }}</h3>
<a-tag :color="script.type === 'MAA' ? 'blue' : 'green'" class="script-type">
{{ script.type }}
</a-tag>
</div>
</div>
<div class="header-actions">
<a-button
v-if="script.type === 'MAA' && !props.activeConnections.has(script.id)"
type="primary"
ghost
size="middle"
@click="handleStartMAAConfig(script)"
>
<template #icon>
<SettingOutlined />
</template>
配置MAA
</a-button>
<a-button
v-if="script.type === 'MAA' && props.activeConnections.has(script.id)"
type="primary"
size="middle"
style="background: #52c41a; border-color: #52c41a;"
@click="handleSaveMAAConfig(script)"
>
<template #icon>
<SaveOutlined />
</template>
保存配置
</a-button>
<a-button type="default" size="middle" @click="handleEdit(script)">
<template #icon>
<EditOutlined />
</template>
编辑脚本
</a-button>
<a-button
type="default"
size="middle"
class="action-button add-button"
@click="handleAddUser(script)"
>
<template #icon>
<UserAddOutlined />
</template>
添加用户
</a-button>
<a-popconfirm
title="确定要删除这个脚本吗?"
description="删除后将无法恢复,请谨慎操作"
@confirm="handleDelete(script)"
ok-text="确定"
cancel-text="取消"
>
<a-button danger size="middle" class="action-button delete-button">
<div class="header-actions">
<a-button
v-if="script.type === 'MAA' && !props.activeConnections.has(script.id)"
type="primary"
ghost
size="middle"
@click="handleStartMAAConfig(script)"
>
<template #icon>
<DeleteOutlined />
<SettingOutlined />
</template>
删除脚本
配置MAA
</a-button>
</a-popconfirm>
</div>
</div>
<!-- 用户列表 -->
<div class="users-section" v-if="script.users && script.users.length > 0">
<div class="users-list">
<div v-for="user in script.users" :key="user.id" class="user-item">
<div class="user-info">
<div class="user-details-row">
<div class="user-name-section">
<span class="user-name">{{ user.Info.Name }}</span>
<!-- 只有MAA脚本才显示服务器标签 -->
<a-tag
v-if="script.type === 'MAA'"
:color="user.Info.Server === 'Official' ? 'blue' : 'purple'"
class="server-tag"
>
{{ user.Info.Server === 'Official' ? '官服' : 'B服' }}
</a-tag>
</div>
<!-- 用户详细信息 - MAA脚本用户 -->
<div v-if="script.type === 'MAA'" class="user-info-tags">
<!-- 剿灭模式 -->
<a-tag
v-if="
user.Info.Annihilation &&
user.Info.Annihilation !== '-' &&
user.Info.Annihilation !== ''
"
class="info-tag"
color="cyan"
>
剿灭:{{
ANNIHILATION_MAP[user.Info.Annihilation] ?? user.Info.Annihilation
}}
</a-tag>
<!-- 森空岛签到 -->
<a-tag
v-if="user.Info.IfSkland !== undefined && user.Info.IfSkland !== null"
class="info-tag"
:color="user.Info.IfSkland ? 'green' : 'blue'"
>
森空岛: {{ user.Info.IfSkland ? '开启' : '关闭' }}
</a-tag>
<!-- 剩余天数 -->
<a-tag
v-if="user.Info.RemainedDay !== undefined && user.Info.RemainedDay !== null"
class="info-tag"
:color="getRemainingDayColor(user.Info.RemainedDay)"
>
{{ getRemainingDayText(user.Info.RemainedDay) }}
</a-tag>
<!-- 基建模式 -->
<a-tag
v-if="
user.Info.InfrastMode &&
user.Info.InfrastMode !== '-' &&
user.Info.InfrastMode !== ''
"
class="info-tag"
color="purple"
>
基建: {{ user.Info.InfrastMode === 'Normal' ? '普通' : '自定义' }}
</a-tag>
<!-- 关卡信息 - Stage固定展示 -->
<a-tag v-if="user.Info.Stage" class="info-tag" color="blue">
关卡: {{ user.Info.Stage === '-' ? '未选择' : user.Info.Stage }}
</a-tag>
<!-- 额外关卡 - 只有不为-或空时才显示 -->
<a-tag
v-if="
user.Info.Stage_1 && user.Info.Stage_1 !== '-' && user.Info.Stage_1 !== ''
"
class="info-tag"
color="geekblue"
>
关卡1: {{ user.Info.Stage_1 }}
</a-tag>
<a-tag
v-if="
user.Info.Stage_2 && user.Info.Stage_2 !== '-' && user.Info.Stage_2 !== ''
"
class="info-tag"
color="geekblue"
>
关卡2: {{ user.Info.Stage_2 }}
</a-tag>
<a-tag
v-if="
user.Info.Stage_3 && user.Info.Stage_3 !== '-' && user.Info.Stage_3 !== ''
"
class="info-tag"
color="geekblue"
>
关卡3: {{ user.Info.Stage_3 }}
</a-tag>
<a-tag
v-if="
user.Info.Stage_Remain &&
user.Info.Stage_Remain !== '-' &&
user.Info.Stage_Remain !== ''
"
class="info-tag"
color="geekblue"
>
剩余关卡: {{ user.Info.Stage_Remain }}
</a-tag>
<a-tag class="info-tag" color="magenta">
备注: {{ truncateText(user.Info.Notes) }}
</a-tag>
</div>
<!-- 用户详细信息 - 通用脚本用户 -->
<div v-if="script.type === 'General'" class="user-info-tags">
<!-- 剩余天数 -->
<a-tag
v-if="user.Info.RemainedDay !== undefined && user.Info.RemainedDay !== null"
class="info-tag"
:color="getRemainingDayColor(user.Info.RemainedDay)"
>
{{ getRemainingDayText(user.Info.RemainedDay) }}
</a-tag>
<a-tag class="info-tag" color="magenta">
备注: {{ truncateText(user.Info.Notes) }}
</a-tag>
</div>
</div>
</div>
<div class="user-controls">
<div class="user-status">
<a-switch
:checked="user.Info.Status"
:checked-children="'启用'"
:un-checked-children="'禁用'"
@click="handleToggleUserStatus(user)"
class="status-switch"
/>
</div>
<div class="user-actions">
<a-tooltip title="编辑用户配置">
<a-button
type="default"
size="middle"
class="user-action-btn"
@click="handleEditUser(user)"
>
<template #icon>
<EditOutlined />
</template>
编辑
</a-button>
</a-tooltip>
<a-popconfirm
title="确定要删除这个用户吗?"
description="删除后将无法恢复"
@confirm="handleDeleteUser(user)"
ok-text="确定"
cancel-text="取消"
>
<a-tooltip title="删除用户">
<a-button type="default" size="middle" danger class="user-action-btn">
<template #icon>
<DeleteOutlined />
</template>
删除
</a-button>
</a-tooltip>
</a-popconfirm>
</div>
</div>
<a-button
v-if="script.type === 'MAA' && props.activeConnections.has(script.id)"
type="primary"
size="middle"
style="background: #52c41a; border-color: #52c41a;"
@click="handleSaveMAAConfig(script)"
>
<template #icon>
<SaveOutlined />
</template>
保存配置
</a-button>
<a-button type="default" size="middle" @click="handleEdit(script)">
<template #icon>
<EditOutlined />
</template>
编辑脚本
</a-button>
<a-button
type="default"
size="middle"
class="action-button add-button"
@click="handleAddUser(script)"
>
<template #icon>
<UserAddOutlined />
</template>
添加用户
</a-button>
<a-popconfirm
title="确定要删除这个脚本吗?"
description="删除后将无法恢复,请谨慎操作"
@confirm="handleDelete(script)"
ok-text="确定"
cancel-text="取消"
>
<a-button danger size="middle" class="action-button delete-button">
<template #icon>
<DeleteOutlined />
</template>
删除脚本
</a-button>
</a-popconfirm>
</div>
</div>
</div>
<!-- 空状态 -->
<div v-else class="empty-users">
<div class="empty-content">
<img src="@/assets/NoData.png" alt="无数据" class="empty-image" />
<!-- 用户列表 -->
<div class="users-section" v-if="script.users && script.users.length > 0">
<!-- 使用vuedraggable包装用户列表 -->
<draggable
v-model="script.users"
item-key="id"
:animation="200"
ghost-class="user-ghost"
chosen-class="user-chosen"
drag-class="user-drag"
@end="(evt) => onUserDragEnd(evt, script)"
class="users-list"
>
<template #item="{ element: user }">
<div class="user-item" :key="user.id">
<div class="user-info">
<div class="user-details-row">
<div class="user-name-section">
<span class="user-name">{{ user.Info.Name }}</span>
<!-- 只有MAA脚本才显示服务器标签 -->
<a-tag
v-if="script.type === 'MAA'"
:color="user.Info.Server === 'Official' ? 'blue' : 'purple'"
class="server-tag"
>
{{ user.Info.Server === 'Official' ? '官服' : 'B服' }}
</a-tag>
</div>
<!-- 用户详细信息 - MAA脚本用户 -->
<div v-if="script.type === 'MAA'" class="user-info-tags">
<!-- 剿灭模式 -->
<a-tag
v-if="
user.Info.Annihilation &&
user.Info.Annihilation !== '-' &&
user.Info.Annihilation !== ''
"
class="info-tag"
color="cyan"
>
剿灭:{{
ANNIHILATION_MAP[user.Info.Annihilation] ?? user.Info.Annihilation
}}
</a-tag>
<!-- 森空岛签到 -->
<a-tag
v-if="user.Info.IfSkland !== undefined && user.Info.IfSkland !== null"
class="info-tag"
:color="user.Info.IfSkland ? 'green' : 'blue'"
>
森空岛: {{ user.Info.IfSkland ? '开启' : '关闭' }}
</a-tag>
<!-- 剩余天数 -->
<a-tag
v-if="user.Info.RemainedDay !== undefined && user.Info.RemainedDay !== null"
class="info-tag"
:color="getRemainingDayColor(user.Info.RemainedDay)"
>
{{ getRemainingDayText(user.Info.RemainedDay) }}
</a-tag>
<!-- 基建模式 -->
<a-tag
v-if="
user.Info.InfrastMode &&
user.Info.InfrastMode !== '-' &&
user.Info.InfrastMode !== ''
"
class="info-tag"
color="purple"
>
基建: {{ user.Info.InfrastMode === 'Normal' ? '普通' : '自定义' }}
</a-tag>
<!-- 关卡信息 - Stage固定展示 -->
<a-tag v-if="user.Info.Stage" class="info-tag" color="blue">
关卡: {{ user.Info.Stage === '-' ? '未选择' : user.Info.Stage }}
</a-tag>
<!-- 额外关卡 - 只有不为-或空时才显示 -->
<a-tag
v-if="
user.Info.Stage_1 && user.Info.Stage_1 !== '-' && user.Info.Stage_1 !== ''
"
class="info-tag"
color="geekblue"
>
关卡1: {{ user.Info.Stage_1 }}
</a-tag>
<a-tag
v-if="
user.Info.Stage_2 && user.Info.Stage_2 !== '-' && user.Info.Stage_2 !== ''
"
class="info-tag"
color="geekblue"
>
关卡2: {{ user.Info.Stage_2 }}
</a-tag>
<a-tag
v-if="
user.Info.Stage_3 && user.Info.Stage_3 !== '-' && user.Info.Stage_3 !== ''
"
class="info-tag"
color="geekblue"
>
关卡3: {{ user.Info.Stage_3 }}
</a-tag>
<a-tag
v-if="
user.Info.Stage_Remain &&
user.Info.Stage_Remain !== '-' &&
user.Info.Stage_Remain !== ''
"
class="info-tag"
color="geekblue"
>
剩余关卡: {{ user.Info.Stage_Remain }}
</a-tag>
<a-tag class="info-tag" color="magenta">
备注: {{ truncateText(user.Info.Notes) }}
</a-tag>
</div>
<!-- 用户详细信息 - 通用脚本用户 -->
<div v-if="script.type === 'General'" class="user-info-tags">
<!-- 剩余天数 -->
<a-tag
v-if="user.Info.RemainedDay !== undefined && user.Info.RemainedDay !== null"
class="info-tag"
:color="getRemainingDayColor(user.Info.RemainedDay)"
>
{{ getRemainingDayText(user.Info.RemainedDay) }}
</a-tag>
<a-tag class="info-tag" color="magenta">
备注: {{ truncateText(user.Info.Notes) }}
</a-tag>
</div>
</div>
</div>
<div class="user-controls">
<div class="user-status">
<a-switch
:checked="user.Info.Status"
:checked-children="'启用'"
:un-checked-children="'禁用'"
@click="handleToggleUserStatus(user)"
class="status-switch"
/>
</div>
<div class="user-actions">
<a-tooltip title="编辑用户配置">
<a-button
type="default"
size="middle"
class="user-action-btn"
@click="handleEditUser(user)"
>
<template #icon>
<EditOutlined />
</template>
编辑
</a-button>
</a-tooltip>
<a-popconfirm
title="确定要删除这个用户吗?"
description="删除后将无法恢复"
@confirm="handleDeleteUser(user)"
ok-text="确定"
cancel-text="取消"
>
<a-tooltip title="删除用户">
<a-button type="default" size="middle" danger class="user-action-btn">
<template #icon>
<DeleteOutlined />
</template>
删除
</a-button>
</a-tooltip>
</a-popconfirm>
</div>
</div>
</div>
</template>
</draggable>
</div>
</div>
</a-card>
</a-col>
</a-row>
<!-- 空状态 -->
<div v-else class="empty-users">
<div class="empty-content">
<img src="@/assets/NoData.png" alt="无数据" class="empty-image" />
</div>
</div>
</a-card>
</div>
</template>
</draggable>
</div>
</template>
@@ -295,6 +309,10 @@ import {
SettingOutlined,
UserAddOutlined,
} from '@ant-design/icons-vue'
import draggable from 'vuedraggable'
import { ref, watch } from 'vue'
import { Service } from '@/api'
import { message } from 'ant-design-vue'
interface Props {
scripts: Script[]
@@ -303,20 +321,14 @@ interface Props {
interface Emits {
(e: 'edit', script: Script): void
(e: 'delete', script: Script): void
(e: 'addUser', script: Script): void
(e: 'editUser', user: User): void
(e: 'deleteUser', user: User): void
(e: 'startMaaConfig', script: Script): void
(e: 'saveMaaConfig', script: Script): void
(e: 'toggleUserStatus', user: User): void
(e: 'scriptsReordered', scripts: Script[]): void
}
const ANNIHILATION_MAP: Record<string, string> = {
@@ -330,6 +342,18 @@ const ANNIHILATION_MAP: Record<string, string> = {
const props = defineProps<Props>()
const emit = defineEmits<Emits>()
// 本地脚本列表状态
const localScripts = ref<Script[]>([])
// 监听props变化更新本地状态
watch(
() => props.scripts,
(newScripts) => {
localScripts.value = [...newScripts]
},
{ immediate: true, deep: true }
)
const handleEdit = (script: Script) => {
emit('edit', script)
}
@@ -361,6 +385,7 @@ const handleSaveMAAConfig = (script: Script) => {
const handleToggleUserStatus = (user: User) => {
emit('toggleUserStatus', user)
}
const truncateText = (text: string, maxLength: number = 10): string => {
if (!text || text.length === 0) return '无'
return text.length > maxLength ? text.substring(0, maxLength) + '...' : text
@@ -382,6 +407,49 @@ const getRemainingDayText = (remainedDay: number): string => {
if (remainedDay === 0) return '剩余天数: 已到期'
return `剩余天数: ${remainedDay}`
}
// 处理脚本拖拽结束
const onScriptDragEnd = async () => {
try {
const scriptIds = localScripts.value.map((script) => script.id)
await Service.reorderScriptApiScriptsOrderPost({
indexList: scriptIds,
})
// 通知父组件脚本顺序已更改
emit('scriptsReordered', localScripts.value)
message.success('脚本排序已保存')
} catch (error) {
console.error('保存脚本排序失败:', error)
message.error('保存脚本排序失败')
// 恢复原始顺序
localScripts.value = [...props.scripts]
}
}
// 处理用户拖拽结束
const onUserDragEnd = async (evt: any, script: Script) => {
try {
const userIds = script.users?.map((user) => user.id) || []
await Service.reorderUserApiScriptsUserOrderPost({
scriptId: script.id,
indexList: userIds,
})
message.success('用户排序已保存')
} catch (error) {
console.error('保存用户排序失败:', error)
message.error('保存用户排序失败')
// 恢复原始顺序 - 找到原始脚本并恢复用户顺序
const originalScript = props.scripts.find((s) => s.id === script.id)
if (originalScript && originalScript.users) {
script.users = [...originalScript.users]
}
}
}
</script>
<style scoped>
@@ -389,6 +457,67 @@ const getRemainingDayText = (remainedDay: number): string => {
width: 100%;
}
/* 拖拽样式 */
.draggable-scripts {
width: 100%;
display: flex;
flex-direction: column;
gap: 16px;
}
.script-wrapper {
width: 100%;
}
.script-ghost {
opacity: 0.5;
transform: rotate(2deg);
}
.script-chosen {
cursor: grabbing !important;
}
.script-drag {
transform: rotate(2deg);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
z-index: 1000;
}
.users-list {
width: 100%;
}
.user-ghost {
opacity: 0.5;
background: var(--ant-color-primary-bg) !important;
border: 2px dashed var(--ant-color-primary) !important;
}
.user-chosen {
cursor: grabbing !important;
background: var(--ant-color-primary-bg) !important;
}
.user-drag {
transform: rotate(1deg);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
z-index: 999;
background: var(--ant-color-bg-container) !important;
}
/* 拖拽时禁用某些交互 */
.script-ghost .script-card:hover,
.script-drag .script-card:hover {
transform: none !important;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2) !important;
}
.user-ghost:hover,
.user-drag:hover {
background: var(--ant-color-primary-bg) !important;
}
/* 脚本卡片 */
.script-card {
border-radius: 16px;
@@ -483,32 +612,6 @@ const getRemainingDayText = (remainedDay: number): string => {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.config-button {
background: linear-gradient(135deg, var(--ant-color-primary), var(--ant-color-primary-hover));
border-color: var(--ant-color-primary);
}
.config-button:hover {
background: linear-gradient(
135deg,
var(--ant-color-primary-hover),
var(--ant-color-primary-active)
);
border-color: var(--ant-color-primary-hover);
}
.edit-button {
background: linear-gradient(135deg, var(--ant-color-primary), var(--ant-color-primary-hover));
}
.edit-button:hover {
background: linear-gradient(
135deg,
var(--ant-color-primary-hover),
var(--ant-color-primary-active)
);
}
.add-button {
border-color: var(--ant-color-primary);
color: var(--ant-color-primary);
@@ -524,36 +627,6 @@ const getRemainingDayText = (remainedDay: number): string => {
background: linear-gradient(135deg, var(--ant-color-error), var(--ant-color-error-hover));
}
.more-actions {
color: var(--ant-color-text-secondary);
border: none;
box-shadow: none;
}
.more-actions:hover {
color: var(--ant-color-primary);
background: var(--ant-color-primary-bg);
}
/* 脚本操作按钮 */
.script-actions {
display: flex;
gap: 8px;
padding: 16px 20px;
border-bottom: 1px solid var(--ant-color-border-secondary);
background: var(--ant-color-bg-layout);
}
.script-actions .ant-btn {
border-radius: 6px;
font-weight: 500;
transition: all 0.3s ease;
}
.script-actions .ant-btn:hover {
transform: translateY(-1px);
}
/* 用户区域 */
.users-section {
flex: 1;
@@ -561,9 +634,6 @@ const getRemainingDayText = (remainedDay: number): string => {
flex-direction: column;
}
/* 用户列表 */
.user-item {
display: flex;
align-items: center;
@@ -571,7 +641,7 @@ const getRemainingDayText = (remainedDay: number): string => {
padding: 16px 20px;
border-bottom: 1px solid var(--ant-color-border-secondary);
transition: all 0.2s ease;
min-height: 80px; /* 确保每个用户项有足够高度 */
min-height: 80px;
}
.user-item:last-child {
@@ -692,32 +762,6 @@ const getRemainingDayText = (remainedDay: number): string => {
padding: 40px 20px;
}
.compact-empty :deep(.ant-empty-description) {
margin-bottom: 12px;
font-size: 13px;
color: var(--ant-color-text-tertiary);
}
.empty-icon {
font-size: 32px;
color: var(--ant-color-text-quaternary);
margin-bottom: 8px;
}
/* 折叠动画 */
.ant-collapse-transition {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 滚动条样式已移除,因为不再需要滚动 */
/* 深色模式适配 */
@media (prefers-color-scheme: dark) {
.script-card:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
}
/* 响应式设计 */
@media (max-width: 768px) {
.script-header {

View File

@@ -2478,22 +2478,6 @@ __metadata:
languageName: node
linkType: hard
"electron-updater@npm:6.6.2":
version: 6.6.2
resolution: "electron-updater@npm:6.6.2"
dependencies:
builder-util-runtime: "npm:9.3.1"
fs-extra: "npm:^10.1.0"
js-yaml: "npm:^4.1.0"
lazy-val: "npm:^1.0.5"
lodash.escaperegexp: "npm:^4.1.2"
lodash.isequal: "npm:^4.5.0"
semver: "npm:^7.6.3"
tiny-typed-emitter: "npm:^2.1.0"
checksum: 10c0/2b9ae5583b95f6772c4a2515ddba7ba52b65460ab81f09ae4f0b97c7e3d7b7e3d9426775eb9a53d3193bd4c3d5466bf30827c1a6ee75e4aca739c647f6ac46ff
languageName: node
linkType: hard
"electron@npm:^37.2.5":
version: 37.4.0
resolution: "electron@npm:37.4.0"
@@ -3091,7 +3075,6 @@ __metadata:
electron: "npm:^37.2.5"
electron-builder: "npm:^26.0.12"
electron-log: "npm:^5.4.3"
electron-updater: "npm:6.6.2"
eslint: "npm:^9.32.0"
eslint-config-prettier: "npm:^10.1.8"
eslint-plugin-prettier: "npm:^5.5.3"
@@ -3107,6 +3090,7 @@ __metadata:
vue-eslint-parser: "npm:^10.2.0"
vue-router: "npm:4"
vue-tsc: "npm:^2.2.12"
vuedraggable: "npm:^4.1.0"
wait-on: "npm:^8.0.4"
languageName: unknown
linkType: soft
@@ -3889,20 +3873,6 @@ __metadata:
languageName: node
linkType: hard
"lodash.escaperegexp@npm:^4.1.2":
version: 4.1.2
resolution: "lodash.escaperegexp@npm:4.1.2"
checksum: 10c0/484ad4067fa9119bb0f7c19a36ab143d0173a081314993fe977bd00cf2a3c6a487ce417a10f6bac598d968364f992153315f0dbe25c9e38e3eb7581dd333e087
languageName: node
linkType: hard
"lodash.isequal@npm:^4.5.0":
version: 4.5.0
resolution: "lodash.isequal@npm:4.5.0"
checksum: 10c0/dfdb2356db19631a4b445d5f37868a095e2402292d59539a987f134a8778c62a2810c2452d11ae9e6dcac71fc9de40a6fedcb20e2952a15b431ad8b29e50e28f
languageName: node
linkType: hard
"lodash.merge@npm:^4.6.2":
version: 4.6.2
resolution: "lodash.merge@npm:4.6.2"
@@ -5196,6 +5166,13 @@ __metadata:
languageName: node
linkType: hard
"sortablejs@npm:1.14.0":
version: 1.14.0
resolution: "sortablejs@npm:1.14.0"
checksum: 10c0/b792790286d54af5ebb083300d0cb3f96f5cf840e85f4953aa2074a69c1671a3d6a73f8d5fcc948b27c0573575ff98ec32346f7dcfe6230d517d7a81ea7ad314
languageName: node
linkType: hard
"source-map-js@npm:^1.2.1":
version: 1.2.1
resolution: "source-map-js@npm:1.2.1"
@@ -5405,13 +5382,6 @@ __metadata:
languageName: node
linkType: hard
"tiny-typed-emitter@npm:^2.1.0":
version: 2.1.0
resolution: "tiny-typed-emitter@npm:2.1.0"
checksum: 10c0/522bed4c579ee7ee16548540cb693a3d098b137496110f5a74bff970b54187e6b7343a359b703e33f77c5b4b90ec6cebc0d0ec3dbdf1bd418723c5c3ce36d8a2
languageName: node
linkType: hard
"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14":
version: 0.2.14
resolution: "tinyglobby@npm:0.2.14"
@@ -5770,6 +5740,17 @@ __metadata:
languageName: node
linkType: hard
"vuedraggable@npm:^4.1.0":
version: 4.1.0
resolution: "vuedraggable@npm:4.1.0"
dependencies:
sortablejs: "npm:1.14.0"
peerDependencies:
vue: ^3.0.1
checksum: 10c0/e5121ca53081e63f6a3e1dc4c3c02ae86fd6b896ccf37d9a0f88abb993fd9da3a1b54635541854a2a85b65e30dae00e545a2c208708e7df73424bd64c2e59cbc
languageName: node
linkType: hard
"wait-on@npm:^8.0.4":
version: 8.0.4
resolution: "wait-on@npm:8.0.4"