mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-23 16:58:27 +01:00
182c5f6e3d
This implements the behavior for the context menu recently added to the directories. Open New Block simply opens the file in a preview in a new block. Delete files will delete the selected file, but it does not trigger a rerender at this time. To see the change, you must navigate to a different directory and then return. This will be fixed in a future update.
149 lines
5.4 KiB
TypeScript
149 lines
5.4 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// generated by cmd/generate/main-generate.go
|
|
|
|
import * as WOS from "./wos";
|
|
|
|
// blockservice.BlockService (block)
|
|
class BlockServiceType {
|
|
GetControllerStatus(arg2: string): Promise<BlockControllerRuntimeStatus> {
|
|
return WOS.callBackendService("block", "GetControllerStatus", Array.from(arguments))
|
|
}
|
|
SaveTerminalState(arg2: string, arg3: string, arg4: string, arg5: number): Promise<void> {
|
|
return WOS.callBackendService("block", "SaveTerminalState", Array.from(arguments))
|
|
}
|
|
|
|
// send command to block
|
|
SendCommand(cmd: string, arg3: BlockCommand): Promise<void> {
|
|
return WOS.callBackendService("block", "SendCommand", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const BlockService = new BlockServiceType()
|
|
|
|
// clientservice.ClientService (client)
|
|
class ClientServiceType {
|
|
FocusWindow(arg2: string): Promise<void> {
|
|
return WOS.callBackendService("client", "FocusWindow", Array.from(arguments))
|
|
}
|
|
GetClientData(): Promise<Client> {
|
|
return WOS.callBackendService("client", "GetClientData", Array.from(arguments))
|
|
}
|
|
GetTab(arg1: string): Promise<Tab> {
|
|
return WOS.callBackendService("client", "GetTab", Array.from(arguments))
|
|
}
|
|
GetWindow(arg1: string): Promise<WaveWindow> {
|
|
return WOS.callBackendService("client", "GetWindow", Array.from(arguments))
|
|
}
|
|
GetWorkspace(arg1: string): Promise<Workspace> {
|
|
return WOS.callBackendService("client", "GetWorkspace", Array.from(arguments))
|
|
}
|
|
MakeWindow(): Promise<WaveWindow> {
|
|
return WOS.callBackendService("client", "MakeWindow", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const ClientService = new ClientServiceType()
|
|
|
|
// fileservice.FileService (file)
|
|
class FileServiceType {
|
|
AddWidget(arg1: WidgetsConfigType): Promise<void> {
|
|
return WOS.callBackendService("file", "AddWidget", Array.from(arguments))
|
|
}
|
|
DeleteFile(arg1: string): Promise<void> {
|
|
return WOS.callBackendService("file", "DeleteFile", Array.from(arguments))
|
|
}
|
|
GetSettingsConfig(): Promise<any> {
|
|
return WOS.callBackendService("file", "GetSettingsConfig", Array.from(arguments))
|
|
}
|
|
GetWaveFile(arg1: string, arg2: string): Promise<any> {
|
|
return WOS.callBackendService("file", "GetWaveFile", Array.from(arguments))
|
|
}
|
|
ReadFile(arg1: string): Promise<FullFile> {
|
|
return WOS.callBackendService("file", "ReadFile", Array.from(arguments))
|
|
}
|
|
RemoveWidget(arg1: number): Promise<void> {
|
|
return WOS.callBackendService("file", "RemoveWidget", Array.from(arguments))
|
|
}
|
|
StatFile(arg1: string): Promise<FileInfo> {
|
|
return WOS.callBackendService("file", "StatFile", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const FileService = new FileServiceType()
|
|
|
|
// objectservice.ObjectService (object)
|
|
class ObjectServiceType {
|
|
// @returns tabId (and object updates)
|
|
AddTabToWorkspace(tabName: string, activateTab: boolean): Promise<string> {
|
|
return WOS.callBackendService("object", "AddTabToWorkspace", Array.from(arguments))
|
|
}
|
|
|
|
// @returns blockId (and object updates)
|
|
CreateBlock(blockDef: BlockDef, rtOpts: RuntimeOpts): Promise<string> {
|
|
return WOS.callBackendService("object", "CreateBlock", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
DeleteBlock(blockId: string): Promise<void> {
|
|
return WOS.callBackendService("object", "DeleteBlock", Array.from(arguments))
|
|
}
|
|
|
|
// get wave object by oref
|
|
GetObject(oref: string): Promise<WaveObj> {
|
|
return WOS.callBackendService("object", "GetObject", Array.from(arguments))
|
|
}
|
|
|
|
// @returns objects
|
|
GetObjects(orefs: string[]): Promise<WaveObj[]> {
|
|
return WOS.callBackendService("object", "GetObjects", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
SetActiveTab(tabId: string): Promise<void> {
|
|
return WOS.callBackendService("object", "SetActiveTab", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
UpdateObject(waveObj: WaveObj, returnUpdates: boolean): Promise<void> {
|
|
return WOS.callBackendService("object", "UpdateObject", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
UpdateObjectMeta(oref: string, meta: MetaType): Promise<void> {
|
|
return WOS.callBackendService("object", "UpdateObjectMeta", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
UpdateTabName(tabId: string, name: string): Promise<void> {
|
|
return WOS.callBackendService("object", "UpdateTabName", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
UpdateWorkspaceTabIds(workspaceId: string, tabIds: string[]): Promise<void> {
|
|
return WOS.callBackendService("object", "UpdateWorkspaceTabIds", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const ObjectService = new ObjectServiceType()
|
|
|
|
// windowservice.WindowService (window)
|
|
class WindowServiceType {
|
|
// @returns object updates
|
|
CloseTab(arg3: string): Promise<void> {
|
|
return WOS.callBackendService("window", "CloseTab", Array.from(arguments))
|
|
}
|
|
CloseWindow(arg2: string): Promise<void> {
|
|
return WOS.callBackendService("window", "CloseWindow", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
SetWindowPosAndSize(arg2: string, arg3: Point, arg4: WinSize): Promise<void> {
|
|
return WOS.callBackendService("window", "SetWindowPosAndSize", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const WindowService = new WindowServiceType()
|
|
|