2020-11-06 23:19:54 +03:00
|
|
|
package view
|
|
|
|
|
2021-12-16 14:39:41 +03:00
|
|
|
import "github.com/muety/wakapi/models"
|
|
|
|
|
2020-11-06 23:19:54 +03:00
|
|
|
type SummaryViewModel struct {
|
2023-01-02 20:05:28 +03:00
|
|
|
Messages
|
2021-12-16 14:39:41 +03:00
|
|
|
*models.Summary
|
|
|
|
*models.SummaryParams
|
|
|
|
User *models.User
|
|
|
|
AvatarURL string
|
2022-03-27 22:56:13 +03:00
|
|
|
EditorColors map[string]string
|
2021-12-16 14:39:41 +03:00
|
|
|
LanguageColors map[string]string
|
2022-03-27 22:56:13 +03:00
|
|
|
OSColors map[string]string
|
2021-12-16 14:39:41 +03:00
|
|
|
ApiKey string
|
|
|
|
RawQuery string
|
2020-11-06 23:19:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SummaryViewModel) WithSuccess(m string) *SummaryViewModel {
|
2023-01-02 20:05:28 +03:00
|
|
|
s.SetSuccess(m)
|
2020-11-06 23:19:54 +03:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SummaryViewModel) WithError(m string) *SummaryViewModel {
|
2023-01-02 20:05:28 +03:00
|
|
|
s.SetError(m)
|
2020-11-06 23:19:54 +03:00
|
|
|
return s
|
|
|
|
}
|