misskey/src/client/directives/user-preview.ts

76 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-02-16 17:24:10 +00:00
import MkUserPreview from '../components/user-preview.vue';
export default {
bind(el: HTMLElement, binding, vn) {
const self = (el as any)._userPreviewDirective_ = {} as any;
2018-02-16 17:24:10 +00:00
self.user = binding.value;
2018-02-19 05:29:42 +00:00
self.tag = null;
2018-02-16 17:24:10 +00:00
self.showTimer = null;
self.hideTimer = null;
2020-02-19 15:38:26 +00:00
self.checkTimer = null;
2018-02-16 17:24:10 +00:00
self.close = () => {
2018-02-19 05:29:42 +00:00
if (self.tag) {
2020-02-19 15:38:26 +00:00
clearInterval(self.checkTimer);
2018-02-19 05:29:42 +00:00
self.tag.close();
self.tag = null;
2018-02-16 17:24:10 +00:00
}
};
const show = () => {
2020-01-29 21:23:34 +00:00
if (!document.body.contains(el)) return;
2018-02-19 05:29:42 +00:00
if (self.tag) return;
2018-02-18 13:16:36 +00:00
2018-02-19 05:29:42 +00:00
self.tag = new MkUserPreview({
2018-02-16 17:24:10 +00:00
parent: vn.context,
propsData: {
user: self.user,
source: el
2018-02-16 17:24:10 +00:00
}
}).$mount();
2018-02-18 13:16:36 +00:00
self.tag.$on('mouseover', () => {
2018-02-16 17:24:10 +00:00
clearTimeout(self.hideTimer);
});
2018-02-18 13:16:36 +00:00
self.tag.$on('mouseleave', () => {
2018-02-16 17:24:10 +00:00
clearTimeout(self.showTimer);
self.hideTimer = setTimeout(self.close, 500);
});
2018-02-18 13:16:36 +00:00
2020-02-19 21:38:19 +00:00
document.body.appendChild(self.tag.$el);
2020-02-19 15:38:26 +00:00
self.checkTimer = setInterval(() => {
2020-02-19 21:38:19 +00:00
if (!document.body.contains(el)) {
clearTimeout(self.showTimer);
clearTimeout(self.hideTimer);
self.close();
}
2020-02-19 15:38:26 +00:00
}, 1000);
2018-02-16 17:24:10 +00:00
};
el.addEventListener('mouseover', () => {
clearTimeout(self.showTimer);
clearTimeout(self.hideTimer);
self.showTimer = setTimeout(show, 500);
});
el.addEventListener('mouseleave', () => {
clearTimeout(self.showTimer);
clearTimeout(self.hideTimer);
self.hideTimer = setTimeout(self.close, 500);
});
2020-02-01 00:45:30 +00:00
el.addEventListener('click', () => {
clearTimeout(self.showTimer);
self.close();
});
2018-02-16 17:24:10 +00:00
},
2018-02-18 13:16:36 +00:00
2018-02-16 17:24:10 +00:00
unbind(el, binding, vn) {
2018-02-19 05:29:42 +00:00
const self = el._userPreviewDirective_;
2020-02-19 15:38:26 +00:00
clearInterval(self.checkTimer);
2018-02-16 17:24:10 +00:00
}
};