mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Merge pull request #1342 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
bc2b5ec641
3 changed files with 5 additions and 1 deletions
BIN
public/js/loops.js
vendored
BIN
public/js/loops.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -16,7 +16,7 @@
|
|||
</div>
|
||||
<div class="card-body">
|
||||
<p class="username font-weight-bolder lead d-flex justify-content-between"><a :href="loop.account.url">{{loop.account.acct}}</a> <a :href="loop.url">{{timestamp(loop)}}</a></p>
|
||||
<p class="small text-muted text-truncate" v-html="loop.content ? loop.content : 'Untitled'"></p>
|
||||
<p class="small text-muted text-truncate" v-html="getTitle(loop)"></p>
|
||||
<div class="small text-muted d-flex justify-content-between mb-0">
|
||||
<span>{{loop.favourites_count}} Likes</span>
|
||||
<span>{{loop.reblogs_count}} Shares</span>
|
||||
|
@ -108,6 +108,10 @@ export default {
|
|||
timestamp(loop) {
|
||||
let ts = new Date(loop.created_at);
|
||||
return ts.toLocaleDateString();
|
||||
},
|
||||
getTitle(loop) {
|
||||
let content = loop.content ? loop.content : 'Untitled';
|
||||
return content.trim();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue