refactor(frontend): use css modules
This commit is contained in:
parent
151586ab60
commit
d5e92c3822
|
@ -1,30 +1,30 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="_panel vjnjpkug">
|
<div class="_panel" :class="$style.root">
|
||||||
<div class="banner" :style="user.bannerUrl ? `background-image: url(${user.bannerUrl})` : ''"></div>
|
<div :class="$style.banner" :style="user.bannerUrl ? `background-image: url(${user.bannerUrl})` : ''"></div>
|
||||||
<MkAvatar class="avatar" :user="user" indicator/>
|
<MkAvatar :class="$style.avatar" :user="user" indicator/>
|
||||||
<div class="title">
|
<div :class="$style.title">
|
||||||
<MkA class="name" :to="userPage(user)"><MkUserName :user="user" :nowrap="false"/></MkA>
|
<MkA :class="$style.name" :to="userPage(user)"><MkUserName :user="user" :nowrap="false"/></MkA>
|
||||||
<p class="username"><MkAcct :user="user"/></p>
|
<p :class="$style.username"><MkAcct :user="user"/></p>
|
||||||
</div>
|
</div>
|
||||||
<span v-if="$i && $i.id !== user.id && user.isFollowed" class="followed">{{ i18n.ts.followsYou }}</span>
|
<span v-if="$i && $i.id !== user.id && user.isFollowed" :class="$style.followed">{{ i18n.ts.followsYou }}</span>
|
||||||
<div class="description">
|
<div :class="$style.description">
|
||||||
<div v-if="user.description" class="mfm">
|
<div v-if="user.description" class="mfm">
|
||||||
<Mfm :text="user.description" :author="user" :i="$i"/>
|
<Mfm :text="user.description" :author="user" :i="$i"/>
|
||||||
</div>
|
</div>
|
||||||
<span v-else style="opacity: 0.7;">{{ i18n.ts.noAccountDescription }}</span>
|
<span v-else style="opacity: 0.7;">{{ i18n.ts.noAccountDescription }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="status">
|
<div :class="$style.status">
|
||||||
<div>
|
<div :class="$style.statusItem">
|
||||||
<p>{{ i18n.ts.notes }}</p><span>{{ user.notesCount }}</span>
|
<p :class="$style.statusItemLabel">{{ i18n.ts.notes }}</p><span :class="$style.statusItemValue">{{ user.notesCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div :class="$style.statusItem">
|
||||||
<p>{{ i18n.ts.following }}</p><span>{{ user.followingCount }}</span>
|
<p :class="$style.statusItemLabel">{{ i18n.ts.following }}</p><span :class="$style.statusItemValue">{{ user.followingCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div :class="$style.statusItem">
|
||||||
<p>{{ i18n.ts.followers }}</p><span>{{ user.followersCount }}</span>
|
<p :class="$style.statusItemLabel">{{ i18n.ts.followers }}</p><span :class="$style.statusItemValue">{{ user.followersCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<MkFollowButton v-if="$i && user.id != $i.id" class="koudoku-button" :user="user" mini/>
|
<MkFollowButton v-if="$i && user.id != $i.id" :class="$style.follow" :user="user" mini/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -40,99 +40,99 @@ defineProps<{
|
||||||
}>();
|
}>();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" module>
|
||||||
.vjnjpkug {
|
.root {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
> .banner {
|
.banner {
|
||||||
height: 84px;
|
height: 84px;
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .avatar {
|
.avatar {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 62px;
|
top: 62px;
|
||||||
left: 13px;
|
left: 13px;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
width: 58px;
|
width: 58px;
|
||||||
height: 58px;
|
height: 58px;
|
||||||
border: solid 4px var(--panel);
|
border: solid 4px var(--panel);
|
||||||
}
|
}
|
||||||
|
|
||||||
> .title {
|
.title {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 10px 0 10px 88px;
|
padding: 10px 0 10px 88px;
|
||||||
|
}
|
||||||
|
|
||||||
> .name {
|
.name {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .username {
|
.username {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
> .followed {
|
|
||||||
position: absolute;
|
|
||||||
top: 12px;
|
|
||||||
left: 12px;
|
|
||||||
padding: 4px 8px;
|
|
||||||
color: #fff;
|
|
||||||
background: rgba(0, 0, 0, 0.7);
|
|
||||||
font-size: 0.7em;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
> .description {
|
|
||||||
padding: 16px;
|
|
||||||
font-size: 0.8em;
|
|
||||||
border-top: solid 0.5px var(--divider);
|
|
||||||
|
|
||||||
> .mfm {
|
.followed {
|
||||||
display: -webkit-box;
|
position: absolute;
|
||||||
-webkit-line-clamp: 3;
|
top: 12px;
|
||||||
-webkit-box-orient: vertical;
|
left: 12px;
|
||||||
overflow: hidden;
|
padding: 4px 8px;
|
||||||
}
|
color: #fff;
|
||||||
}
|
background: rgba(0, 0, 0, 0.7);
|
||||||
|
font-size: 0.7em;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
> .status {
|
.description {
|
||||||
padding: 10px 16px;
|
padding: 16px;
|
||||||
border-top: solid 0.5px var(--divider);
|
font-size: 0.8em;
|
||||||
|
border-top: solid 0.5px var(--divider);
|
||||||
|
}
|
||||||
|
|
||||||
> div {
|
.mfm {
|
||||||
display: inline-block;
|
display: -webkit-box;
|
||||||
width: 33%;
|
-webkit-line-clamp: 3;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
> p {
|
.status {
|
||||||
margin: 0;
|
padding: 10px 16px;
|
||||||
font-size: 0.7em;
|
border-top: solid 0.5px var(--divider);
|
||||||
color: var(--fg);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
> span {
|
.statusItem {
|
||||||
font-size: 1em;
|
display: inline-block;
|
||||||
color: var(--accent);
|
width: 33%;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
> .koudoku-button {
|
.statusItemLabel {
|
||||||
position: absolute;
|
margin: 0;
|
||||||
top: 8px;
|
font-size: 0.7em;
|
||||||
right: 8px;
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.statusItemValue {
|
||||||
|
font-size: 1em;
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.follow {
|
||||||
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
|
right: 8px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #default="{ items }">
|
<template #default="{ items }">
|
||||||
<div class="efvhhmdq">
|
<div :class="$style.root">
|
||||||
<MkUserInfo v-for="item in items" :key="item.id" class="user" :user="extractor(item)"/>
|
<MkUserInfo v-for="item in items" :key="item.id" class="user" :user="extractor(item)"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -29,8 +29,8 @@ const props = withDefaults(defineProps<{
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" module>
|
||||||
.efvhhmdq {
|
.root {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
||||||
grid-gap: var(--margin);
|
grid-gap: var(--margin);
|
||||||
|
|
Loading…
Reference in New Issue