]> git.christiangoeschel.com Git - repoman-cli.git/commitdiff
Backup master
authorchristiangoeschel <cndjomouo@icloud.com>
Mon, 4 Nov 2024 00:02:00 +0000 (19:02 -0500)
committerchristiangoeschel <cndjomouo@icloud.com>
Mon, 4 Nov 2024 00:02:00 +0000 (19:02 -0500)
main
screens/apistatus.go

diff --git a/main b/main
index 22fcefb279d0b5885314cb69d4edd54526c77fe5..966a93b6460ad13e2e71fb43ff52155bd0ae9e44 100755 (executable)
Binary files a/main and b/main differ
index 156bea30dc1ee81622e1cfe906fdb911cf09f498..c97d0a60607c8e2fd053156fc0f95fe47178837f 100644 (file)
@@ -67,12 +67,11 @@ func (m *APIStatusScreenModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
     case "ctrl+c", "ctrl+C":
         return m, tea.Quit
 
     case "ctrl+c", "ctrl+C":
         return m, tea.Quit
 
-      case "enter":
+    case "enter":
         m.APIStatus = api.APIStatusMsg{}
         m.ReqReceived = false
         m.Requested   = true
         return m, api.HandleAPIStatusRequest(api.StatusUrl)
         m.APIStatus = api.APIStatusMsg{}
         m.ReqReceived = false
         m.Requested   = true
         return m, api.HandleAPIStatusRequest(api.StatusUrl)
-       
     }
     
   case api.APIStatusMsg:
     }
     
   case api.APIStatusMsg:
@@ -91,7 +90,6 @@ func (m *APIStatusScreenModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
       m.Width = w
       m.Height = h
       return m, nil
       m.Width = w
       m.Height = h
       return m, nil
-
   }
 
   return m, nil 
   }
 
   return m, nil 
@@ -113,7 +111,6 @@ func (m *APIStatusScreenModel) View() string {
   topBarBlock :=  ui.TopBarStyle.Render(lipgloss.JoinHorizontal(lipgloss.Center,
                   ui.TopBarLeftStyle.Width((m.Width / 2 ) - 1).Render(roundLabelCorner + titleBlock + labelArrow), 
                   ui.TopBarRightStyle.Width((m.Width / 2 ) - 1).Render(rightTopBarBlock)))
   topBarBlock :=  ui.TopBarStyle.Render(lipgloss.JoinHorizontal(lipgloss.Center,
                   ui.TopBarLeftStyle.Width((m.Width / 2 ) - 1).Render(roundLabelCorner + titleBlock + labelArrow), 
                   ui.TopBarRightStyle.Width((m.Width / 2 ) - 1).Render(rightTopBarBlock)))
-
   _, topBarBlockHeight := lipgloss.Size(topBarBlock)
 
   // Footer 
   _, topBarBlockHeight := lipgloss.Size(topBarBlock)
 
   // Footer 
@@ -139,10 +136,8 @@ func (m *APIStatusScreenModel) View() string {
           statusResponse) 
 
   mainBodyBlockStyle := lipgloss.NewStyle().Height(m.Height - footerBlockHeight - topBarBlockHeight)
           statusResponse) 
 
   mainBodyBlockStyle := lipgloss.NewStyle().Height(m.Height - footerBlockHeight - topBarBlockHeight)
-  
   mainBodyBlock = mainBodyBlockStyle.Render(mainBodyBlock)
 
   mainBodyBlock = mainBodyBlockStyle.Render(mainBodyBlock)
 
-
 return  lipgloss.PlaceHorizontal(m.Width, lipgloss.Center, lipgloss.JoinVertical(lipgloss.Left, topBarBlock, mainBodyBlock, footerBlock))  
 }
 
 return  lipgloss.PlaceHorizontal(m.Width, lipgloss.Center, lipgloss.JoinVertical(lipgloss.Left, topBarBlock, mainBodyBlock, footerBlock))  
 }