mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-23 18:01:08 +01:00
Hooked up test call from frontend!
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import { invoke } from '@tauri-apps/api';
|
||||
import { StrictMode } from 'react';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
import { attachConsole } from 'tauri-plugin-log-api';
|
||||
@@ -10,6 +11,20 @@ import { setAppearanceOnDocument } from './lib/theme/window';
|
||||
import { appWindow } from '@tauri-apps/api/window';
|
||||
import { type } from '@tauri-apps/api/os';
|
||||
|
||||
try {
|
||||
const services: any = await invoke('grpc_reflect', { endpoint: 'http://localhost:50051' });
|
||||
console.log('SERVICES', services);
|
||||
const response = await invoke('grpc_call_unary', {
|
||||
endpoint: 'http://localhost:50051',
|
||||
service: services[0].name,
|
||||
method: services[0].methods[0].name,
|
||||
message: '{"name": "Greg"}',
|
||||
});
|
||||
console.log('RESPONSE', response);
|
||||
} catch (err) {
|
||||
console.log('ERROR', err);
|
||||
}
|
||||
|
||||
// Hide decorations here because it doesn't work in Rust for some reason (bug?)
|
||||
const osType = await type();
|
||||
if (osType !== 'Darwin') {
|
||||
|
||||
Reference in New Issue
Block a user