ReportStudio.vue
5.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<script setup lang="ts">
import { computed } from 'vue'
import ReportPreview from '@/components/report/ReportPreview.vue'
import ReportTaskBoard from '@/components/report/ReportTaskBoard.vue'
import type { ReportStatusPayload, ReportTask } from '@/types'
import { statusTone } from '@/utils/format'
const props = defineProps<{
status: ReportStatusPayload
selectedTask: ReportTask | null
selectedTaskId: string
customTemplate: string
previewUrl: string
loading: boolean
generating: boolean
}>()
const emit = defineEmits<{
'update:selectedTaskId': [value: string]
'update:customTemplate': [value: string]
refresh: []
generate: []
download: [kind: 'html' | 'md' | 'pdf', taskId: string]
}>()
const templateModel = computed({
get: () => props.customTemplate,
set: (value: string) => emit('update:customTemplate', value),
})
const canDownload = computed(() => props.selectedTask?.status === 'completed')
</script>
<template>
<section class="report-studio">
<div class="report-layout">
<ReportTaskBoard
:tasks="status.tasks"
:selected-task-id="selectedTaskId"
@update:selected-task-id="$emit('update:selectedTaskId', $event)"
@download="(kind, taskId) => $emit('download', kind, taskId)"
/>
<div class="report-main">
<div class="editor-shelf archive-panel">
<div class="editor-shelf__head">
<div>
<p class="archive-kicker">Template Selection</p>
<h3 class="archive-card-title">交付编排与编辑焦点</h3>
<p class="archive-copy">
可在这里补充模板片段或额外交付要求;未填写时,系统继续使用默认场馆运营反馈模板。
</p>
</div>
<div class="editor-shelf__actions">
<span class="archive-chip" :data-tone="status.engines_ready ? 'success' : 'running'">
<span class="archive-chip__dot" />
{{ status.engines_ready ? 'Inputs Ready' : 'Awaiting Engine Output' }}
</span>
<button class="archive-button--ghost" type="button" :disabled="loading" @click="$emit('refresh')">刷新状态</button>
<button class="archive-button" type="button" :disabled="generating || !status.initialized" @click="$emit('generate')">
{{ generating ? '生成中' : '发起报告' }}
</button>
</div>
</div>
<label class="editor-input">
<span class="archive-kicker">Editorial Focus</span>
<textarea
class="archive-textarea"
:value="templateModel"
placeholder="例如:优先突出排队体验、动线效率、评论情绪分歧,以及当前场馆与竞品之间的差异化表现。"
@input="templateModel = ($event.target as HTMLTextAreaElement).value"
/>
</label>
</div>
<ReportPreview
:selected-task="selectedTask"
:preview-url="previewUrl"
/>
</div>
</div>
<div class="report-dock">
<div class="report-dock__downloads">
<button
class="archive-button--quiet"
type="button"
:disabled="!canDownload"
@click="selectedTask && $emit('download', 'pdf', selectedTask.task_id)"
>
PDF
</button>
<button
class="archive-button--quiet"
type="button"
:disabled="!canDownload"
@click="selectedTask && $emit('download', 'html', selectedTask.task_id)"
>
HTML
</button>
<button
class="archive-button--quiet"
type="button"
:disabled="!canDownload"
@click="selectedTask && $emit('download', 'md', selectedTask.task_id)"
>
MD
</button>
</div>
<div class="report-dock__status">
<span class="archive-chip" :data-tone="statusTone(selectedTask?.status || 'pending')">
<span class="archive-chip__dot" />
{{ selectedTask?.status || 'waiting' }}
</span>
<strong>{{ selectedTask?.progress ?? 0 }}%</strong>
</div>
<button class="archive-button" type="button" :disabled="generating || !status.initialized" @click="$emit('generate')">
{{ generating ? '分析中' : '重新生成报告' }}
</button>
</div>
</section>
</template>
<style scoped>
.report-studio,
.report-layout,
.report-main,
.editor-shelf,
.editor-shelf__actions {
display: grid;
gap: 18px;
}
.report-layout {
grid-template-columns: 320px minmax(0, 1fr);
align-items: start;
}
.report-main {
min-width: 0;
}
.editor-shelf__head {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 18px;
align-items: start;
}
.editor-shelf__actions {
grid-auto-flow: column;
align-items: center;
}
.editor-input {
display: grid;
gap: 10px;
}
.editor-input .archive-textarea {
min-height: 140px;
}
.report-dock {
position: sticky;
bottom: 12px;
z-index: 2;
display: flex;
justify-content: space-between;
gap: 18px;
align-items: center;
padding: 16px 18px;
border: 1px solid rgba(24, 35, 31, 0.1);
border-radius: 22px;
background: rgba(255, 250, 244, 0.92);
box-shadow: var(--shadow-soft);
backdrop-filter: blur(16px);
}
.report-dock__downloads,
.report-dock__status {
display: flex;
gap: 10px;
align-items: center;
}
.report-dock__downloads .archive-button--quiet {
min-height: 34px;
padding-inline: 12px;
}
.report-dock__status strong {
font-family: var(--font-display);
font-size: 28px;
color: var(--primary);
}
@media (max-width: 1360px) {
.report-layout,
.editor-shelf__head {
grid-template-columns: 1fr;
}
.editor-shelf__actions {
grid-auto-flow: row;
justify-items: start;
}
}
@media (max-width: 820px) {
.report-dock {
flex-direction: column;
align-items: stretch;
}
.report-dock__downloads,
.report-dock__status {
justify-content: flex-start;
flex-wrap: wrap;
}
}
</style>