2018-02-16 18:19:16 -06:00
|
|
|
<template>
|
|
|
|
<mk-ui>
|
2018-02-25 09:39:05 -06:00
|
|
|
<span slot="header">%fa:search% {{ q }}</span>
|
2018-02-16 18:19:16 -06:00
|
|
|
<main v-if="!fetching">
|
2018-04-07 12:30:37 -05:00
|
|
|
<mk-notes :class="$style.notes" :notes="notes">
|
2018-05-20 06:26:38 -05:00
|
|
|
<span v-if="notes.length == 0">{{ '%i18n:@empty%'.replace('{}', q) }}</span>
|
2018-02-25 09:39:05 -06:00
|
|
|
<button v-if="existMore" @click="more" :disabled="fetching" slot="tail">
|
2018-04-14 11:04:40 -05:00
|
|
|
<span v-if="!fetching">%i18n:@load-more%</span>
|
2018-02-16 18:19:16 -06:00
|
|
|
<span v-if="fetching">%i18n:common.loading%<mk-ellipsis/></span>
|
|
|
|
</button>
|
2018-04-07 12:30:37 -05:00
|
|
|
</mk-notes>
|
2018-02-16 18:19:16 -06:00
|
|
|
</main>
|
|
|
|
</mk-ui>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Progress from '../../../common/scripts/loading';
|
|
|
|
|
2018-02-25 09:39:05 -06:00
|
|
|
const limit = 20;
|
2018-02-16 18:19:16 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
2018-02-25 09:39:05 -06:00
|
|
|
existMore: false,
|
2018-04-07 12:30:37 -05:00
|
|
|
notes: [],
|
2018-02-16 18:19:16 -06:00
|
|
|
offset: 0
|
|
|
|
};
|
|
|
|
},
|
2018-02-25 09:39:05 -06:00
|
|
|
watch: {
|
|
|
|
$route: 'fetch'
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
q(): string {
|
|
|
|
return this.$route.query.q;
|
|
|
|
}
|
|
|
|
},
|
2018-02-16 18:19:16 -06:00
|
|
|
mounted() {
|
2018-04-14 11:04:40 -05:00
|
|
|
document.title = `%i18n:@search%: ${this.q} | Misskey`;
|
2018-02-16 18:19:16 -06:00
|
|
|
|
2018-02-25 09:39:05 -06:00
|
|
|
this.fetch();
|
2018-02-16 18:19:16 -06:00
|
|
|
},
|
|
|
|
methods: {
|
2018-02-25 09:39:05 -06:00
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
|
|
|
Progress.start();
|
|
|
|
|
2018-07-04 06:44:13 -05:00
|
|
|
(this as any).api('notes/search', {
|
|
|
|
limit: limit + 1,
|
|
|
|
query: this.q
|
|
|
|
}).then(notes => {
|
2018-04-07 12:30:37 -05:00
|
|
|
if (notes.length == limit + 1) {
|
|
|
|
notes.pop();
|
2018-02-25 09:39:05 -06:00
|
|
|
this.existMore = true;
|
|
|
|
}
|
2018-04-07 12:30:37 -05:00
|
|
|
this.notes = notes;
|
2018-02-25 09:39:05 -06:00
|
|
|
this.fetching = false;
|
|
|
|
Progress.done();
|
|
|
|
});
|
|
|
|
},
|
2018-02-16 18:19:16 -06:00
|
|
|
more() {
|
|
|
|
this.offset += limit;
|
2018-07-04 06:44:13 -05:00
|
|
|
(this as any).api('notes/search', {
|
2018-02-25 09:39:05 -06:00
|
|
|
limit: limit + 1,
|
2018-07-04 06:44:13 -05:00
|
|
|
offset: this.offset,
|
|
|
|
query: this.q
|
|
|
|
}).then(notes => {
|
2018-04-07 12:30:37 -05:00
|
|
|
if (notes.length == limit + 1) {
|
|
|
|
notes.pop();
|
2018-02-25 09:39:05 -06:00
|
|
|
} else {
|
|
|
|
this.existMore = false;
|
|
|
|
}
|
2018-04-07 12:30:37 -05:00
|
|
|
this.notes = this.notes.concat(notes);
|
2018-02-25 09:39:05 -06:00
|
|
|
});
|
2018-02-16 18:19:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" module>
|
2018-04-07 12:30:37 -05:00
|
|
|
.notes
|
2018-02-16 18:19:16 -06:00
|
|
|
margin 8px auto
|
|
|
|
max-width 500px
|
|
|
|
width calc(100% - 16px)
|
|
|
|
background #fff
|
|
|
|
border-radius 8px
|
2018-04-28 18:51:17 -05:00
|
|
|
box-shadow 0 0 0 1px rgba(#000, 0.2)
|
2018-02-16 18:19:16 -06:00
|
|
|
|
|
|
|
@media (min-width 500px)
|
|
|
|
margin 16px auto
|
|
|
|
width calc(100% - 32px)
|
|
|
|
</style>
|