mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
import { promisified } from './tauri'
|
|
|
|
export interface OpenDialogOptions {
|
|
filter?: string
|
|
defaultPath?: string
|
|
multiple?: boolean
|
|
directory?: boolean
|
|
}
|
|
|
|
export type SaveDialogOptions = Pick<OpenDialogOptions, 'filter' | 'defaultPath'>
|
|
|
|
/**
|
|
* @name openDialog
|
|
* @description Open a file/directory selection dialog
|
|
* @param [options]
|
|
* @param [options.filter]
|
|
* @param [options.defaultPath]
|
|
* @param [options.multiple=false]
|
|
* @param [options.directory=false]
|
|
* @returns promise resolving to the select path(s)
|
|
*/
|
|
async function open(options: OpenDialogOptions = {}): Promise<String | String[]> {
|
|
if (typeof options === 'object') {
|
|
Object.freeze(options)
|
|
}
|
|
|
|
return await promisified({
|
|
cmd: 'openDialog',
|
|
options
|
|
})
|
|
}
|
|
|
|
/**
|
|
* @name save
|
|
* @description Open a file/directory save dialog
|
|
* @param [options]
|
|
* @param [options.filter]
|
|
* @param [options.defaultPath]
|
|
* @returns promise resolving to the select path
|
|
*/
|
|
async function save(options: SaveDialogOptions = {}): Promise<String> {
|
|
if (typeof options === 'object') {
|
|
Object.freeze(options)
|
|
}
|
|
|
|
return await promisified({
|
|
cmd: 'saveDialog',
|
|
options
|
|
})
|
|
}
|
|
|
|
export {
|
|
open,
|
|
save
|
|
}
|