summaryrefslogtreecommitdiff
path: root/src/client/directives/user-preview.ts
blob: 4db0d67c4a532986f4fae1f67505766306add39d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import MkUserPreview from '../components/user-preview.vue';

export default {
	bind(el: HTMLElement, binding, vn) {
		const self = (el as any)._userPreviewDirective_ = {} as any;

		self.user = binding.value;
		self.tag = null;
		self.showTimer = null;
		self.hideTimer = null;
		self.checkTimer = null;

		self.close = () => {
			if (self.tag) {
				clearInterval(self.checkTimer);
				self.tag.close();
				self.tag = null;
			}
		};

		const show = () => {
			if (!document.body.contains(el)) return;
			if (self.tag) return;

			self.tag = new MkUserPreview({
				parent: vn.context,
				propsData: {
					user: self.user,
					source: el
				}
			}).$mount();

			self.tag.$on('mouseover', () => {
				clearTimeout(self.hideTimer);
			});

			self.tag.$on('mouseleave', () => {
				clearTimeout(self.showTimer);
				self.hideTimer = setTimeout(self.close, 500);
			});

			document.body.appendChild(self.tag.$el);

			self.checkTimer = setInterval(() => {
				if (!document.body.contains(el)) {
					clearTimeout(self.showTimer);
					clearTimeout(self.hideTimer);
					self.close();
				}
			}, 1000);
		};

		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);
		});

		el.addEventListener('click', () => {
			clearTimeout(self.showTimer);
			self.close();
		});
	},

	unbind(el, binding, vn) {
		const self = el._userPreviewDirective_;
		clearInterval(self.checkTimer);
	}
};