mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
b9f5ba0702
Implement interactive issue creation Comment PromptRepoSlug Move PromptRepoSlug to the right place Hide promptRepoSlug Signed-off-by: Martin Reboredo <yakoyoku@gmail.com> Co-authored-by: Martin Reboredo <yakoyoku@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/302 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: khmarbaise <khmarbaise@noreply.gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Martin Reboredo <yakoyakoyokuyoku@noreply.gitea.io> Co-Committed-By: Martin Reboredo <yakoyakoyokuyoku@noreply.gitea.io>
44 lines
972 B
Go
44 lines
972 B
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 (
|
|
"code.gitea.io/tea/modules/config"
|
|
"code.gitea.io/tea/modules/task"
|
|
|
|
"github.com/AlecAivazis/survey/v2"
|
|
)
|
|
|
|
// CreateIssue interactively creates a PR
|
|
func CreateIssue(login *config.Login, owner, repo string) error {
|
|
var title, description string
|
|
|
|
// owner, repo
|
|
owner, repo, err := promptRepoSlug(owner, repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// title
|
|
promptOpts := survey.WithValidator(survey.Required)
|
|
promptI := &survey.Input{Message: "Issue title:"}
|
|
if err := survey.AskOne(promptI, &title, promptOpts); err != nil {
|
|
return err
|
|
}
|
|
|
|
// description
|
|
promptM := &survey.Multiline{Message: "Issue description:"}
|
|
if err := survey.AskOne(promptM, &description); err != nil {
|
|
return err
|
|
}
|
|
|
|
return task.CreateIssue(
|
|
login,
|
|
owner,
|
|
repo,
|
|
title,
|
|
description)
|
|
}
|