← All Blocks Errors 错误页

Error Network 网络异常

Result + 网络状态大插画 + 重试按钮(含 1.5s loading)+ 折叠诊断信息。

error-network source
ErrorNetwork.vue vue
<script setup lang="ts">
import { ref } from 'vue';
import { CfResult, CfButton, CfDescriptionList } from '@chufix-design/vue';
const retrying = ref(false);
async function retry() {
  retrying.value = true;
  await new Promise((r) => setTimeout(r, 1500));
  retrying.value = false;
}
const debug = [
  { label: 'URL', value: 'https://api.protoforge.io/v1/orders' },
  { label: 'Method', value: 'GET' },
  { label: 'Status', value: '0 (network unreachable)' },
  { label: 'Trace', value: 'a8b2-3914-c012' },
];
</script>

<template>
  <div class="err">
    <CfResult
      status="500"
      size="lg"
      title="网络异常"
      description="无法连接到服务,请检查你的网络或稍后重试。"
    >
      <template #icon>
        <svg class="err-artwork" viewBox="0 0 420 220" role="img" aria-label="网络异常插画">
          <defs>
            <linearGradient id="net-panel" x1="0" x2="1" y1="0" y2="1">
              <stop offset="0%" stop-color="var(--bg-1)" />
              <stop offset="100%" stop-color="var(--accent-soft)" />
            </linearGradient>
            <linearGradient id="net-link" x1="76" x2="344" y1="120" y2="94" gradientUnits="userSpaceOnUse">
              <stop stop-color="var(--accent-1)" />
              <stop offset="1" stop-color="var(--status-error)" />
            </linearGradient>
          </defs>
          <rect x="22" y="22" width="376" height="176" rx="22" fill="url(#net-panel)" stroke="var(--line-1)" />
          <path d="M82 132 C128 78 172 86 210 112 S290 154 340 86" fill="none" stroke="url(#net-link)" stroke-width="5" stroke-linecap="round" stroke-dasharray="18 14" />
          <g fill="var(--bg-1)" stroke="var(--line-2)" stroke-width="2">
            <rect x="52" y="96" width="84" height="64" rx="14" />
            <rect x="168" y="64" width="84" height="64" rx="14" />
            <rect x="284" y="82" width="84" height="64" rx="14" />
          </g>
          <g stroke="var(--line-3)" stroke-width="6" stroke-linecap="round">
            <path d="M72 118 h42" />
            <path d="M188 86 h42" />
            <path d="M304 104 h42" />
            <path d="M72 138 h26" />
            <path d="M188 106 h30" />
            <path d="M304 124 h24" />
          </g>
          <g transform="translate(194 132)">
            <circle cx="0" cy="0" r="32" fill="var(--bg-0)" stroke="var(--status-error)" stroke-width="5" />
            <path d="M-12 -12 l24 24 M12 -12 l-24 24" stroke="var(--status-error)" stroke-width="5" stroke-linecap="round" />
          </g>
          <rect x="140" y="38" width="140" height="30" rx="15" fill="var(--bg-0)" stroke="var(--line-2)" />
          <circle cx="160" cy="53" r="5" fill="var(--status-error)" />
          <text x="174" y="58" font-family="var(--font-mono)" font-size="13" fill="var(--fg-2)">offline endpoint</text>
        </svg>
      </template>
      <template #extra>
        <div class="err__actions">
          <CfButton variant="primary" :loading="retrying" @click="retry">{{ retrying ? '重试中…' : '重试' }}</CfButton>
          <CfButton variant="tertiary">检测网络</CfButton>
        </div>
        <details class="err__debug">
          <summary>诊断信息</summary>
          <CfDescriptionList :items="debug" />
        </details>
      </template>
    </CfResult>
  </div>
</template>

<style scoped>
.err {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  min-height: 580px;
  font-family: var(--font-sans);
}
.err :deep(.cf-result) {
  width: min(740px, 100%);
  padding: 0;
}
.err :deep(.cf-result__icon) {
  width: min(520px, 100%);
}
.err :deep(.cf-result__icon .err-artwork) {
  display: block;
  width: min(420px, 100%);
  height: auto;
}
.err__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.err__debug {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 12px;
  font-size: var(--t-12);
  color: var(--fg-3);
}
.err__debug > summary {
  cursor: pointer;
  margin-bottom: 8px;
}
</style>
ErrorNetwork.tsx tsx
import { useState } from 'react';
import { CfResult, CfButton, CfDescriptionList } from '@chufix-design/react';

const artworkStyle = { width: 'min(420px, 100%)', height: 'auto' };

const debug = [
  { label: 'URL', value: 'https://api.protoforge.io/v1/orders' },
  { label: 'Method', value: 'GET' },
  { label: 'Status', value: '0 (network unreachable)' },
  { label: 'Trace', value: 'a8b2-3914-c012' },
];

export function ErrorNetwork() {
  const [retrying, setRetrying] = useState(false);

  async function retry() {
    setRetrying(true);
    await new Promise((r) => setTimeout(r, 1500));
    setRetrying(false);
  }

  return (
    <div className="err">
      <CfResult
        status="500"
        size="lg"
        title="网络异常"
        description="无法连接到服务,请检查你的网络或稍后重试。"
        icon={
          <svg className="err-artwork" style={artworkStyle} viewBox="0 0 420 220" role="img" aria-label="网络异常插画">
            <defs>
              <linearGradient id="net-panel" x1="0" x2="1" y1="0" y2="1">
                <stop offset="0%" stopColor="var(--bg-1)" />
                <stop offset="100%" stopColor="var(--accent-soft)" />
              </linearGradient>
              <linearGradient id="net-link" x1="76" x2="344" y1="120" y2="94" gradientUnits="userSpaceOnUse">
                <stop stopColor="var(--accent-1)" />
                <stop offset="1" stopColor="var(--status-error)" />
              </linearGradient>
            </defs>
            <rect x="22" y="22" width="376" height="176" rx="22" fill="url(#net-panel)" stroke="var(--line-1)" />
            <path d="M82 132 C128 78 172 86 210 112 S290 154 340 86" fill="none" stroke="url(#net-link)" strokeWidth="5" strokeLinecap="round" strokeDasharray="18 14" />
            <g fill="var(--bg-1)" stroke="var(--line-2)" strokeWidth="2">
              <rect x="52" y="96" width="84" height="64" rx="14" />
              <rect x="168" y="64" width="84" height="64" rx="14" />
              <rect x="284" y="82" width="84" height="64" rx="14" />
            </g>
            <g stroke="var(--line-3)" strokeWidth="6" strokeLinecap="round">
              <path d="M72 118 h42" />
              <path d="M188 86 h42" />
              <path d="M304 104 h42" />
              <path d="M72 138 h26" />
              <path d="M188 106 h30" />
              <path d="M304 124 h24" />
            </g>
            <g transform="translate(194 132)">
              <circle cx="0" cy="0" r="32" fill="var(--bg-0)" stroke="var(--status-error)" strokeWidth="5" />
              <path d="M-12 -12 l24 24 M12 -12 l-24 24" stroke="var(--status-error)" strokeWidth="5" strokeLinecap="round" />
            </g>
            <rect x="140" y="38" width="140" height="30" rx="15" fill="var(--bg-0)" stroke="var(--line-2)" />
            <circle cx="160" cy="53" r="5" fill="var(--status-error)" />
            <text x="174" y="58" fontFamily="var(--font-mono)" fontSize="13" fill="var(--fg-2)">offline endpoint</text>
          </svg>
        }
        extra={
          <>
            <div className="err__actions">
              <CfButton variant="primary" loading={retrying} onClick={retry}>
                {retrying ? '重试中…' : '重试'}
              </CfButton>
              <CfButton variant="tertiary">检测网络</CfButton>
            </div>
            <details className="err__debug">
              <summary>诊断信息</summary>
              <CfDescriptionList items={debug} />
            </details>
          </>
        }
      />
    </div>
  );
}