-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(organism): add TeamMembers. and optimize seo
- Loading branch information
Showing
14 changed files
with
409 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
packages/theme/composables/config/interfaces/CustomThemeConfig.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,5 @@ export function useThemeConfig() { | |
theme.value.apiUrl = withBase(theme.value?.apiUrl); | ||
} | ||
|
||
|
||
return theme; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<script setup lang="ts"> | ||
import type {DefaultTheme} from "vitepress/theme"; | ||
import {computed} from "vue"; | ||
import TeamMembersItem from "./TeamMembersItem.vue"; | ||
interface Props { | ||
size?: "small" | "medium"; | ||
members: DefaultTheme.TeamMember[]; | ||
} | ||
const props = withDefaults(defineProps<Props>(), { | ||
size: "medium" | ||
}); | ||
const classes = computed(() => [props.size, `count-${props.members.length}`]); | ||
</script> | ||
|
||
<template> | ||
<div class="VPTeamMembers" :class="classes"> | ||
<div class="container"> | ||
<div v-for="member in members" :key="member.name" class="item"> | ||
<TeamMembersItem :size="size" :member="member"/> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.VPTeamMembers.small .container { | ||
grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); | ||
} | ||
.VPTeamMembers.small.count-1 .container { | ||
max-width: 276px; | ||
} | ||
.VPTeamMembers.small.count-2 .container { | ||
max-width: calc(276px * 2 + 24px); | ||
} | ||
.VPTeamMembers.small.count-3 .container { | ||
max-width: calc(276px * 3 + 24px * 2); | ||
} | ||
.VPTeamMembers.medium .container { | ||
grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); | ||
} | ||
@media (min-width: 375px) { | ||
.VPTeamMembers.medium .container { | ||
grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); | ||
} | ||
} | ||
.VPTeamMembers.medium.count-1 .container { | ||
max-width: 368px; | ||
} | ||
.VPTeamMembers.medium.count-2 .container { | ||
max-width: calc(368px * 2 + 24px); | ||
} | ||
.container { | ||
display: grid; | ||
gap: 24px; | ||
margin: 0 auto; | ||
max-width: 1152px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,225 @@ | ||
<script setup lang="ts"> | ||
import type { DefaultTheme } from 'vitepress/theme' | ||
import VPLink from 'vitepress/dist/client/theme-default/components/VPLink.vue' | ||
import VPSocialLinks from 'vitepress/dist/client/theme-default/components/VPSocialLinks.vue' | ||
interface Props { | ||
size?: 'small' | 'medium' | ||
member: DefaultTheme.TeamMember | ||
} | ||
withDefaults(defineProps<Props>(), { | ||
size: 'medium' | ||
}) | ||
</script> | ||
|
||
<template> | ||
<article class="VPTeamMembersItem" :class="[size]"> | ||
<div class="profile"> | ||
<figure class="avatar"> | ||
<img class="avatar-img" :src="member.avatar" :alt="member.name" /> | ||
</figure> | ||
<div class="data"> | ||
<h4 class="name"> | ||
{{ member.name }} | ||
</h4> | ||
<p v-if="member.title || member.org" class="affiliation"> | ||
<span v-if="member.title" class="title"> | ||
{{ member.title }} | ||
</span> | ||
<span v-if="member.title && member.org" class="at"> @ </span> | ||
<VPLink | ||
v-if="member.org" | ||
class="org" | ||
:class="{ link: member.orgLink }" | ||
:href="member.orgLink" | ||
no-icon | ||
> | ||
{{ member.org }} | ||
</VPLink> | ||
</p> | ||
<p v-if="member.desc" class="desc" v-html="member.desc" /> | ||
<div v-if="member.links" class="links"> | ||
<VPSocialLinks :links="member.links" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div v-if="member.sponsor" class="sp"> | ||
<VPLink class="sp-link" :href="member.sponsor" no-icon> | ||
<span class="vpi-heart sp-icon" /> {{ member.actionText || 'Sponsor' }} | ||
</VPLink> | ||
</div> | ||
</article> | ||
</template> | ||
|
||
<style scoped> | ||
.VPTeamMembersItem { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2px; | ||
border-radius: 12px; | ||
width: 100%; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
.VPTeamMembersItem.small .profile { | ||
padding: 32px; | ||
} | ||
.VPTeamMembersItem.small .data { | ||
padding-top: 20px; | ||
} | ||
.VPTeamMembersItem.small .avatar { | ||
width: 64px; | ||
height: 64px; | ||
} | ||
.VPTeamMembersItem.small .name { | ||
line-height: 24px; | ||
font-size: 16px; | ||
} | ||
.VPTeamMembersItem.small .affiliation { | ||
padding-top: 4px; | ||
line-height: 20px; | ||
font-size: 14px; | ||
} | ||
.VPTeamMembersItem.small .desc { | ||
padding-top: 12px; | ||
line-height: 20px; | ||
font-size: 14px; | ||
} | ||
.VPTeamMembersItem.small .links { | ||
margin: 0 -16px -20px; | ||
padding: 10px 0 0; | ||
} | ||
.VPTeamMembersItem.medium .profile { | ||
padding: 48px 32px; | ||
} | ||
.VPTeamMembersItem.medium .data { | ||
padding-top: 24px; | ||
text-align: center; | ||
} | ||
.VPTeamMembersItem.medium .avatar { | ||
width: 96px; | ||
height: 96px; | ||
} | ||
.VPTeamMembersItem.medium .name { | ||
letter-spacing: 0.15px; | ||
line-height: 28px; | ||
font-size: 20px; | ||
} | ||
.VPTeamMembersItem.medium .affiliation { | ||
padding-top: 4px; | ||
font-size: 16px; | ||
} | ||
.VPTeamMembersItem.medium .desc { | ||
padding-top: 16px; | ||
max-width: 288px; | ||
font-size: 16px; | ||
} | ||
.VPTeamMembersItem.medium .links { | ||
margin: 0 -16px -12px; | ||
padding: 16px 12px 0; | ||
} | ||
.profile { | ||
flex-grow: 1; | ||
background-color: var(--vp-c-bg-soft); | ||
} | ||
.data { | ||
text-align: center; | ||
} | ||
.avatar { | ||
position: relative; | ||
flex-shrink: 0; | ||
margin: 0 auto; | ||
border-radius: 50%; | ||
box-shadow: var(--vp-shadow-3); | ||
} | ||
.avatar-img { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
} | ||
.name { | ||
margin: 0; | ||
font-weight: 600; | ||
} | ||
.affiliation { | ||
margin: 0; | ||
font-weight: 500; | ||
color: var(--vp-c-text-2); | ||
} | ||
.org.link { | ||
color: var(--vp-c-text-2); | ||
transition: color 0.25s; | ||
} | ||
.org.link:hover { | ||
color: var(--vp-c-brand-1); | ||
} | ||
.desc { | ||
margin: 0 auto; | ||
} | ||
.desc :deep(a) { | ||
font-weight: 500; | ||
color: var(--vp-c-brand-1); | ||
text-decoration-style: dotted; | ||
transition: color 0.25s; | ||
} | ||
.links { | ||
display: flex; | ||
justify-content: center; | ||
height: 56px; | ||
} | ||
.sp-link { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
padding: 16px; | ||
font-size: 14px; | ||
font-weight: 500; | ||
color: var(--vp-c-sponsor); | ||
background-color: var(--vp-c-bg-soft); | ||
transition: color 0.25s, background-color 0.25s; | ||
} | ||
.sp .sp-link.link:hover, | ||
.sp .sp-link.link:focus { | ||
outline: none; | ||
color: var(--vp-c-white); | ||
background-color: var(--vp-c-sponsor); | ||
} | ||
.sp-icon { | ||
margin-right: 8px; | ||
font-size: 16px; | ||
} | ||
</style> |
Oops, something went wrong.