summaryrefslogtreecommitdiff
path: root/src/client/directives/particle.ts
blob: 1676e1182e01c2d04ae6bd634927b4069bae5f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Particle from '@client/components/particle.vue';
import { popup } from '@client/os';

export default {
	mounted(el, binding, vn) {
		// 明示的に false であればバインドしない
		if (binding.value === false) return;

		el.addEventListener('click', () => {
			const rect = el.getBoundingClientRect();

			const x = rect.left + (el.clientWidth / 2);
			const y = rect.top + (el.clientHeight / 2);

			popup(Particle, { x, y }, {}, 'end');
		});
	}
};