Skip to content

Commit 36da03e

Browse files
committed
屏蔽部分前端内容
1 parent 8fc4455 commit 36da03e

File tree

3 files changed

+17
-90
lines changed

3 files changed

+17
-90
lines changed

.github/workflows/docker-images-reusable.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
elif [[ $GITHUB_REF == refs/heads/main ]]; then
4040
echo "TAGS=$BASE_IMAGE:amd64" >> $GITHUB_OUTPUT
4141
else
42-
echo "TAGS=$BASE_IMAGE:amd64-temp" >> $GITHUB_OUTPUT
42+
BRANCH_NAME=$(echo "${GITHUB_REF#refs/heads/}" | sed 's/[^a-zA-Z0-9._-]/-/g')
43+
echo "TAGS=$BASE_IMAGE:amd64-$BRANCH_NAME" >> $GITHUB_OUTPUT
4344
fi
4445
4546
- name: Build Docker Image
@@ -80,7 +81,8 @@ jobs:
8081
elif [[ $GITHUB_REF == refs/heads/main ]]; then
8182
echo "TAGS=$BASE_IMAGE:arm64" >> $GITHUB_OUTPUT
8283
else
83-
echo "TAGS=$BASE_IMAGE:arm64-temp" >> $GITHUB_OUTPUT
84+
BRANCH_NAME=$(echo "${GITHUB_REF#refs/heads/}" | sed 's/[^a-zA-Z0-9._-]/-/g')
85+
echo "TAGS=$BASE_IMAGE:arm64-$BRANCH_NAME" >> $GITHUB_OUTPUT
8486
fi
8587
8688
- name: Build Docker Image
@@ -120,14 +122,15 @@ jobs:
120122
echo "ARM_TAGS=$BASE_IMAGE:arm64" >> $GITHUB_OUTPUT
121123
echo "AMD_TAGS=$BASE_IMAGE:amd64" >> $GITHUB_OUTPUT
122124
else
123-
echo "TAGS=$BASE_IMAGE:temp" >> $GITHUB_OUTPUT
124-
echo "ARM_TAGS=$BASE_IMAGE:arm64-temp" >> $GITHUB_OUTPUT
125-
echo "AMD_TAGS=$BASE_IMAGE:amd64-temp" >> $GITHUB_OUTPUT
125+
BRANCH_NAME=$(echo "${GITHUB_REF#refs/heads/}" | sed 's/[^a-zA-Z0-9._-]/-/g')
126+
echo "TAGS=$BASE_IMAGE:$BRANCH_NAME" >> $GITHUB_OUTPUT
127+
echo "ARM_TAGS=$BASE_IMAGE:arm64-$BRANCH_NAME" >> $GITHUB_OUTPUT
128+
echo "AMD_TAGS=$BASE_IMAGE:amd64-$BRANCH_NAME" >> $GITHUB_OUTPUT
126129
fi
127130
128131
- name: Manifest Docker Image
129132
run: |
130133
docker manifest create ${{ steps.set-tag.outputs.TAGS }} \
131134
${{ steps.set-tag.outputs.AMD_TAGS }} \
132135
${{ steps.set-tag.outputs.ARM_TAGS }}
133-
docker manifest push ${{ steps.set-tag.outputs.TAGS }}
136+
docker manifest push ${{ steps.set-tag.outputs.TAGS }}

frontend/src/pages/DataManagement/Detail/DatasetDetail.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ const tabList = [
3232
key: "overview",
3333
label: "概览",
3434
},
35-
{
36-
key: "lineage",
37-
label: "数据血缘",
38-
},
39-
{
40-
key: "quality",
41-
label: "数据质量",
42-
},
35+
// {
36+
// key: "lineage",
37+
// label: "数据血缘",
38+
// },
39+
// {
40+
// key: "quality",
41+
// label: "数据质量",
42+
// },
4343
];
4444

4545
export default function DatasetDetail() {

frontend/src/pages/Home/Home.tsx

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {
22
FolderOpen,
33
Settings,
4-
ArrowRight,
54
Sparkles,
65
Target,
76
Zap,
@@ -26,7 +25,6 @@ export default function WelcomePage() {
2625
headers: {
2726
'Content-Type': 'application/json',
2827
},
29-
timeout: 5000, // 5秒超时
3028
cache: 'no-store'
3129
});
3230

@@ -96,13 +94,6 @@ export default function WelcomePage() {
9694
<MessageSquare className="mr-2 w-4 h-4" />
9795
{isChecking ? '检查中...' : '对话助手'}
9896
</span>
99-
<span
100-
onClick={() => navigate("/orchestration")}
101-
className="cursor-pointer rounded px-4 py-2 inline-flex items-center bg-gradient-to-r from-orange-600 to-amber-600 hover:from-orange-700 hover:to-amber-700 text-white shadow-lg"
102-
>
103-
数据智能编排
104-
<ArrowRight className="ml-2 w-4 h-4" />
105-
</span>
10697
</div>
10798
</div>
10899

@@ -159,73 +150,6 @@ export default function WelcomePage() {
159150
</div>
160151
</div>
161152

162-
{/* Data Orchestration Highlight */}
163-
<div className="mb-16">
164-
<Card className="bg-gradient-to-br from-orange-50 to-amber-50 border-orange-200 shadow-lg">
165-
<div className="p-8">
166-
<div className="text-center mb-6">
167-
<div className="w-16 h-16 bg-gradient-to-br from-orange-500 to-amber-500 rounded-xl flex items-center justify-center mx-auto mb-4">
168-
<GitBranch className="w-8 h-8 text-white" />
169-
</div>
170-
<h3 className="text-2xl font-bold text-orange-900 mb-2">
171-
数据智能编排 - 可视化流程设计
172-
</h3>
173-
<p className="text-orange-700">
174-
拖拽式设计复杂数据清洗管道,让数据流转更加直观高效
175-
</p>
176-
</div>
177-
178-
<div className="grid md:grid-cols-2 gap-8 mb-6">
179-
<div className="space-y-3">
180-
<h4 className="font-semibold text-orange-900">
181-
🎯 核心功能:
182-
</h4>
183-
<div className="space-y-2">
184-
<div className="bg-white/60 rounded-lg p-3 text-sm text-orange-800">
185-
可视化流程设计器
186-
</div>
187-
<div className="bg-white/60 rounded-lg p-3 text-sm text-orange-800">
188-
丰富的数据清洗组件库
189-
</div>
190-
<div className="bg-white/60 rounded-lg p-3 text-sm text-orange-800">
191-
实时流程执行监控
192-
</div>
193-
</div>
194-
</div>
195-
<div className="space-y-3">
196-
<h4 className="font-semibold text-orange-900">
197-
⚡ 智能特性:
198-
</h4>
199-
<div className="space-y-2">
200-
<div className="flex items-center gap-2 text-sm text-orange-800">
201-
<Zap className="w-4 h-4 text-orange-500" />
202-
自动优化数据流转路径
203-
</div>
204-
<div className="flex items-center gap-2 text-sm text-orange-800">
205-
<Target className="w-4 h-4 text-orange-500" />
206-
智能错误检测和修复建议
207-
</div>
208-
<div className="flex items-center gap-2 text-sm text-orange-800">
209-
<Sparkles className="w-4 h-4 text-orange-500" />
210-
模板化流程快速复用
211-
</div>
212-
</div>
213-
</div>
214-
</div>
215-
216-
<div className="text-center">
217-
<span
218-
onClick={() => navigate("/orchestration")}
219-
className="cursor-pointer rounded px-4 py-2 inline-flex items-center bg-gradient-to-r from-orange-600 to-amber-600 hover:from-orange-700 hover:to-amber-700 text-white shadow-lg"
220-
>
221-
<GitBranch className="mr-2 w-4 h-4" />
222-
开始编排
223-
</span>
224-
</div>
225-
</div>
226-
</Card>
227-
</div>
228-
229153
{/* Data Agent Highlight */}
230154
<div className="mb-16">
231155
<Card className="bg-gradient-to-br from-purple-50 to-pink-50 border-purple-200 shadow-lg">

0 commit comments

Comments
 (0)