mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-07 19:28:44 +01:00
04c4f0a203
New context menu options are available in the directory preview to create and rename files and directories It's missing three pieces of functionality, none of which are a regression: - Editing or creating an entry does not update the focused index. Focus index right now is pretty dumb, it doesn't factor in the column sorting so if you change that, the selected item will change to whatever is now at that index. We should update this so we use the actual file name to determine which element to focus and let the table determine which index to then highlight given the current sorting algo - Open in native preview should not be an option on remote connections with the exception of WSL, where it should resolve the file in the Windows filesystem, rather than the WSL one - We should catch CRUD errors in the dir preview and display a popup
205 lines
7.8 KiB
TypeScript
205 lines
7.8 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// generated by cmd/generate/main-generatets.go
|
|
|
|
import * as WOS from "./wos";
|
|
|
|
// blockservice.BlockService (block)
|
|
class BlockServiceType {
|
|
GetControllerStatus(arg2: string): Promise<BlockControllerRuntimeStatus> {
|
|
return WOS.callBackendService("block", "GetControllerStatus", Array.from(arguments))
|
|
}
|
|
|
|
// save the terminal state to a blockfile
|
|
SaveTerminalState(blockId: string, state: string, stateType: string, ptyOffset: number, termSize: TermSize): Promise<void> {
|
|
return WOS.callBackendService("block", "SaveTerminalState", Array.from(arguments))
|
|
}
|
|
SaveWaveAiData(arg2: string, arg3: OpenAIPromptMessageType[]): Promise<void> {
|
|
return WOS.callBackendService("block", "SaveWaveAiData", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const BlockService = new BlockServiceType();
|
|
|
|
// clientservice.ClientService (client)
|
|
class ClientServiceType {
|
|
// @returns object updates
|
|
AgreeTos(): Promise<void> {
|
|
return WOS.callBackendService("client", "AgreeTos", Array.from(arguments))
|
|
}
|
|
FocusWindow(arg2: string): Promise<void> {
|
|
return WOS.callBackendService("client", "FocusWindow", Array.from(arguments))
|
|
}
|
|
GetAllConnStatus(): Promise<ConnStatus[]> {
|
|
return WOS.callBackendService("client", "GetAllConnStatus", 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))
|
|
}
|
|
TelemetryUpdate(arg2: boolean): Promise<void> {
|
|
return WOS.callBackendService("client", "TelemetryUpdate", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const ClientService = new ClientServiceType();
|
|
|
|
// fileservice.FileService (file)
|
|
class FileServiceType {
|
|
// delete file
|
|
DeleteFile(connection: string, path: string): Promise<void> {
|
|
return WOS.callBackendService("file", "DeleteFile", Array.from(arguments))
|
|
}
|
|
GetFullConfig(): Promise<FullConfigType> {
|
|
return WOS.callBackendService("file", "GetFullConfig", Array.from(arguments))
|
|
}
|
|
GetWaveFile(arg1: string, arg2: string): Promise<any> {
|
|
return WOS.callBackendService("file", "GetWaveFile", Array.from(arguments))
|
|
}
|
|
Mkdir(arg1: string, arg2: string): Promise<void> {
|
|
return WOS.callBackendService("file", "Mkdir", Array.from(arguments))
|
|
}
|
|
|
|
// read file
|
|
ReadFile(connection: string, path: string): Promise<FullFile> {
|
|
return WOS.callBackendService("file", "ReadFile", Array.from(arguments))
|
|
}
|
|
Rename(arg1: string, arg2: string, arg3: string): Promise<void> {
|
|
return WOS.callBackendService("file", "Rename", Array.from(arguments))
|
|
}
|
|
|
|
// save file
|
|
SaveFile(connection: string, path: string, data64: string): Promise<void> {
|
|
return WOS.callBackendService("file", "SaveFile", Array.from(arguments))
|
|
}
|
|
|
|
// get file info
|
|
StatFile(connection: string, path: string): Promise<FileInfo> {
|
|
return WOS.callBackendService("file", "StatFile", Array.from(arguments))
|
|
}
|
|
TouchFile(arg1: string, arg2: string): Promise<void> {
|
|
return WOS.callBackendService("file", "TouchFile", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const FileService = new FileServiceType();
|
|
|
|
// objectservice.ObjectService (object)
|
|
class ObjectServiceType {
|
|
// @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
|
|
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))
|
|
}
|
|
}
|
|
|
|
export const ObjectService = new ObjectServiceType();
|
|
|
|
// userinputservice.UserInputService (userinput)
|
|
class UserInputServiceType {
|
|
SendUserInputResponse(arg1: UserInputResponse): Promise<void> {
|
|
return WOS.callBackendService("userinput", "SendUserInputResponse", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const UserInputService = new UserInputServiceType();
|
|
|
|
// windowservice.WindowService (window)
|
|
class WindowServiceType {
|
|
CloseWindow(windowId: string, fromElectron: boolean): Promise<void> {
|
|
return WOS.callBackendService("window", "CloseWindow", Array.from(arguments))
|
|
}
|
|
CreateWindow(winSize: WinSize, workspaceId: string): Promise<WaveWindow> {
|
|
return WOS.callBackendService("window", "CreateWindow", Array.from(arguments))
|
|
}
|
|
GetWindow(windowId: string): Promise<WaveWindow> {
|
|
return WOS.callBackendService("window", "GetWindow", Array.from(arguments))
|
|
}
|
|
|
|
// move block to new window
|
|
// @returns object updates
|
|
MoveBlockToNewWindow(currentTabId: string, blockId: string): Promise<void> {
|
|
return WOS.callBackendService("window", "MoveBlockToNewWindow", Array.from(arguments))
|
|
}
|
|
|
|
// set window position and size
|
|
// @returns object updates
|
|
SetWindowPosAndSize(windowId: string, pos: Point, size: WinSize): Promise<void> {
|
|
return WOS.callBackendService("window", "SetWindowPosAndSize", Array.from(arguments))
|
|
}
|
|
SwitchWorkspace(windowId: string, workspaceId: string): Promise<Workspace> {
|
|
return WOS.callBackendService("window", "SwitchWorkspace", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const WindowService = new WindowServiceType();
|
|
|
|
// workspaceservice.WorkspaceService (workspace)
|
|
class WorkspaceServiceType {
|
|
// @returns object updates
|
|
CloseTab(workspaceId: string, tabId: string, fromElectron: boolean): Promise<CloseTabRtnType> {
|
|
return WOS.callBackendService("workspace", "CloseTab", Array.from(arguments))
|
|
}
|
|
|
|
// @returns tabId (and object updates)
|
|
CreateTab(workspaceId: string, tabName: string, activateTab: boolean): Promise<string> {
|
|
return WOS.callBackendService("workspace", "CreateTab", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
DeleteWorkspace(workspaceId: string): Promise<void> {
|
|
return WOS.callBackendService("workspace", "DeleteWorkspace", Array.from(arguments))
|
|
}
|
|
GetWorkspace(workspaceId: string): Promise<Workspace> {
|
|
return WOS.callBackendService("workspace", "GetWorkspace", Array.from(arguments))
|
|
}
|
|
ListWorkspaces(): Promise<WorkspaceListEntry[]> {
|
|
return WOS.callBackendService("workspace", "ListWorkspaces", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
SetActiveTab(workspaceId: string, tabId: string): Promise<void> {
|
|
return WOS.callBackendService("workspace", "SetActiveTab", Array.from(arguments))
|
|
}
|
|
|
|
// @returns object updates
|
|
UpdateTabIds(workspaceId: string, tabIds: string[]): Promise<void> {
|
|
return WOS.callBackendService("workspace", "UpdateTabIds", Array.from(arguments))
|
|
}
|
|
}
|
|
|
|
export const WorkspaceService = new WorkspaceServiceType();
|
|
|