element-plus/docs/.vitepress/vitepress/components/globals/resource.vue

139 lines
3.6 KiB
Vue
Raw Normal View History

<script lang="ts" setup>
import { computed } from 'vue'
2022-07-19 20:41:22 +08:00
import { isClient } from '@vueuse/core'
import { useLang } from '../../composables/lang'
import resourceLocale from '../../../i18n/pages/resource.json'
2022-05-30 23:39:05 +08:00
import { sendEvent } from '../../../config/analytics'
2022-07-19 20:41:22 +08:00
const mirrorUrl = 'element-plus.gitee.io'
const isMirrorUrl = () => {
if (!isClient) return
return window.location.hostname === mirrorUrl
}
const resourceUrl = {
github: {
sketch:
'https://github.com/ElementUI/Resources/raw/master/Element_Plus_Design_System_2022_1.0_Beta.zip',
axure:
'https://github.com/ElementUI/Resources/raw/master/Element_Components_v2.1.0.rplib',
},
gitee: {
sketch:
'https://gitee.com/element-plus/resources/raw/master/Element_Plus_Design_System_2022_1.0_Beta.zip',
axure:
'https://gitee.com/element-plus/resources/raw/master/Element_Components_v2.1.0.rplib',
},
}[isMirrorUrl() ? 'gitee' : 'github']
const lang = useLang()
const resourceLang = computed(() => resourceLocale[lang.value])
2022-05-30 23:39:05 +08:00
const onClick = (item: string) => {
sendEvent('resource_download', item)
}
</script>
<template>
<div class="page-resource">
<h1>{{ resourceLang.title }}</h1>
<p>{{ resourceLang.lineOne }}</p>
<p v-html="resourceLang.lineTwo" />
<div class="flex flex-wrap justify-center mt-32px">
<div class="inline-flex w-full md:w-1/3" p="2" pl-0>
<el-card class="card" shadow="hover">
<axure-components-svg w="30" alt="axure" />
<h3>{{ resourceLang.axure }}</h3>
<p>
{{ resourceLang.axureIntro }}
</p>
<a
2022-05-30 23:39:05 +08:00
target="_blank"
2022-07-19 20:41:22 +08:00
:href="resourceUrl.axure"
2022-05-30 23:39:05 +08:00
@click="onClick('axure')"
>
<el-button type="primary">{{ resourceLang.download }}</el-button>
</a>
</el-card>
</div>
<div class="inline-flex w-full md:w-1/3" p="2">
<el-card class="card" shadow="hover">
<sketch-template-svg w="30" alt="Sketch" />
<h3>{{ resourceLang.sketch }}</h3>
<p>
{{ resourceLang.sketchIntro }}
</p>
<a
2022-05-30 23:39:05 +08:00
target="_blank"
2022-07-19 20:41:22 +08:00
:href="resourceUrl.sketch"
2022-05-30 23:39:05 +08:00
@click="onClick('sketch')"
>
<el-button type="primary">{{ resourceLang.download }}</el-button>
</a>
</el-card>
</div>
<div class="inline-flex w-full md:w-1/3" p="2">
<el-card class="card" shadow="hover">
<figma-template-svg w="30" alt="Figma" />
<h3>{{ resourceLang.figma }}</h3>
<p>
{{ resourceLang.figmaIntro }}
</p>
<a
href="https://www.figma.com/community/file/1021254029764378306"
target="_blank"
2022-05-30 23:39:05 +08:00
@click="onClick('figma')"
>
<el-button type="primary">{{ resourceLang.download }}</el-button>
</a>
</el-card>
</div>
</div>
</div>
</template>
<style lang="scss" scoped>
.page-resource {
box-sizing: border-box;
padding: 0 40px;
h1 {
color: var(--text-color);
margin-bottom: 24px;
}
p {
color: var(--text-color-light);
line-height: 24px;
margin: 0;
&:last-of-type {
margin-top: 8px;
}
}
}
.card {
text-align: center;
padding: 32px 0;
img {
margin: auto;
margin-bottom: 16px;
height: 87px;
}
h3 {
margin: 10px;
font-size: 18px;
font-weight: normal;
}
p {
font-size: 14px;
color: #99a9bf;
padding: 0 30px;
margin: 0;
word-break: break-word;
line-height: 1.8;
min-height: 75px;
margin-bottom: 16px;
}
}
</style>