File: milestone_create.go

package info (click to toggle)
tea-cli 0.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,648 kB
  • sloc: makefile: 116; sh: 17
file content (70 lines) | stat: -rw-r--r-- 1,526 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package interact

import (
	"fmt"
	"time"

	"code.gitea.io/tea/modules/config"
	"code.gitea.io/tea/modules/task"
	"code.gitea.io/tea/modules/theme"

	"code.gitea.io/sdk/gitea"
	"github.com/charmbracelet/huh"
)

// CreateMilestone interactively creates a milestone
func CreateMilestone(login *config.Login, owner, repo string) error {
	var title, description, deadline string

	// owner, repo
	owner, repo, err := promptRepoSlug(owner, repo)
	if err != nil {
		return err
	}
	printTitleAndContent("Target repo:", fmt.Sprintf("%s/%s", owner, repo))

	if err := huh.NewForm(
		huh.NewGroup(
			huh.NewInput().
				Title("Milestone title:").
				Validate(huh.ValidateNotEmpty()).
				Value(&title),
			huh.NewText().
				Title("Milestone description(markdown):").
				ExternalEditor(config.GetPreferences().Editor).
				EditorExtension("md").
				Value(&description),
			huh.NewInput().
				Title("Milestone deadline:").
				Placeholder("YYYY-MM-DD").
				Validate(func(s string) error {
					if s == "" {
						return nil // no deadline
					}
					_, err := time.Parse("2006-01-02", s)
					return err
				}).
				Value(&deadline),
		),
	).WithTheme(theme.GetTheme()).Run(); err != nil {
		return err
	}

	var deadlineTM *time.Time
	if deadline != "" {
		tm, _ := time.Parse("2006-01-02", deadline)
		deadlineTM = &tm
	}

	return task.CreateMilestone(
		login,
		owner,
		repo,
		title,
		description,
		deadlineTM,
		gitea.StateOpen)
}