mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-22 18:41:36 +01:00
78a95f1ca4
- Adds a new `Preferences` struct to the config, initially only containing `Editor: bool (default false)`. This struct will be serialized to configs once there is a first tea induced change to the config (eg `tea login default <name>` or `tea login add`). - Use external editor for all multiline prompts if preferred. We already had a function for starting a texteditor for diff reviews; it does not really make sense to replace it with `survey.Editor`, as there is a big interface mismatch: survey expects strings as inputs, while our diff functions operate on files, fixes #424 Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/429 Reviewed-by: Andrew Thornton <art27@cantab.net> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package interact
|
|
|
|
import (
|
|
"time"
|
|
|
|
"code.gitea.io/tea/modules/config"
|
|
"code.gitea.io/tea/modules/task"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/AlecAivazis/survey/v2"
|
|
)
|
|
|
|
// CreateMilestone interactively creates a milestone
|
|
func CreateMilestone(login *config.Login, owner, repo string) error {
|
|
var title, description string
|
|
var deadline *time.Time
|
|
|
|
// owner, repo
|
|
owner, repo, err := promptRepoSlug(owner, repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// title
|
|
promptOpts := survey.WithValidator(survey.Required)
|
|
promptI := &survey.Input{Message: "Milestone title:"}
|
|
if err := survey.AskOne(promptI, &title, promptOpts); err != nil {
|
|
return err
|
|
}
|
|
|
|
// description
|
|
promptM := NewMultiline(Multiline{
|
|
Message: "Milestone description:",
|
|
Syntax: "md",
|
|
UseEditor: config.GetPreferences().Editor,
|
|
})
|
|
if err := survey.AskOne(promptM, &description); err != nil {
|
|
return err
|
|
}
|
|
|
|
// deadline
|
|
if deadline, err = promptDatetime("Milestone deadline:"); err != nil {
|
|
return err
|
|
}
|
|
|
|
return task.CreateMilestone(
|
|
login,
|
|
owner,
|
|
repo,
|
|
title,
|
|
description,
|
|
deadline,
|
|
gitea.StateOpen)
|
|
}
|