This commit is contained in:
syuilo⭐️ 2017-03-13 06:04:15 +09:00 committed by GitHub
parent 6cc6e0e6f2
commit 84c4c1d9f6

View file

@ -4,8 +4,8 @@
</div>
<div class="main" if={ !fetching }>
<button class="read-more" if={ p.reply_to && p.reply_to.reply_to_id && context == null } onclick={ loadContext } disabled={ loadingContext }>
<i class="fa fa-ellipsis-v" if={ !loadingContext }></i>
<i class="fa fa-spinner fa-pulse" if={ loadingContext }></i>
<i class="fa fa-ellipsis-v" if={ !contextFetching }></i>
<i class="fa fa-spinner fa-pulse" if={ contextFetching }></i>
</button>
<div class="context">
<virtual each={ post in context }>
@ -441,14 +441,14 @@
};
this.loadContext = () => {
this.loadingContext = true;
this.contextFetching = true;
// Fetch context
this.api('posts/context', {
post_id: this.p.reply_to_id
}).then(context => {
this.update({
loadContext: false,
contextFetching: false,
context: context.reverse()
});
});