50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { invoke } from '@tauri-apps/api/core';
|
|
import { listen } from '@tauri-apps/api/event';
|
|
import { type as osType } from '@tauri-apps/plugin-os';
|
|
|
|
export interface AuthRequest {
|
|
authUrl: string;
|
|
}
|
|
|
|
export interface AuthResponse {
|
|
redirectUrl: string;
|
|
}
|
|
|
|
export async function authWithSafari(request: AuthRequest): Promise<AuthResponse> {
|
|
const OS_TYPE = osType();
|
|
if (OS_TYPE === 'ios') {
|
|
const result = await invoke<AuthResponse>('plugin:native-bridge|auth_with_safari', {
|
|
payload: request,
|
|
});
|
|
return result;
|
|
} else if (OS_TYPE === 'macos') {
|
|
return new Promise<AuthResponse>(async (resolve, reject) => {
|
|
const unlistenComplete = await listen<AuthResponse>('safari-auth-complete', ({ payload }) => {
|
|
cleanup();
|
|
resolve(payload);
|
|
});
|
|
|
|
function cleanup() {
|
|
unlistenComplete();
|
|
}
|
|
|
|
try {
|
|
await invoke<AuthResponse>('auth_with_safari', { payload: request });
|
|
} catch (err) {
|
|
cleanup();
|
|
reject(err);
|
|
}
|
|
});
|
|
} else {
|
|
throw new Error('Unsupported OS type');
|
|
}
|
|
}
|
|
|
|
export async function authWithCustomTab(request: AuthRequest): Promise<AuthResponse> {
|
|
const result = await invoke<AuthResponse>('plugin:native-bridge|auth_with_custom_tab', {
|
|
payload: request,
|
|
});
|
|
|
|
return result;
|
|
}
|