100 lines
2.5 KiB
HTML
100 lines
2.5 KiB
HTML
<div class="status-header {{isStatusInNotification ? 'status-in-notification' : ''}}">
|
|
<Avatar :account size="extra-small" className="status-header-avatar"/>
|
|
<svg class="status-header-svg">
|
|
<use xlink:href="{{icon}}"/>
|
|
</svg>
|
|
<span class="status-header-span">
|
|
{{#if timelineType === 'pinned'}}
|
|
Pinned toot
|
|
{{else}}
|
|
<a href="/accounts/{{accountId}}"
|
|
class="status-header-a"
|
|
title="{{'@' + account.acct}}"
|
|
focus-key="{{focusKey}}" >
|
|
{{account.display_name || account.username}}
|
|
</a>
|
|
{{#if notification && notification.type === 'reblog'}}
|
|
boosted your status
|
|
{{elseif notification && notification.type === 'favourite'}}
|
|
favorited your status
|
|
{{elseif notification && notification.type === 'follow'}}
|
|
followed you
|
|
{{elseif status && status.reblog}}
|
|
boosted
|
|
{{/if}}
|
|
{{/if}}
|
|
</span>
|
|
</div>
|
|
<style>
|
|
.status-header {
|
|
grid-area: header;
|
|
margin: 5px 10px 5px 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
:global(.status-header-avatar) {
|
|
margin-left: 19px; /* offset for avatar, 48px - 24px - 5px */
|
|
}
|
|
|
|
.status-header-svg {
|
|
margin-left: 20px;
|
|
width: 18px;
|
|
height: 18px;
|
|
fill: var(--deemphasized-text-color);
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.status-header-svg {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.status-header.status-in-notification .status-header-svg {
|
|
fill: var(--body-text-color);
|
|
}
|
|
|
|
.status-header-span {
|
|
margin-left: 5px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.status-header-span,
|
|
.status-header-a,
|
|
.status-header-a:visited,
|
|
.status-header-a:hover {
|
|
color: var(--deemphasized-text-color);
|
|
}
|
|
|
|
.status-in-notification .status-header-span,
|
|
.status-in-notification .status-header-a,
|
|
.status-in-notification .status-header-a:visited,
|
|
.status-in-notification .status-header-a:hover {
|
|
color: var(--body-text-color);
|
|
}
|
|
</style>
|
|
<script>
|
|
|
|
import Avatar from '../Avatar.html'
|
|
|
|
export default {
|
|
components: {
|
|
Avatar
|
|
},
|
|
computed: {
|
|
focusKey: (uuid) => `status-header-${uuid}`,
|
|
icon: (notification, status, timelineType) => {
|
|
if (timelineType === 'pinned') {
|
|
return '#fa-thumb-tack'
|
|
} else if ((notification && notification.type === 'reblog') || (status && status.reblog)) {
|
|
return '#fa-retweet'
|
|
} else if (notification && notification.type === 'follow') {
|
|
return '#fa-user-plus'
|
|
}
|
|
return '#fa-star'
|
|
}
|
|
}
|
|
}
|
|
</script> |