|
| 1 | +package create |
| 2 | + |
| 3 | +import ( |
| 4 | + "fmt" |
| 5 | + "strings" |
| 6 | + "time" |
| 7 | + |
| 8 | + tea "github.com/charmbracelet/bubbletea" |
| 9 | + "github.com/charmbracelet/huh" |
| 10 | + "github.com/charmbracelet/lipgloss" |
| 11 | + "github.com/charmbracelet/ssh" |
| 12 | + "github.com/devmegablaster/bashform/internal/constants" |
| 13 | + "github.com/devmegablaster/bashform/internal/models" |
| 14 | + "github.com/devmegablaster/bashform/internal/services" |
| 15 | +) |
| 16 | + |
| 17 | +type Model struct { |
| 18 | + width int |
| 19 | + height int |
| 20 | + questionsForm *huh.Form |
| 21 | + code string |
| 22 | + n int |
| 23 | + client *services.Client |
| 24 | + isCreating bool |
| 25 | + isCreated bool |
| 26 | + err error |
| 27 | + init bool |
| 28 | + initTime time.Time |
| 29 | + formResp *models.FormResponse |
| 30 | +} |
| 31 | + |
| 32 | +func NewModel(session ssh.Session, n int, code string, client *services.Client) *Model { |
| 33 | + pty, _, _ := session.Pty() |
| 34 | + |
| 35 | + return &Model{ |
| 36 | + width: pty.Window.Width, |
| 37 | + height: pty.Window.Height, |
| 38 | + questionsForm: starterForm(n), |
| 39 | + code: code, |
| 40 | + n: n, |
| 41 | + client: client, |
| 42 | + init: true, |
| 43 | + initTime: time.Now(), |
| 44 | + } |
| 45 | +} |
| 46 | + |
| 47 | +func (m *Model) Init() tea.Cmd { |
| 48 | + return m.questionsForm.Init() |
| 49 | +} |
| 50 | + |
| 51 | +func (m *Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { |
| 52 | + var cmd tea.Cmd |
| 53 | + |
| 54 | + form, cmd := m.questionsForm.Update(msg) |
| 55 | + if f, ok := form.(*huh.Form); ok { |
| 56 | + m.questionsForm = f |
| 57 | + } |
| 58 | + |
| 59 | + if m.questionsForm.State == huh.StateCompleted && !m.isCreating { |
| 60 | + m.CreateRequest() |
| 61 | + } |
| 62 | + |
| 63 | + if m.init && time.Since(m.initTime) > 2*time.Second { |
| 64 | + m.init = false |
| 65 | + } |
| 66 | + |
| 67 | + switch msg := msg.(type) { |
| 68 | + case tea.KeyMsg: |
| 69 | + switch msg.String() { |
| 70 | + case "ctrl+c": |
| 71 | + return m, tea.Quit |
| 72 | + case "q": |
| 73 | + if m.questionsForm.State == huh.StateCompleted { |
| 74 | + return m, tea.Quit |
| 75 | + } |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + return m, cmd |
| 80 | +} |
| 81 | + |
| 82 | +func (m *Model) View() string { |
| 83 | + |
| 84 | + var content string |
| 85 | + |
| 86 | + content = m.questionsForm.View() |
| 87 | + |
| 88 | + if m.isCreating { |
| 89 | + content = "Creating your form..." |
| 90 | + } |
| 91 | + |
| 92 | + if m.isCreated { |
| 93 | + successMsg := lipgloss.NewStyle().Foreground(lipgloss.Color("#22c55e")).Bold(true).Render("Form created successfully!") |
| 94 | + linkMsg := lipgloss.NewStyle().Foreground(lipgloss.Color("#3b82f6")).Render("Your Access Command:") |
| 95 | + accessMsg := lipgloss.NewStyle().Foreground(lipgloss.Color("#3b82f6")).Render(fmt.Sprintf("ssh -t bashform.me f %s", m.formResp.Data.Code)) |
| 96 | + helpMsg := lipgloss.NewStyle().Foreground(lipgloss.Color("#626262")).Render("q or ctrl+c to exit") |
| 97 | + |
| 98 | + content = successMsg + "\n\n" + linkMsg + "\n" + accessMsg + "\n\n" + helpMsg |
| 99 | + } |
| 100 | + |
| 101 | + if m.err != nil { |
| 102 | + content = fmt.Sprintf("Error creating form: %s", m.err) |
| 103 | + } |
| 104 | + |
| 105 | + if m.init { |
| 106 | + return lipgloss.Place(m.width, m.height, lipgloss.Center, lipgloss.Center, constants.Logo) |
| 107 | + } |
| 108 | + |
| 109 | + box := lipgloss.NewStyle(). |
| 110 | + Border(lipgloss.RoundedBorder()). |
| 111 | + BorderForeground(lipgloss.Color("#94a3b8")). |
| 112 | + Align(lipgloss.Center). |
| 113 | + Padding(1, 2). |
| 114 | + Render(content) |
| 115 | + |
| 116 | + return lipgloss.Place( |
| 117 | + m.width, |
| 118 | + m.height, |
| 119 | + lipgloss.Center, |
| 120 | + lipgloss.Center, |
| 121 | + lipgloss.JoinVertical( |
| 122 | + lipgloss.Center, |
| 123 | + lipgloss.NewStyle().Foreground(lipgloss.Color("#3b82f6")).MarginBottom(1).Bold(true).Render("New Form"), |
| 124 | + box, |
| 125 | + )) |
| 126 | +} |
| 127 | + |
| 128 | +func (m *Model) CreateRequest() { |
| 129 | + m.isCreating = true |
| 130 | + |
| 131 | + questions := []models.QuestionRequest{} |
| 132 | + |
| 133 | + for i := 0; i < m.n; i++ { |
| 134 | + question := models.QuestionRequest{ |
| 135 | + Text: m.questionsForm.GetString(fmt.Sprintf("question%d", i)), |
| 136 | + Type: m.questionsForm.GetString(fmt.Sprintf("type%d", i)), |
| 137 | + } |
| 138 | + |
| 139 | + options := strings.Split(m.questionsForm.GetString(fmt.Sprintf("options%d", i)), ",") |
| 140 | + optionRequests := []models.OptionRequest{} |
| 141 | + for _, option := range options { |
| 142 | + optionRequests = append(optionRequests, models.OptionRequest{Text: strings.TrimSpace(option)}) |
| 143 | + } |
| 144 | + |
| 145 | + question.Options = optionRequests |
| 146 | + questions = append(questions, question) |
| 147 | + } |
| 148 | + |
| 149 | + formRequest := models.FormRequest{ |
| 150 | + Name: m.questionsForm.GetString("name"), |
| 151 | + Description: m.questionsForm.GetString("description"), |
| 152 | + Code: m.code, |
| 153 | + Questions: questions, |
| 154 | + } |
| 155 | + |
| 156 | + form, err := m.client.CreateForm(formRequest) |
| 157 | + if err != nil { |
| 158 | + m.err = err |
| 159 | + return |
| 160 | + } |
| 161 | + |
| 162 | + m.formResp = form |
| 163 | + |
| 164 | + m.isCreated = true |
| 165 | +} |
0 commit comments