refactor(frontend): use css modules

This commit is contained in:
syuilo 2023-05-08 10:32:08 +09:00
parent 151586ab60
commit d5e92c3822
2 changed files with 101 additions and 101 deletions

View file

@ -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 { .followed {
position: absolute; position: absolute;
top: 12px; top: 12px;
left: 12px; left: 12px;
padding: 4px 8px; padding: 4px 8px;
color: #fff; color: #fff;
background: rgba(0, 0, 0, 0.7); background: rgba(0, 0, 0, 0.7);
font-size: 0.7em; font-size: 0.7em;
border-radius: 6px; border-radius: 6px;
} }
> .description { .description {
padding: 16px; padding: 16px;
font-size: 0.8em; font-size: 0.8em;
border-top: solid 0.5px var(--divider); border-top: solid 0.5px var(--divider);
}
> .mfm { .mfm {
display: -webkit-box; display: -webkit-box;
-webkit-line-clamp: 3; -webkit-line-clamp: 3;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
overflow: hidden; overflow: hidden;
} }
}
> .status { .status {
padding: 10px 16px; padding: 10px 16px;
border-top: solid 0.5px var(--divider); border-top: solid 0.5px var(--divider);
}
> div { .statusItem {
display: inline-block; display: inline-block;
width: 33%; width: 33%;
}
> p { .statusItemLabel {
margin: 0; margin: 0;
font-size: 0.7em; font-size: 0.7em;
color: var(--fg); color: var(--fg);
} }
> span { .statusItemValue {
font-size: 1em; font-size: 1em;
color: var(--accent); color: var(--accent);
} }
}
}
> .koudoku-button { .follow {
position: absolute; position: absolute;
top: 8px; top: 8px;
right: 8px; right: 8px;
}
} }
</style> </style>

View file

@ -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);