2018-02-07 04:54:49 +00:00
|
|
|
<SearchResult href="/accounts/{{account.id}}">
|
|
|
|
<div class="search-result-account">
|
|
|
|
<Avatar :account size="small" className="search-result-account-avatar"/>
|
|
|
|
<div class="search-result-account-name">
|
2018-02-22 02:39:53 +00:00
|
|
|
{{account.display_name || account.acct}}
|
2018-02-07 04:54:49 +00:00
|
|
|
</div>
|
|
|
|
<div class="search-result-account-username">
|
|
|
|
{{'@' + account.acct}}
|
|
|
|
</div>
|
2018-04-28 21:19:39 +00:00
|
|
|
{{#if actions && actions.length}}
|
|
|
|
<div class="search-result-account-buttons">
|
|
|
|
{{#each actions as action}}
|
|
|
|
<IconButton
|
2018-04-30 00:45:03 +00:00
|
|
|
label={{action.label}}
|
2018-04-28 21:19:39 +00:00
|
|
|
on:click="onButtonClick(event, action, account.id)"
|
2018-04-30 00:45:03 +00:00
|
|
|
href={{action.icon}}
|
2018-04-28 21:19:39 +00:00
|
|
|
big="true"
|
|
|
|
/>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2018-02-07 04:54:49 +00:00
|
|
|
</div>
|
|
|
|
</SearchResult>
|
|
|
|
<style>
|
|
|
|
.search-result-account {
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
2018-04-28 21:19:39 +00:00
|
|
|
"avatar name buttons"
|
|
|
|
"avatar username buttons";
|
2018-02-07 04:54:49 +00:00
|
|
|
grid-column-gap: 20px;
|
2018-04-28 21:19:39 +00:00
|
|
|
grid-template-columns: max-content 1fr max-content;
|
2018-02-07 04:54:49 +00:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
:global(.search-result-account-avatar) {
|
|
|
|
grid-area: avatar;
|
|
|
|
}
|
|
|
|
.search-result-account-name {
|
|
|
|
grid-area: name;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
.search-result-account-username {
|
|
|
|
grid-area: username;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: var(--deemphasized-text-color);
|
|
|
|
}
|
2018-04-28 21:19:39 +00:00
|
|
|
.search-result-account-buttons {
|
|
|
|
grid-area: buttons;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
:global(.search-result-account-buttons .icon-button) {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
:global(.search-result-account-buttons .icon-button:last-child) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2018-02-07 05:20:33 +00:00
|
|
|
@media (max-width: 767px) {
|
|
|
|
.search-result-account {
|
|
|
|
grid-column-gap: 10px;
|
|
|
|
}
|
2018-04-28 21:19:39 +00:00
|
|
|
:global(.search-result-account-buttons .icon-button) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2018-02-07 05:20:33 +00:00
|
|
|
}
|
2018-02-07 04:54:49 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
2018-02-09 01:56:20 +00:00
|
|
|
import Avatar from '../Avatar.html'
|
2018-02-07 04:54:49 +00:00
|
|
|
import SearchResult from './SearchResult.html'
|
2018-04-28 21:19:39 +00:00
|
|
|
import IconButton from '../IconButton.html'
|
|
|
|
|
2018-02-07 04:54:49 +00:00
|
|
|
export default {
|
2018-04-30 16:57:49 +00:00
|
|
|
data: () => ({
|
|
|
|
actions: void 0
|
|
|
|
}),
|
2018-04-28 21:19:39 +00:00
|
|
|
methods: {
|
|
|
|
onButtonClick (event, action, accountId) {
|
|
|
|
event.preventDefault()
|
|
|
|
event.stopPropagation()
|
|
|
|
this.fire('click', {
|
|
|
|
action,
|
|
|
|
accountId
|
|
|
|
})
|
|
|
|
}
|
2018-04-30 16:57:49 +00:00
|
|
|
},
|
|
|
|
components: {
|
|
|
|
Avatar,
|
|
|
|
SearchResult,
|
|
|
|
IconButton
|
2018-02-07 04:54:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|