blob: e98b74086b30b208c3f349fc527f7ca6c3a0d736 (
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
|
<script>
import { browser } from '$app/env';
import { maxSize } from '$lib/config';
import { sensor } from '$lib/stores/widgets';
export let x;
export let y;
const kSensorSize = 2;
let left;
let right;
let top;
let bottom;
let timer;
const fetchItems = function fetchItems( left, top, right, bottom ) {
clearTimeout(timer);
timer = setTimeout(() => {
sensor.set({ left, top, right, bottom });
}, 50);
}
$: {
if (browser) {
left = x - window.screen.width * kSensorSize;
top = y - window.screen.height * kSensorSize;
right = x + window.screen.width * kSensorSize;
bottom = y + window.screen.height * kSensorSize;
fetchItems(left, top, right, bottom);
}
}
</script>
|