Implement loading more statuses when searching
This commit is contained in:
parent
425919a0d2
commit
3117623f30
@ -30,7 +30,11 @@ const Search = {
|
|||||||
userIds: [],
|
userIds: [],
|
||||||
statuses: [],
|
statuses: [],
|
||||||
hashtags: [],
|
hashtags: [],
|
||||||
currenResultTab: 'statuses'
|
currenResultTab: 'statuses',
|
||||||
|
|
||||||
|
statusesOffset: 0,
|
||||||
|
lastStatusFetchCount: 0,
|
||||||
|
lastQuery: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -67,18 +71,26 @@ const Search = {
|
|||||||
|
|
||||||
this.loading = true
|
this.loading = true
|
||||||
this.userIds = []
|
this.userIds = []
|
||||||
this.statuses = []
|
|
||||||
this.hashtags = []
|
this.hashtags = []
|
||||||
this.$refs.searchInput.blur()
|
this.$refs.searchInput.blur()
|
||||||
|
if (this.lastQuery !== query) {
|
||||||
|
this.statuses = []
|
||||||
|
this.statusesOffset = 0
|
||||||
|
this.lastStatusFetchCount = 0
|
||||||
|
}
|
||||||
|
|
||||||
this.$store.dispatch('search', { q: query, resolve: true })
|
this.$store.dispatch('search', { q: query, resolve: true, offset: this.statusesOffset })
|
||||||
.then(data => {
|
.then(data => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.userIds = map(data.accounts, 'id')
|
this.userIds = map(data.accounts, 'id')
|
||||||
this.statuses = data.statuses
|
this.statuses = this.statuses.concat(data.statuses)
|
||||||
this.hashtags = data.hashtags
|
this.hashtags = data.hashtags
|
||||||
this.currenResultTab = this.getActiveTab()
|
this.currenResultTab = this.getActiveTab()
|
||||||
this.loaded = true
|
this.loaded = true
|
||||||
|
|
||||||
|
this.statusesOffset += data.statuses.length
|
||||||
|
this.lastStatusFetchCount = data.statuses.length
|
||||||
|
this.lastQuery = query
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
resultCount (tabName) {
|
resultCount (tabName) {
|
||||||
|
@ -55,12 +55,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div v-if="currenResultTab === 'statuses'">
|
<div v-if="currenResultTab === 'statuses'">
|
||||||
<div
|
|
||||||
v-if="visibleStatuses.length === 0 && !loading && loaded"
|
|
||||||
class="search-result-heading"
|
|
||||||
>
|
|
||||||
<h4>{{ $t('search.no_results') }}</h4>
|
|
||||||
</div>
|
|
||||||
<Status
|
<Status
|
||||||
v-for="status in visibleStatuses"
|
v-for="status in visibleStatuses"
|
||||||
:key="status.id"
|
:key="status.id"
|
||||||
@ -71,6 +65,33 @@
|
|||||||
:statusoid="status"
|
:statusoid="status"
|
||||||
:no-heading="false"
|
:no-heading="false"
|
||||||
/>
|
/>
|
||||||
|
<button
|
||||||
|
v-if="!loading && loaded && lastStatusFetchCount > 0"
|
||||||
|
class="more-statuses-button button-unstyled -link -fullwidth"
|
||||||
|
@click.prevent="search(searchTerm)"
|
||||||
|
>
|
||||||
|
<div class="new-status-notification text-center">
|
||||||
|
{{ $t('search.load_more') }}
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
<div
|
||||||
|
v-else-if="loading && statusesOffset > 0"
|
||||||
|
class="text-center loading-icon"
|
||||||
|
>
|
||||||
|
<FAIcon
|
||||||
|
icon="circle-notch"
|
||||||
|
spin
|
||||||
|
size="lg"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="(visibleStatuses.length === 0 || lastStatusFetchCount === 0) && !loading && loaded"
|
||||||
|
class="search-result-heading"
|
||||||
|
>
|
||||||
|
<h4>
|
||||||
|
{{ $t('search.no_results') }}
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="currenResultTab === 'people'">
|
<div v-else-if="currenResultTab === 'people'">
|
||||||
<div
|
<div
|
||||||
@ -208,6 +229,11 @@
|
|||||||
color: $fallback--text;
|
color: $fallback--text;
|
||||||
color: var(--text, $fallback--text);
|
color: var(--text, $fallback--text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.more-statuses-button {
|
||||||
|
height: 3.5em;
|
||||||
|
line-height: 3.5em;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -827,7 +827,8 @@
|
|||||||
"hashtags": "Hashtags",
|
"hashtags": "Hashtags",
|
||||||
"person_talking": "{count} person talking",
|
"person_talking": "{count} person talking",
|
||||||
"people_talking": "{count} people talking",
|
"people_talking": "{count} people talking",
|
||||||
"no_results": "No results"
|
"no_results": "No results",
|
||||||
|
"load_more": "Load more results"
|
||||||
},
|
},
|
||||||
"password_reset": {
|
"password_reset": {
|
||||||
"forgot_password": "Forgot password?",
|
"forgot_password": "Forgot password?",
|
||||||
|
Loading…
Reference in New Issue
Block a user