2019-05-20 20:07:11 +02:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
2020-02-11 22:01:59 +01:00
|
|
|
function getScrollContainer(el: Element | null): Element | null {
|
|
|
|
if (el == null || el.tagName === 'BODY') return null;
|
|
|
|
const style = window.getComputedStyle(el);
|
|
|
|
if (style.getPropertyValue('overflow') === 'auto') {
|
|
|
|
return el;
|
|
|
|
} else {
|
|
|
|
return getScrollContainer(el.parentElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getScrollPosition(el: Element | null): number {
|
|
|
|
const container = getScrollContainer(el);
|
|
|
|
return container == null ? window.scrollY : container.scrollTop;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onScrollTop(el, cb) {
|
|
|
|
const container = getScrollContainer(el) || window;
|
|
|
|
const onScroll = ev => {
|
|
|
|
if (!document.body.contains(el)) return;
|
|
|
|
const pos = getScrollPosition(el);
|
|
|
|
if (pos === 0) {
|
|
|
|
cb();
|
|
|
|
container.removeEventListener('scroll', onscroll);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
container.addEventListener('scroll', onScroll, { passive: true });
|
|
|
|
}
|
|
|
|
|
2020-02-16 12:54:25 +01:00
|
|
|
const SECOND_FETCH_LIMIT = 30;
|
|
|
|
|
2019-05-20 20:07:11 +02:00
|
|
|
export default (opts) => ({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: [],
|
2020-02-11 22:01:59 +01:00
|
|
|
queue: [],
|
2019-06-13 11:15:35 +02:00
|
|
|
offset: 0,
|
2019-05-20 20:07:11 +02:00
|
|
|
fetching: true,
|
|
|
|
moreFetching: false,
|
|
|
|
inited: false,
|
2020-02-09 14:00:38 +01:00
|
|
|
more: false,
|
|
|
|
backed: false,
|
2020-02-11 22:01:59 +01:00
|
|
|
isBackTop: false,
|
2019-05-20 20:07:11 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
empty(): boolean {
|
|
|
|
return this.items.length == 0 && !this.fetching && this.inited;
|
|
|
|
},
|
|
|
|
|
|
|
|
error(): boolean {
|
|
|
|
return !this.fetching && !this.inited;
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2019-05-20 20:07:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
pagination() {
|
|
|
|
this.init();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
opts.displayLimit = opts.displayLimit || 30;
|
|
|
|
this.init();
|
2020-02-11 22:01:59 +01:00
|
|
|
|
|
|
|
this.$on('hook:activated', () => {
|
|
|
|
this.isBackTop = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$on('hook:deactivated', () => {
|
|
|
|
this.isBackTop = window.scrollY === 0;
|
|
|
|
});
|
2019-05-20 20:07:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
updateItem(i, item) {
|
|
|
|
Vue.set((this as any).items, i, item);
|
|
|
|
},
|
|
|
|
|
|
|
|
reload() {
|
|
|
|
this.items = [];
|
|
|
|
this.init();
|
|
|
|
},
|
|
|
|
|
|
|
|
async init() {
|
|
|
|
this.fetching = true;
|
2020-01-29 20:37:25 +01:00
|
|
|
if (opts.before) opts.before(this);
|
2019-05-20 20:07:11 +02:00
|
|
|
let params = typeof this.pagination.params === 'function' ? this.pagination.params(true) : this.pagination.params;
|
|
|
|
if (params && params.then) params = await params;
|
2020-01-29 20:37:25 +01:00
|
|
|
const endpoint = typeof this.pagination.endpoint === 'function' ? this.pagination.endpoint() : this.pagination.endpoint;
|
|
|
|
await this.$root.api(endpoint, {
|
|
|
|
limit: this.pagination.noPaging ? (this.pagination.limit || 10) : (this.pagination.limit || 10) + 1,
|
2019-05-20 20:07:11 +02:00
|
|
|
...params
|
|
|
|
}).then(x => {
|
2020-01-29 20:37:25 +01:00
|
|
|
if (!this.pagination.noPaging && (x.length === (this.pagination.limit || 10) + 1)) {
|
2019-05-20 20:07:11 +02:00
|
|
|
x.pop();
|
|
|
|
this.items = x;
|
|
|
|
this.more = true;
|
|
|
|
} else {
|
|
|
|
this.items = x;
|
|
|
|
this.more = false;
|
|
|
|
}
|
2019-06-13 11:15:35 +02:00
|
|
|
this.offset = x.length;
|
2019-05-20 20:07:11 +02:00
|
|
|
this.inited = true;
|
|
|
|
this.fetching = false;
|
2020-01-29 20:37:25 +01:00
|
|
|
if (opts.after) opts.after(this, null);
|
2019-05-20 20:07:11 +02:00
|
|
|
}, e => {
|
|
|
|
this.fetching = false;
|
2020-01-29 20:37:25 +01:00
|
|
|
if (opts.after) opts.after(this, e);
|
2019-05-20 20:07:11 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async fetchMore() {
|
|
|
|
if (!this.more || this.moreFetching || this.items.length === 0) return;
|
|
|
|
this.moreFetching = true;
|
2020-02-09 14:00:38 +01:00
|
|
|
this.backed = true;
|
2019-05-20 20:07:11 +02:00
|
|
|
let params = typeof this.pagination.params === 'function' ? this.pagination.params(false) : this.pagination.params;
|
|
|
|
if (params && params.then) params = await params;
|
2020-01-29 20:37:25 +01:00
|
|
|
const endpoint = typeof this.pagination.endpoint === 'function' ? this.pagination.endpoint() : this.pagination.endpoint;
|
|
|
|
await this.$root.api(endpoint, {
|
2020-02-16 12:54:25 +01:00
|
|
|
limit: SECOND_FETCH_LIMIT + 1,
|
2020-01-29 20:37:25 +01:00
|
|
|
...(this.pagination.offsetMode ? {
|
2019-06-13 11:15:35 +02:00
|
|
|
offset: this.offset,
|
|
|
|
} : {
|
|
|
|
untilId: this.items[this.items.length - 1].id,
|
|
|
|
}),
|
2019-05-20 20:07:11 +02:00
|
|
|
...params
|
|
|
|
}).then(x => {
|
2020-02-16 12:54:25 +01:00
|
|
|
if (x.length === SECOND_FETCH_LIMIT + 1) {
|
2019-05-20 20:07:11 +02:00
|
|
|
x.pop();
|
|
|
|
this.items = this.items.concat(x);
|
|
|
|
this.more = true;
|
|
|
|
} else {
|
|
|
|
this.items = this.items.concat(x);
|
|
|
|
this.more = false;
|
|
|
|
}
|
2019-06-13 11:15:35 +02:00
|
|
|
this.offset += x.length;
|
2019-05-20 20:07:11 +02:00
|
|
|
this.moreFetching = false;
|
|
|
|
}, e => {
|
|
|
|
this.moreFetching = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-02-11 22:01:59 +01:00
|
|
|
prepend(item) {
|
|
|
|
const isTop = this.isBackTop || (document.body.contains(this.$el) && (getScrollPosition(this.$el) === 0));
|
2019-05-20 20:07:11 +02:00
|
|
|
|
2020-02-11 22:01:59 +01:00
|
|
|
if (isTop) {
|
|
|
|
// Prepend the item
|
|
|
|
this.items.unshift(item);
|
2019-05-20 20:07:11 +02:00
|
|
|
|
2020-02-11 18:52:43 +01:00
|
|
|
// オーバーフローしたら古いアイテムは捨てる
|
2019-05-20 20:07:11 +02:00
|
|
|
if (this.items.length >= opts.displayLimit) {
|
|
|
|
this.items = this.items.slice(0, opts.displayLimit);
|
|
|
|
this.more = true;
|
|
|
|
}
|
2020-02-11 22:01:59 +01:00
|
|
|
} else {
|
|
|
|
this.queue.push(item);
|
|
|
|
onScrollTop(this.$el, () => {
|
|
|
|
for (const item of this.queue) {
|
|
|
|
this.prepend(item);
|
|
|
|
}
|
|
|
|
this.queue = [];
|
|
|
|
});
|
2019-05-20 20:07:11 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
append(item) {
|
|
|
|
this.items.push(item);
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
remove(find) {
|
|
|
|
this.items = this.items.filter(x => !find(x));
|
2019-05-20 20:07:11 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|