23 lines
537 B
Svelte
23 lines
537 B
Svelte
<script lang="ts">
|
|
import { useStore } from '$lib/store';
|
|
import zoom from '$lib/actions/zoom';
|
|
|
|
const { transformStore, d3Store, selectionKeyPressedStore, selectionRectModeStore } = useStore();
|
|
|
|
$: selecting = $selectionKeyPressedStore || $selectionRectModeStore === 'user';
|
|
</script>
|
|
|
|
<div class="react-flow__zoom" use:zoom={{ transformStore, d3Store, selecting }}>
|
|
<slot />
|
|
</div>
|
|
|
|
<style>
|
|
.react-flow__zoom {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 4;
|
|
}
|
|
</style> |