-
Notifications
You must be signed in to change notification settings - Fork 18
/
ajax.go
95 lines (83 loc) · 1.63 KB
/
ajax.go
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package W
import (
"github.com/kokizzu/gotro/L"
"github.com/kokizzu/gotro/M"
"github.com/kokizzu/gotro/S"
)
////////// Ajax
type Ajax struct {
M.SX
}
func NewAjax() Ajax {
return Ajax{M.SX{}}
}
func (json Ajax) HasError() bool {
if json.SX[`errors`] == nil {
return false
}
errors := json.SX[`errors`].([]string)
return len(errors) > 0
}
func (json Ajax) Info(msg string) {
str, ok := (json.SX[`info`]).(string)
if !ok {
str = ``
}
if len(str) > 0 {
str += S.WebBR
}
str += msg
json.SX[`info`] = str
}
func (json Ajax) Error(msg string) string {
if msg == `` {
return msg
}
if json.SX[`errors`] == nil {
json.SX[`errors`] = []string{}
}
errors := json.SX[`errors`].([]string)
errors = append(errors, msg)
json.SX[`errors`] = errors
json.SX[`is_success`] = false
L.ParentDescribe(`Ajax error`, msg)
return msg
}
func (json Ajax) ErrorIf(err error, msg string) bool {
if !L.IsError(err, msg) {
return false
}
if msg == `` {
return true
}
if json.SX[`errors`] == nil {
json.SX[`errors`] = []string{}
}
errors := json.SX[`errors`].([]string)
errors = append(errors, msg)
json.SX[`errors`] = errors
json.SX[`is_success`] = false
return true
}
func (json Ajax) OverwriteInfo(msg string) {
json.SX[`info`] = msg
}
func (json Ajax) LastError() string {
if json.SX[`errors`] == nil {
return ``
}
errors := json.SX[`errors`].([]string)
if len(errors) == 0 {
return ``
}
return errors[len(errors)-1]
}
func (json Ajax) ClearErrors() {
json.SX[`errors`] = []string{}
}
func (json Ajax) TestError(err error, errmsg string) bool {
if L.IsError(err, errmsg) {
json.Error(errmsg)
}
return json.HasError()
}