mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 14:03:08 +02:00
96 lines
2.1 KiB
Vue
96 lines
2.1 KiB
Vue
<template>
|
|
<div class="_panel">
|
|
<div :class="$style.container" :style="{ backgroundImage: $i.bannerUrl ? `url(${ $i.bannerUrl })` : null }">
|
|
<div :class="$style.avatarContainer">
|
|
<MkAvatar :class="$style.avatar" :user="$i"/>
|
|
</div>
|
|
<div :class="$style.bodyContainer">
|
|
<div :class="$style.body">
|
|
<MkA :class="$style.name" :to="userPage($i)">
|
|
<MkUserName :user="$i"/>
|
|
</MkA>
|
|
<div :class="$style.username"><MkAcct :user="$i" detail/></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, onUnmounted, Ref, ref, watch } from 'vue';
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
|
import { GetFormResultType } from '@/scripts/form';
|
|
import { $i } from '@/account';
|
|
import { userPage } from '@/filters/user';
|
|
|
|
const name = 'profile';
|
|
|
|
const widgetPropsDef = {
|
|
};
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
const props = defineProps<{ widget?: Widget<WidgetProps>; }>();
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: WidgetProps); }>();
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
widgetPropsDef,
|
|
props,
|
|
emit,
|
|
);
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
name,
|
|
configure,
|
|
id: props.widget ? props.widget.id : null,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
position: relative;
|
|
background-size: cover;
|
|
background-position: center;
|
|
display: flex;
|
|
}
|
|
|
|
.avatarContainer {
|
|
display: inline-block;
|
|
text-align: center;
|
|
padding: 16px;
|
|
}
|
|
|
|
.avatar {
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 60px;
|
|
box-sizing: border-box;
|
|
border: solid 3px #fff;
|
|
}
|
|
|
|
.bodyContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 0;
|
|
padding: 0 16px 0 0;
|
|
}
|
|
|
|
.body {
|
|
text-overflow: ellipsis;
|
|
overflow: clip;
|
|
}
|
|
|
|
.name {
|
|
color: #fff;
|
|
filter: drop-shadow(0 0 4px #000);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.username {
|
|
color: #fff;
|
|
filter: drop-shadow(0 0 4px #000);
|
|
}
|
|
</style>
|