waveterm/pkg/service/windowservice/windowservice.go

182 lines
5.6 KiB
Go
Raw Normal View History

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
package windowservice
import (
"context"
2024-06-20 04:10:53 +02:00
"fmt"
"log"
2024-06-20 04:10:53 +02:00
"time"
2024-06-20 04:10:53 +02:00
"github.com/wavetermdev/thenextwave/pkg/blockcontroller"
"github.com/wavetermdev/thenextwave/pkg/eventbus"
"github.com/wavetermdev/thenextwave/pkg/tsgen/tsgenmeta"
"github.com/wavetermdev/thenextwave/pkg/util/utilfn"
2024-08-20 23:56:48 +02:00
"github.com/wavetermdev/thenextwave/pkg/waveobj"
"github.com/wavetermdev/thenextwave/pkg/wcore"
"github.com/wavetermdev/thenextwave/pkg/wlayout"
"github.com/wavetermdev/thenextwave/pkg/wstore"
)
2024-06-20 04:10:53 +02:00
const DefaultTimeout = 2 * time.Second
type WindowService struct{}
2024-08-20 23:56:48 +02:00
func (ws *WindowService) SetWindowPosAndSize(ctx context.Context, windowId string, pos *waveobj.Point, size *waveobj.WinSize) (waveobj.UpdatesRtnType, error) {
if pos == nil && size == nil {
return nil, nil
}
2024-08-20 23:56:48 +02:00
ctx = waveobj.ContextWithUpdates(ctx)
win, err := wstore.DBMustGet[*waveobj.Window](ctx, windowId)
if err != nil {
return nil, err
}
if pos != nil {
win.Pos = *pos
}
if size != nil {
win.WinSize = *size
}
err = wstore.DBUpdate(ctx, win)
if err != nil {
return nil, err
}
2024-08-20 23:56:48 +02:00
return waveobj.ContextGetUpdatesRtn(ctx), nil
}
2024-06-20 04:10:53 +02:00
2024-08-20 23:56:48 +02:00
func (svc *WindowService) CloseTab(ctx context.Context, uiContext waveobj.UIContext, tabId string) (waveobj.UpdatesRtnType, error) {
ctx = waveobj.ContextWithUpdates(ctx)
window, err := wstore.DBMustGet[*waveobj.Window](ctx, uiContext.WindowId)
2024-06-20 04:10:53 +02:00
if err != nil {
return nil, fmt.Errorf("error getting window: %w", err)
}
2024-08-20 23:56:48 +02:00
tab, err := wstore.DBMustGet[*waveobj.Tab](ctx, tabId)
2024-06-20 04:10:53 +02:00
if err != nil {
return nil, fmt.Errorf("error getting tab: %w", err)
}
2024-08-20 23:56:48 +02:00
ws, err := wstore.DBMustGet[*waveobj.Workspace](ctx, window.WorkspaceId)
if err != nil {
return nil, fmt.Errorf("error getting workspace: %w", err)
}
tabIndex := -1
for i, id := range ws.TabIds {
if id == tabId {
tabIndex = i
break
}
}
2024-06-20 04:10:53 +02:00
for _, blockId := range tab.BlockIds {
blockcontroller.StopBlockController(blockId)
}
2024-08-20 23:56:48 +02:00
if err := wcore.DeleteTab(ctx, window.WorkspaceId, tabId); err != nil {
2024-06-20 04:10:53 +02:00
return nil, fmt.Errorf("error closing tab: %w", err)
}
if window.ActiveTabId == tabId && tabIndex != -1 {
if len(ws.TabIds) == 1 {
eventbus.SendEventToElectron(eventbus.WSEventType{
EventType: eventbus.WSEvent_ElectronCloseWindow,
Data: uiContext.WindowId,
})
} else {
if tabIndex < len(ws.TabIds)-1 {
newActiveTabId := ws.TabIds[tabIndex+1]
wstore.SetActiveTab(ctx, uiContext.WindowId, newActiveTabId)
} else {
newActiveTabId := ws.TabIds[tabIndex-1]
wstore.SetActiveTab(ctx, uiContext.WindowId, newActiveTabId)
}
2024-06-20 04:10:53 +02:00
}
}
2024-08-20 23:56:48 +02:00
return waveobj.ContextGetUpdatesRtn(ctx), nil
2024-06-20 04:10:53 +02:00
}
func (svc *WindowService) MoveBlockToNewWindow_Meta() tsgenmeta.MethodMeta {
return tsgenmeta.MethodMeta{
Desc: "move block to new window",
ArgNames: []string{"ctx", "currentTabId", "blockId"},
}
}
2024-08-20 23:56:48 +02:00
func (svc *WindowService) MoveBlockToNewWindow(ctx context.Context, currentTabId string, blockId string) (waveobj.UpdatesRtnType, error) {
log.Printf("MoveBlockToNewWindow(%s, %s)", currentTabId, blockId)
2024-08-20 23:56:48 +02:00
ctx = waveobj.ContextWithUpdates(ctx)
tab, err := wstore.DBMustGet[*waveobj.Tab](ctx, currentTabId)
if err != nil {
return nil, fmt.Errorf("error getting tab: %w", err)
}
log.Printf("tab.BlockIds[%s]: %v", tab.OID, tab.BlockIds)
var foundBlock bool
for _, tabBlockId := range tab.BlockIds {
if tabBlockId == blockId {
foundBlock = true
break
}
}
if !foundBlock {
return nil, fmt.Errorf("block not found in current tab")
}
2024-08-27 00:17:37 +02:00
newWindow, err := wcore.CreateWindow(ctx, nil)
if err != nil {
return nil, fmt.Errorf("error creating window: %w", err)
}
err = wstore.MoveBlockToTab(ctx, currentTabId, newWindow.ActiveTabId, blockId)
if err != nil {
return nil, fmt.Errorf("error moving block to tab: %w", err)
}
eventbus.SendEventToElectron(eventbus.WSEventType{
EventType: eventbus.WSEvent_ElectronNewWindow,
Data: newWindow.OID,
})
windowCreated := eventbus.BusyWaitForWindowId(newWindow.OID, 2*time.Second)
if !windowCreated {
return nil, fmt.Errorf("new window not created")
}
wlayout.QueueLayoutActionForTab(ctx, currentTabId, waveobj.LayoutActionData{
ActionType: wlayout.LayoutActionDataType_Remove,
BlockId: blockId,
})
wlayout.QueueLayoutActionForTab(ctx, newWindow.ActiveTabId, waveobj.LayoutActionData{
ActionType: wlayout.LayoutActionDataType_Insert,
BlockId: blockId,
})
2024-08-20 23:56:48 +02:00
return waveobj.ContextGetUpdatesRtn(ctx), nil
}
2024-06-20 04:10:53 +02:00
func (svc *WindowService) CloseWindow(ctx context.Context, windowId string) error {
2024-08-20 23:56:48 +02:00
ctx = waveobj.ContextWithUpdates(ctx)
window, err := wstore.DBMustGet[*waveobj.Window](ctx, windowId)
2024-06-20 04:10:53 +02:00
if err != nil {
return fmt.Errorf("error getting window: %w", err)
}
2024-08-20 23:56:48 +02:00
workspace, err := wstore.DBMustGet[*waveobj.Workspace](ctx, window.WorkspaceId)
2024-06-20 04:10:53 +02:00
if err != nil {
return fmt.Errorf("error getting workspace: %w", err)
}
for _, tabId := range workspace.TabIds {
2024-08-20 23:56:48 +02:00
uiContext := waveobj.UIContext{WindowId: windowId}
2024-06-20 04:10:53 +02:00
_, err := svc.CloseTab(ctx, uiContext, tabId)
if err != nil {
return fmt.Errorf("error closing tab: %w", err)
}
}
2024-08-20 23:56:48 +02:00
err = wstore.DBDelete(ctx, waveobj.OType_Workspace, window.WorkspaceId)
2024-06-20 04:10:53 +02:00
if err != nil {
return fmt.Errorf("error deleting workspace: %w", err)
}
2024-08-20 23:56:48 +02:00
err = wstore.DBDelete(ctx, waveobj.OType_Window, windowId)
2024-06-20 04:10:53 +02:00
if err != nil {
return fmt.Errorf("error deleting window: %w", err)
}
2024-08-20 23:56:48 +02:00
client, err := wstore.DBGetSingleton[*waveobj.Client](ctx)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
2024-08-01 03:02:36 +02:00
client.WindowIds = utilfn.RemoveElemFromSlice(client.WindowIds, windowId)
err = wstore.DBUpdate(ctx, client)
if err != nil {
return fmt.Errorf("error updating client: %w", err)
}
2024-06-20 04:10:53 +02:00
return nil
}