Files
xiaozhi-esp32-server/main/manager-web/src/views/VoiceCloneManagement.vue
T

660 lines
18 KiB
Vue

<template>
<div class="welcome">
<HeaderBar />
<div class="main-wrapper">
<div class="content-panel">
<div class="content-area">
<el-card class="params-card" shadow="never">
<div class="operation-header">
<h2 class="page-title">{{ $t('voiceClone.title') }}</h2>
<div class="right-operations">
<el-input :placeholder="$t('voiceClone.searchPlaceholder')" v-model="searchName" class="search-input"
@keyup.enter.native="handleSearch" clearable />
<CustomButton type="confirm" icon="el-icon-search" @click="handleSearch">{{ $t('voiceClone.search') }}</CustomButton>
</div>
</div>
<div v-loading="loading" class="voice-clone-grid">
<div v-for="item in voiceCloneList" :key="item.id" class="voice-clone-card">
<div class="card-top">
<img src="@/assets/setting/voiceclone.png" alt="" width="80px" height="80px">
<div class="card-info">
<div class="info-left">
<div class="info-title">
<el-input v-show="item.isEdit" v-model="item.name" size="mini" maxlength="64"
show-word-limit @keyup.enter.native="onNameEnter(item)"
ref="nameInput" />
<span v-show="!item.isEdit" class="name-text" :title="item.name">{{ item.name || '-' }}</span>
</div>
<div class="info-grid">
<div class="info-row">
<span class="info-label">{{ $t('voiceClone.voiceId') }}</span>
<span class="info-value" :title="item.voiceId">{{ item.voiceId || '-' }}</span>
</div>
<div class="info-row">
<span class="info-label">{{ $t('voiceClone.languages') }}</span>
<span class="info-value">{{ item.languages || '-' }}</span>
</div>
</div>
</div>
<div class="info-right" :class="{ 'info-right--centered': !item.hasVoice }">
<el-tooltip :content="getTooltipContent(item)" placement="top" effect="light">
<div class="status-button" :class="getStatusButtonClass(item)">
<span>{{ getTrainStatusText(item) }}</span>
</div>
</el-tooltip>
<div v-if="item.hasVoice" class="voice-wave" :class="{ 'is-playing': playingRowId === item.id }">
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
<span class="wave-bar"></span>
</div>
</div>
</div>
</div>
<div class="card-actions">
<el-button v-if="item.hasVoice" size="mini" type="text" icon="el-icon-video-play"
@click="handlePlay(item)">
{{ playingRowId === item.id ? $t('voiceClone.stop') : $t('voiceClone.play') }}
</el-button>
<el-button size="mini" type="text" icon="el-icon-upload2" @click="handleUpload(item)">
{{ $t('voiceClone.upload') }}
</el-button>
<el-button v-if="item.hasVoice" size="mini" type="text" icon="el-icon-copy-document"
@click="handleClone(item)" :loading="item._cloning">
{{ $t('voiceClone.clone') }}
</el-button>
<el-button size="mini" type="text"
:icon="item.isEdit ? 'el-icon-check' : 'el-icon-edit'"
@click="handleEditButtonClick(item)">
{{ item.isEdit ? $t('button.save') : $t('common.edit') }}
</el-button>
</div>
</div>
<div v-if="!loading && voiceCloneList.length === 0" class="empty-state">
{{ $t('voiceClone.noVoiceCloneAssigned') }}
</div>
</div>
<CustomPagination
:total="total"
:current-page="currentPage"
:page-size="pageSize"
:page-size-options="pageSizeOptions"
@size-change="handlePageSizeChange"
@page-change="goToPage"
/>
</el-card>
</div>
</div>
</div>
<el-footer>
<version-footer />
</el-footer>
<VoiceCloneDialog :visible.sync="cloneDialogVisible" :voiceCloneData="currentVoiceClone"
@success="handleCloneSuccess" />
</div>
</template>
<script>
import Api from "@/apis/api";
import HeaderBar from "@/components/HeaderBar.vue";
import VersionFooter from "@/components/VersionFooter.vue";
import VoiceCloneDialog from "@/components/VoiceCloneDialog.vue";
import CustomButton from "@/components/CustomButton.vue";
import CustomPagination from "@/components/CustomPagination.vue";
import { formatDate } from "@/utils/format";
export default {
components: { HeaderBar, VersionFooter, VoiceCloneDialog, CustomButton, CustomPagination },
data() {
return {
searchName: "",
loading: false,
voiceCloneList: [],
currentPage: 1,
pageSize: 10,
pageSizeOptions: [10, 20, 50, 100],
total: 0,
cloneDialogVisible: false,
currentVoiceClone: {},
voiceCloneForm: {
modelId: "",
voiceIds: [],
userId: null
},
currentAudio: null,
playingRowId: null
};
},
created() {
this.fetchVoiceCloneList();
},
methods: {
getTooltipContent(row) {
if (!row.hasVoice) {
return this.$t('voiceClone.waitingUpload');
}
switch (row.trainStatus) {
case 0:
return this.$t('voiceClone.waitingTraining');
case 2:
return this.$t('voiceClone.trainSuccess');
case 3:
if (row.trainError) {
return this.$t('voiceClone.trainFailedWithError', { error: row.trainError });
}
return this.$t('voiceClone.trainFailed');
default:
return '';
}
},
handleViewDetails(row) {
console.log('查看详情:', row);
},
handlePageSizeChange(val) {
this.pageSize = val;
this.currentPage = 1;
this.fetchVoiceCloneList();
},
goToPage(page) {
if (page !== this.currentPage) {
this.currentPage = page;
this.fetchVoiceCloneList();
}
},
fetchVoiceCloneList() {
this.loading = true;
const params = {
page: this.currentPage,
limit: this.pageSize,
name: this.searchName || "",
orderField: "create_date",
order: "desc"
};
Api.voiceClone.getVoiceCloneList(params, (res) => {
this.loading = false;
res = res.data;
if (res.code === 0) {
this.voiceCloneList = res.data.list;
this.total = res.data.total || 0;
} else {
this.voiceCloneList = [];
this.total = 0;
this.$message.error({
message: res?.data?.msg || this.$t('voiceClone.deleteFailed'),
showClose: true
});
}
});
},
handleSearch() {
this.currentPage = 1;
this.fetchVoiceCloneList();
},
formatDate,
getTrainStatusText(row) {
if (!row.hasVoice) {
return this.$t('voiceClone.waitingUpload');
}
switch (row.trainStatus) {
case 0:
return this.$t('voiceClone.waitingTraining');
case 2:
return this.$t('voiceClone.trainSuccess');
case 3:
return this.$t('voiceClone.trainFailed');
default:
return '';
}
},
getStatusButtonClass(row) {
if (!row.hasVoice || row.trainStatus === 0) {
return 'status-waiting';
} else if (row.trainStatus === 2) {
return 'status-success';
} else if (row.trainStatus === 3) {
return 'status-failed';
}
return '';
},
handleClone(row) {
if (row._cloning) {
return;
}
this.$set(row, '_cloning', true);
const params = { cloneId: row.id };
try {
Api.voiceClone.cloneAudio(params, (res) => {
try {
res = res.data;
if (res.code === 0) {
this.$message.success(this.$t('message.success'));
this.fetchVoiceCloneList();
} else {
this.$message.error(res.msg || this.$t('message.error'));
this.fetchVoiceCloneList();
}
} catch (error) {
console.error('处理响应时出错:', error);
this.$message.error('处理响应时出错');
this.fetchVoiceCloneList();
} finally {
this.$set(row, '_cloning', false);
}
}, (error) => {
console.error('API调用失败:', error);
this.$message.error(this.$t('voiceClone.cloneErrorTip'));
this.fetchVoiceCloneList();
this.$set(row, '_cloning', false);
});
} catch (error) {
console.error('调用API时出错:', error);
this.$message.error(this.$t('voiceClone.apiError'));
this.fetchVoiceCloneList();
this.$set(row, '_cloning', false);
}
},
handleCloneSuccess() {
this.fetchVoiceCloneList();
},
handleEditName(row) {
this.$set(row, 'isEdit', true);
this.$nextTick(() => {
const input = this.$refs.nameInput;
if (input) {
if (Array.isArray(input)) {
const idx = this.voiceCloneList.indexOf(row);
if (input[idx]) {
input[idx].focus();
}
} else {
input.focus();
}
}
});
},
submitName(row) {
if (row._submitting) {
return;
}
row._submitting = true;
const params = { id: row.id, name: row.name };
Api.voiceClone.updateName(params, (res) => {
res = res.data;
if (res.code === 0) {
this.$message.success(this.$t('voiceClone.updateNameSuccess') || '名称更新成功');
} else {
this.$message.error(res.msg || this.$t('voiceClone.updateNameFailed') || '名称更新失败');
this.fetchVoiceCloneList();
}
row._submitting = false;
});
},
handleEditButtonClick(row) {
if (row.isEdit) {
row.isEdit = false;
this.submitName(row);
} else {
this.handleEditName(row);
}
},
onNameEnter(row) {
row.isEdit = false;
this.submitName(row);
},
handlePlay(row) {
if (this.playingRowId === row.id && this.currentAudio) {
this.stopCurrentAudio();
return;
}
this.stopCurrentAudio();
Api.voiceClone.getAudioId(row.id, (res) => {
res = res.data;
if (res.code === 0) {
const uuid = res.data;
const audioUrl = Api.voiceClone.getPlayVoiceUrl(uuid);
const audio = new Audio(audioUrl);
this.currentAudio = audio;
this.playingRowId = row.id;
audio.addEventListener('ended', () => {
this.playingRowId = null;
this.currentAudio = null;
});
audio.addEventListener('error', () => {
this.playingRowId = null;
this.currentAudio = null;
});
audio.play().catch(err => {
console.error('播放失败:', err);
this.$message.error(this.$t('voiceClone.playFailed') || '播放失败');
this.playingRowId = null;
this.currentAudio = null;
});
} else {
this.$message.error(res.msg || this.$t('voiceClone.audioNotExist') || '音频不存在');
}
});
},
stopCurrentAudio() {
if (this.currentAudio) {
this.currentAudio.pause();
this.currentAudio.currentTime = 0;
this.currentAudio = null;
}
this.playingRowId = null;
},
handleUpload(row) {
this.currentVoiceClone = row;
this.cloneDialogVisible = true;
}
}
};
</script>
<style lang="scss" scoped>
.welcome {
min-width: 900px;
min-height: 506px;
height: 100vh;
display: flex;
position: relative;
flex-direction: column;
background-size: cover;
background: #eff4ff;
-webkit-background-size: cover;
-o-background-size: cover;
overflow: hidden;
}
.main-wrapper {
height: calc(100vh - 63px - 35px);
padding: 20px 22px 0;
position: relative;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.operation-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 0 16px 0;
}
.page-title {
font-weight: 500;
font-size: 24px;
margin: 0;
}
.right-operations {
display: flex;
gap: 10px;
margin-left: auto;
}
.search-input {
width: 240px;
}
.content-panel {
display: flex;
overflow: hidden;
height: 100%;
border-radius: 15px;
background: transparent;
border: 1px solid #fff;
}
.content-area {
flex: 1;
height: 100%;
min-width: 600px;
overflow: auto;
background-color: white;
display: flex;
flex-direction: column;
}
.params-card {
background: white;
flex: 1;
display: flex;
flex-direction: column;
border: none;
box-shadow: none;
overflow: hidden;
::v-deep .el-card__body {
padding: 14px 20px;
display: flex;
flex-direction: column;
flex: 1;
overflow: hidden;
}
}
.status-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 4px 10px;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
}
.status-waiting {
background-color: #f5f7fa;
color: #909399;
border: 1px solid #e4e7ed;
}
.status-success {
background-color: #f6ffed;
color: #52c41a;
border: 1px solid #b7eb8f;
}
.status-failed {
background-color: #fff2f0;
color: #ff4d4f;
border: 1px solid #ffccc7;
}
.voice-clone-grid {
padding: 10px 16px;
margin-bottom: 20px;
height: calc(100% - 90px);
display: grid;
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
gap: 16px;
align-content: start;
min-height: 200px;
overflow: auto;
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: #a1c9fd;
border-radius: 3px;
}
&::-webkit-scrollbar-track {
background: #f0f3fe;
border-radius: 3px;
}
}
.voice-clone-card {
display: flex;
flex-direction: column;
gap: 14px;
padding: 16px 16px 8px;
background: #fff;
box-shadow: 0 0 10px 0 #e8ecf5;
border-radius: 8px;
transition: box-shadow 0.2s, border-color 0.2s;
&:hover {
border-color: #c0caff;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
}
.card-top {
display: flex;
gap: 12px;
}
.voice-wave {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
flex: 1;
min-height: 40px;
width: 100%;
padding: 0 4px;
.wave-bar {
width: 3px;
height: 50%;
max-height: 80px;
background: linear-gradient(to top, #a5b4fc 0%, #c4b5fd 100%);
border-radius: 2px;
transform-origin: center;
animation: voice-wave 1.2s ease-in-out infinite paused;
&:nth-child(1) { animation-delay: -0s; }
&:nth-child(2) { animation-delay: -0.12s; }
&:nth-child(3) { animation-delay: -0.24s; }
&:nth-child(4) { animation-delay: -0.36s; }
&:nth-child(5) { animation-delay: -0.48s; }
&:nth-child(6) { animation-delay: -0.6s; }
&:nth-child(7) { animation-delay: -0.72s; }
&:nth-child(8) { animation-delay: -0.84s; }
&:nth-child(9) { animation-delay: -0.96s; }
&:nth-child(10) { animation-delay: -1.08s; }
&:nth-child(11) { animation-delay: -1.2s; }
}
&.is-playing .wave-bar {
animation-play-state: running;
}
}
@keyframes voice-wave {
0%, 100% { transform: scaleY(0.2); }
50% { transform: scaleY(0.95); }
}
.card-info {
flex: 1;
min-width: 0;
display: flex;
gap: 12px;
}
.info-left {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.info-right {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px;
flex-shrink: 0;
min-width: 100px;
}
.info-title {
min-width: 0;
font-size: 16px;
font-weight: 500;
color: #303133;
.name-text {
line-height: 28px;
text-align: left;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.info-grid {
display: flex;
flex-direction: column;
gap: 4px;
}
.info-row {
display: flex;
align-items: center;
font-size: 13px;
line-height: 1.5;
}
.info-label {
margin-right: 10px;
color: #909399;
flex-shrink: 0;
}
.info-value {
color: #303133;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.card-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 4px 8px;
padding-top: 10px;
border-top: 1px solid #f0f2f5;
::v-deep .el-button {
display: flex;
align-items: center;
}
::v-deep .el-button--text {
color: #7079aa;
}
::v-deep .el-button--text:hover {
color: #5a64b5;
}
}
.empty-state {
grid-column: 1 / -1;
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
color: #909399;
font-size: 14px;
}
</style>