summaryrefslogtreecommitdiff
path: root/src/client/directives/user-preview.ts
blob: 9c3249d578dfc71b77bf16509ce267df3026f2b8 (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
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.close = () => {
			if (self.tag) {
				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);
		};

		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_;
		clearTimeout(self.showTimer);
		clearTimeout(self.hideTimer);
		self.close();
	}
};