File size: 1,663 Bytes
2d8be8f | 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 | <script>
import { getCurrentWebviewWindow } from '@tauri-apps/api/webviewWindow'
import { Channel, invoke } from '@tauri-apps/api/core'
import { onMount, onDestroy } from 'svelte'
let { onMessage } = $props()
let unlisten
const webviewWindow = getCurrentWebviewWindow()
onMount(async () => {
unlisten = await webviewWindow.listen('rust-event', onMessage)
})
onDestroy(() => {
if (unlisten) {
unlisten()
}
})
function log() {
invoke('log_operation', {
event: 'tauri-click',
payload: 'this payload is optional because we used Option in Rust'
})
}
function performRequest() {
invoke('perform_request', {
endpoint: 'dummy endpoint arg',
body: {
id: 5,
name: 'test'
}
})
.then(onMessage)
.catch(onMessage)
}
function echo() {
invoke('echo', {
message: 'Tauri JSON request!'
})
.then(onMessage)
.catch(onMessage)
invoke('echo', [1, 2, 3]).then(onMessage).catch(onMessage)
}
function spam() {
const channel = new Channel()
channel.onmessage = onMessage
invoke('spam', { channel })
}
function emitEvent() {
webviewWindow.emit('js-event', 'this is the payload string')
}
</script>
<div>
<button class="btn" id="log" onclick={log}>Call Log API</button>
<button class="btn" id="request" onclick={performRequest}>
Call Request (async) API
</button>
<button class="btn" id="event" onclick={emitEvent}>
Send event to Rust
</button>
<button class="btn" id="request" onclick={echo}> Echo </button>
<button class="btn" id="request" onclick={spam}> Spam </button>
</div>
|