git-bug/operations/set_title.go

53 lines
1.1 KiB
Go
Raw Normal View History

2018-07-12 22:31:41 +03:00
package operations
import (
"github.com/MichaelMure/git-bug/bug"
)
// SetTitleOperation will change the title of a bug
2018-07-12 22:31:41 +03:00
2018-07-13 17:13:40 +03:00
var _ bug.Operation = SetTitleOperation{}
2018-07-12 22:31:41 +03:00
type SetTitleOperation struct {
bug.OpBase
Title string `json:"title"`
Was string `json:"was"`
2018-07-12 22:31:41 +03:00
}
2018-07-25 22:25:26 +03:00
func (op SetTitleOperation) Apply(snapshot bug.Snapshot) bug.Snapshot {
snapshot.Title = op.Title
return snapshot
}
func NewSetTitleOp(author bug.Person, title string, was string) SetTitleOperation {
2018-07-12 22:31:41 +03:00
return SetTitleOperation{
OpBase: bug.NewOpBase(bug.SetTitleOp, author),
Title: title,
Was: was,
2018-07-12 22:31:41 +03:00
}
}
2018-07-25 22:25:26 +03:00
// Convenience function to apply the operation
func SetTitle(b bug.Interface, author bug.Person, title string) {
it := bug.NewOperationIterator(b)
var lastTitleOp bug.Operation
for it.Next() {
op := it.Value()
if op.OpType() == bug.SetTitleOp {
lastTitleOp = op
}
}
var was string
if lastTitleOp != nil {
was = lastTitleOp.(SetTitleOperation).Title
} else {
was = b.FirstOp().(CreateOperation).Title
}
setTitleOp := NewSetTitleOp(author, title, was)
b.Append(setTitleOp)
}