Files
test-repo/docs/.vitepress/theme/components/appendix/frontend-routing/DynamicRoutesDemo.vue
T
sanbuphy 0eba9e87e9 fix(eslint): reduce warnings in GitHub Actions deployment
- Disable formatting rules (handled by Prettier)
- Relaxed strict Vue/JS rules for demo code compatibility
- Fix syntax errors in ApiPlayground and VoiceCloningDemo
- Fix duplicate else-if condition in ApiPlayground
- Fix Promise executor async pattern in AutoregressiveAudioDemo
- Add TypeScript file support to ESLint config

Warnings reduced from 295 to 251 problems.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-18 17:38:10 +08:00

439 lines
9.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="dynamic-routes-demo">
<div class="demo-header">
<span class="icon">🔗</span>
<span class="title">动态路由</span>
<span class="subtitle">让URL变身数据容器</span>
</div>
<div class="intro-text">
想象你在<span class="highlight">图书馆</span>找书每本书都有编号动态参数你需要根据这个编号找到对应的书籍动态路由就像这样<span class="highlight">占位符</span>匹配不同的内容
</div>
<div class="demo-content">
<!-- 参数类型说明 -->
<div class="param-types">
<div
v-for="type in paramTypes"
:key="type.name"
:class="['param-card', { active: selectedType === type.name }]"
@click="selectType(type)"
>
<div class="param-pattern">
{{ type.pattern }}
</div>
<div class="param-name">
{{ type.label }}
</div>
<div class="param-example">
: {{ type.example }}
</div>
</div>
</div>
<!-- 参数解析演示 -->
<div class="parsing-demo">
<div class="demo-section">
<h5>📍 测试路径</h5>
<div class="input-group">
<span class="input-prefix">/</span>
<input
v-model="testPath"
type="text"
placeholder="user/123/profile"
class="demo-input"
@input="parsePath"
>
</div>
<div class="hint-text">
试试输入user/123 products/electronics/456
</div>
</div>
<div class="demo-section">
<h5>🎯 匹配结果</h5>
<div
v-if="parseResult"
class="result-box"
>
<div class="result-row">
<span class="result-label">匹配路由:</span>
<code class="result-value">{{ parseResult.route }}</code>
</div>
<div
v-if="Object.keys(parseResult.params).length"
class="result-params"
>
<span class="result-label">提取参数:</span>
<div class="params-grid">
<div
v-for="(value, key) in parseResult.params"
:key="key"
class="param-tag"
>
<span class="param-key">{{ key }}</span>
<span class="param-eq">=</span>
<span class="param-val">{{ value }}</span>
</div>
</div>
</div>
</div>
<div
v-else
class="no-result"
>
<div class="no-match-icon">
🔍
</div>
<div>输入路径查看解析结果</div>
</div>
</div>
</div>
</div>
<div class="info-box">
<span class="icon">💡</span>
<strong>核心思想</strong>动态路由用占位符 :id捕获URL中的变量值就像给数据贴上了"标签"让组件可以通过这些标签获取具体内容
</div>
</div>
</template>
<script setup>
import { ref, computed } from 'vue'
const selectedType = ref('required')
const testPath = ref('user/123/profile')
const paramTypes = [
{
name: 'required',
pattern: ':id',
label: '必填参数',
example: '/user/123',
description: 'URL中必须有对应的值'
},
{
name: 'optional',
pattern: ':id?',
label: '可选参数',
example: '/user 或 /user/123',
description: '可以省略的参数'
},
{
name: 'multiple',
pattern: ':id+',
label: '重复参数',
example: '/files/a/b/c',
description: '一个或多个值'
},
{
name: 'zeroOrMore',
pattern: ':id*',
label: '灵活参数',
example: '/tags 或 /tags/vue/router',
description: '零个或多个值'
}
]
const routePatterns = [
{ pattern: '/user/:id', name: 'UserDetail' },
{ pattern: '/user/:id/profile', name: 'UserProfile' },
{ pattern: '/user/:id/:tab', name: 'UserTab' },
{ pattern: '/products/:category/:id', name: 'ProductDetail' },
{ pattern: '/search/:keyword?', name: 'Search' },
{ pattern: '/files/:path*', name: 'FileBrowser' }
]
const selectType = (type) => {
selectedType.value = type.name
testPath.value = type.example.split(' 或 ')[0].replace('/', '')
}
const parsePath = () => {
const path = testPath.value.trim()
if (!path) return null
for (const route of routePatterns) {
const match = matchRoute(route.pattern, path)
if (match) {
return {
route: route.pattern,
params: match
}
}
}
return null
}
const matchRoute = (pattern, path) => {
const regexPattern = pattern
.replace(/:([^/]+)\*/g, '(.*)')
.replace(/:([^/]+)\?/g, '([^/]*)')
.replace(/:([^/]+)/g, '([^/]+)')
const regex = new RegExp(`^${regexPattern}$`)
const match = path.match(regex)
if (!match) return null
const paramNames = []
const paramRegex = /:([^/]+)/g
let paramMatch
while ((paramMatch = paramRegex.exec(pattern)) !== null) {
paramNames.push(paramMatch[1].replace(/[?*+]$/, ''))
}
const params = {}
paramNames.forEach((name, index) => {
params[name] = match[index + 1]
})
return params
}
const parseResult = computed(() => parsePath())
parsePath()
</script>
<style scoped>
.dynamic-routes-demo {
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
background: var(--vp-c-bg-soft);
padding: 0.75rem;
margin: 0.5rem 0;
}
.demo-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.75rem;
}
.demo-header .icon { font-size: 1.25rem; }
.demo-header .title { font-weight: bold; font-size: 1rem; }
.demo-header .subtitle { color: var(--vp-c-text-2); font-size: 0.85rem; margin-left: 0.5rem; }
.intro-text {
font-size: 0.9rem;
color: var(--vp-c-text-2);
line-height: 1.6;
margin-bottom: 1rem;
padding: 0.75rem;
background: var(--vp-c-bg);
border-radius: 6px;
}
.intro-text .highlight {
color: var(--vp-c-brand-1);
font-weight: 500;
}
.demo-content {
display: flex;
flex-direction: column;
gap: 1rem;
}
.param-types {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 0.75rem;
}
.param-card {
background: var(--vp-c-bg);
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
padding: 0.75rem;
cursor: pointer;
transition: all 0.2s;
text-align: center;
}
.param-card:hover {
border-color: var(--vp-c-brand);
transform: translateY(-2px);
}
.param-card.active {
border-color: var(--vp-c-brand);
background: var(--vp-c-brand-soft);
}
.param-pattern {
font-family: monospace;
font-size: 1rem;
font-weight: 600;
color: var(--vp-c-brand);
margin-bottom: 0.5rem;
}
.param-name {
font-size: 0.85rem;
font-weight: 500;
color: var(--vp-c-text-1);
margin-bottom: 0.25rem;
}
.param-example {
font-size: 0.75rem;
color: var(--vp-c-text-3);
font-family: monospace;
}
.parsing-demo {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.demo-section {
background: var(--vp-c-bg);
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
padding: 0.75rem;
}
.demo-section h5 {
margin: 0 0 0.75rem 0;
font-size: 0.85rem;
color: var(--vp-c-text-2);
font-weight: 500;
}
.input-group {
display: flex;
align-items: center;
background: var(--vp-c-bg-soft);
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
overflow: hidden;
margin-bottom: 0.5rem;
}
.input-prefix {
padding: 0.5rem 0.5rem 0.5rem 0.75rem;
color: var(--vp-c-text-3);
font-family: monospace;
font-size: 0.85rem;
}
.demo-input {
flex: 1;
border: none;
background: transparent;
padding: 0.5rem 0.75rem 0.5rem 0;
font-size: 0.85rem;
color: var(--vp-c-text-1);
outline: none;
font-family: monospace;
}
.hint-text {
font-size: 0.75rem;
color: var(--vp-c-text-3);
margin-top: 0.5rem;
}
.result-box {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.result-row {
display: flex;
align-items: center;
gap: 0.5rem;
}
.result-label {
font-size: 0.8rem;
color: var(--vp-c-text-3);
min-width: 60px;
}
.result-value {
font-size: 0.85rem;
color: var(--vp-c-text-1);
font-family: monospace;
background: var(--vp-c-bg-soft);
padding: 0.25rem 0.5rem;
border-radius: 4px;
}
.result-params {
padding-top: 0.75rem;
border-top: 1px solid var(--vp-c-divider);
}
.params-grid {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 0.5rem;
}
.param-tag {
display: flex;
align-items: center;
gap: 0.25rem;
background: var(--vp-c-brand-soft);
padding: 0.25rem 0.6rem;
border-radius: 4px;
font-size: 0.8rem;
}
.param-key {
color: var(--vp-c-brand);
font-weight: 500;
}
.param-eq {
color: var(--vp-c-text-3);
}
.param-val {
color: var(--vp-c-text-1);
}
.no-result {
text-align: center;
padding: 2rem 1rem;
color: var(--vp-c-text-3);
font-size: 0.85rem;
}
.no-match-icon {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.info-box {
background: var(--vp-c-bg-alt);
padding: 0.75rem;
border-radius: 6px;
font-size: 0.85rem;
color: var(--vp-c-text-2);
margin-top: 1rem;
}
.info-box .icon { margin-right: 0.25rem; }
@media (max-width: 768px) {
.param-types {
grid-template-columns: repeat(2, 1fr);
}
.parsing-demo {
grid-template-columns: 1fr;
}
}
</style>