-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathBreadcrumb.vue
More file actions
349 lines (301 loc) · 7.77 KB
/
Breadcrumb.vue
File metadata and controls
349 lines (301 loc) · 7.77 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<template>
<div class="breadcrumb-container">
<!-- 左侧区域:导航标题和操作按钮 -->
<div class="header-left">
<span class="navigation-title">{{ navigation_title }}</span>
<a-button type="outline" status="success" shape="round" @click="handleOpenForm">
<template #icon>
<icon-apps />
</template>
<template #default>{{ now_site_title }}</template>
</a-button>
<a-button type="outline" status="success" shape="round" @click="refreshPage">
<template #icon>
<icon-refresh />
</template>
<template #default>重载源</template>
</a-button>
</div>
<!-- 中间搜索框 -->
<div class="header-center">
<a-input-search
v-model="searchValue"
placeholder="搜索视频"
enter-button
@search="onSearch"
@press-enter="onSearch"
/>
</div>
<!-- 右侧控制按钮和时间 -->
<div class="header-right">
<a-button type="outline" status="success" shape="round" @click="handlePush">
<template #icon>
<icon-send />
</template>
<template #default>推送</template>
</a-button>
<a-button type="outline" status="success" shape="round" @click="handleGlobalAction">
<template #icon>
<icon-thunderbolt />
</template>
<template #default>全局动作</template>
</a-button>
<!-- 时间显示插槽 -->
<slot name="default"></slot>
</div>
</div>
<!-- 推送内容输入弹窗 -->
<a-modal
v-model:visible="showPushModal"
title="推送内容"
:width="600"
@ok="confirmPush"
@cancel="cancelPush"
ok-text="确认推送"
cancel-text="取消"
:ok-button-props="{ disabled: !pushContent.trim() }"
>
<div class="push-modal-content">
<div class="push-description">
<icon-send class="push-icon" />
<span>请输入要推送的内容(vod_id):</span>
</div>
<a-textarea
v-model="pushContent"
placeholder="请输入要推送的内容... 支持多行输入,每行一个vod_id"
:rows="6"
:max-length="1000"
show-word-limit
allow-clear
autofocus
class="push-textarea"
/>
<div class="push-hint">
<div class="hint-item">
<icon-info-circle class="hint-icon" />
<span>输入的内容将作为vod_id调用push_agent源的详情接口</span>
</div>
<div class="hint-item">
<icon-bulb class="hint-icon" />
<span>支持多行输入,系统将使用第一行非空内容作为vod_id</span>
</div>
</div>
</div>
</a-modal>
</template>
<script setup>
import { ref } from 'vue'
import { Message, Modal } from '@arco-design/web-vue'
const props = defineProps({
navigation_title: {
type: String,
default: "Video",
},
now_site_title: String,
});
const emit = defineEmits([
"handleOpenForm",
"refreshPage",
"onSearch",
"handlePush",
"minimize",
"maximize",
"closeWindow",
]);
const searchValue = ref('')
const showPushModal = ref(false)
const pushContent = ref('')
const handleOpenForm = () => {
emit("handleOpenForm");
};
const refreshPage = () => {
emit("refreshPage");
};
const onSearch = (value) => {
// 如果value是字符串,使用它;否则使用当前输入框的值
const searchTerm = typeof value === 'string' ? value : searchValue.value
if (searchTerm && typeof searchTerm === 'string' && searchTerm.trim()) {
emit("onSearch", searchTerm.trim());
}
};
// 推送按钮点击事件
const handlePush = () => {
showPushModal.value = true
pushContent.value = ''
};
// 全局动作按钮点击事件
const handleGlobalAction = () => {
Message.info({
content: '全局动作功能开发中,敬请期待!',
duration: 3000
})
};
// 确认推送
const confirmPush = () => {
if (!pushContent.value.trim()) {
Message.error('推送内容不能为空');
return;
}
// 处理多行输入,取第一行非空内容作为vod_id
const lines = pushContent.value.split('\n').map(line => line.trim()).filter(line => line);
if (lines.length === 0) {
Message.error('请输入有效的推送内容');
return;
}
const vodId = lines[0]; // 使用第一行非空内容
if (lines.length > 1) {
Message.info(`检测到多行输入,将使用第一行内容: ${vodId}`);
}
// 触发推送事件,传递处理后的vod_id
emit('handlePush', vodId);
// 关闭弹窗并清空内容
showPushModal.value = false;
pushContent.value = '';
};
// 取消推送
const cancelPush = () => {
showPushModal.value = false
pushContent.value = ''
};
</script>
<style scoped>
.breadcrumb-container {
display: flex;
align-items: center;
width: 100%;
padding: 16px 20px;
background: var(--color-bg-3);
border-bottom: 1px solid var(--color-border-2);
box-sizing: border-box;
}
.header-left {
display: flex;
align-items: center;
flex: 0 0 auto;
min-width: 0;
}
.navigation-title {
font-size: 16px;
font-weight: 600;
color: var(--color-text-1);
margin-right: 16px;
white-space: nowrap;
}
.header-left button {
margin-right: 12px;
}
.header-center {
flex: 1;
display: flex;
justify-content: center;
padding: 0 20px;
min-width: 0;
}
.header-center :deep(.arco-input-search) {
max-width: 400px;
width: 100%;
}
.header-right {
display: flex;
align-items: center;
flex: 0 0 auto;
min-width: 0;
}
.header-right button {
margin-right: 12px;
}
.header-right button:last-of-type {
margin-right: 16px;
}
/* 时间显示样式 */
.header-right :deep(.current-time) {
font-size: 14px;
color: var(--color-text-2);
white-space: nowrap;
margin-left: 8px;
}
/* 推送弹窗样式 */
.push-modal-content {
padding: 20px 0;
}
.push-description {
display: flex;
align-items: center;
margin-bottom: 20px;
font-size: 16px;
color: var(--color-text-1);
font-weight: 500;
}
.push-icon {
margin-right: 8px;
font-size: 18px;
color: var(--color-primary-6);
}
.push-textarea {
margin-bottom: 16px;
}
.push-textarea :deep(.arco-textarea) {
border-radius: 8px;
border: 2px solid var(--color-border-2);
transition: all 0.3s ease;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
line-height: 1.6;
}
.push-textarea :deep(.arco-textarea:focus) {
border-color: var(--color-primary-6);
box-shadow: 0 0 0 3px var(--color-primary-1);
}
.push-textarea :deep(.arco-textarea::placeholder) {
color: var(--color-text-3);
font-style: italic;
}
.push-hint {
background: var(--color-bg-2);
border-radius: 8px;
padding: 16px;
border-left: 4px solid var(--color-primary-6);
}
.hint-item {
display: flex;
align-items: flex-start;
margin-bottom: 8px;
font-size: 14px;
color: var(--color-text-2);
line-height: 1.5;
}
.hint-item:last-child {
margin-bottom: 0;
}
.hint-icon {
margin-right: 8px;
margin-top: 2px;
font-size: 16px;
color: var(--color-primary-6);
flex-shrink: 0;
}
/* 响应式设计 */
@media (max-width: 1200px) {
.header-center :deep(.arco-input-search) {
max-width: 300px;
}
}
@media (max-width: 768px) {
.breadcrumb-container {
padding: 12px 16px;
}
.navigation-title {
font-size: 14px;
margin-right: 12px;
}
.header-center {
padding: 0 12px;
}
.header-center :deep(.arco-input-search) {
max-width: 250px;
}
.header-left button,
.header-right button {
margin-right: 8px;
}
}
</style>