This repository has been archived by the owner on Apr 13, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.go
151 lines (130 loc) · 4.1 KB
/
settings.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// mauIRC - The original mauIRC web frontend
// Copyright (C) 2016 Tulir Asokan
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Package ui contains UI-related functions
package ui
import (
"github.com/gopherjs/gopherjs/js"
"maunium.net/go/mauirc-common/messages"
"maunium.net/go/mauirc/data"
"strings"
)
// OpenSettings opens the settings view
func OpenSettings() {
UpdateValues()
jq("#settings").RemoveClass("hidden")
jq("#container").AddClass("hidden")
}
// CloseSettings closes the settings view
func CloseSettings() {
UpdateValues()
jq("#settings").AddClass("hidden")
jq("#container").RemoveClass("hidden")
}
// UpdateValues updates values within the settings view
func UpdateValues() {
jq("#network-nickname").SetVal("")
jq("#network-highlights").SetVal("")
jq("#channel-notifications").SetVal("all")
font := js.Global.Get("document").Get("body").Get("style").Get("fontFamily")
if font == nil || font.Length() == 0 {
jq("#mauirc-font").SetVal("Raleway")
} else {
jq("#mauirc-font").SetVal(font.String())
}
if !data.NetworkExists(GetActiveNetwork()) {
return
}
net := data.MustGetNetwork(GetActiveNetwork())
jq("#network-nickname").SetVal(net.Nick)
jq("#network-highlights").SetVal(net.Highlights.String())
if !net.ChannelExists(GetActiveChannel()) {
return
}
ch := net.MustGetChannel(GetActiveChannel())
jq("#channel-notifications").SetVal(ch.Notifications.String())
}
// OnChangeNotifications updates the notification level in the data store
func OnChangeNotifications() {
data.MustGetChannel(GetActiveNetwork(), GetActiveChannel()).Notifications = data.ParseNotificationLevel(jq("#channel-notifications").Val())
}
// OnChangeHighlights updates the highlights in the data store
func OnChangeHighlights() {
data.MustGetNetwork(GetActiveNetwork()).Highlights.Parse(jq("#network-highlights").Val())
}
// OnChangeNick updates the IRC nick
func OnChangeNick() {
nick := strings.TrimSpace(jq("#network-nickname").Val())
if len(nick) == 0 {
return
}
data.Messages <- messages.Container{
Type: messages.MsgMessage,
Object: messages.Message{
Network: GetActiveNetwork(),
Channel: GetActiveChannel(),
Command: "nick",
Message: nick,
},
}
}
// OnChangeFont changes the website font
func OnChangeFont() {
js.Global.Get("document").Get("body").Get("style").Set("fontFamily", jq("#mauirc-font").Val())
}
// ClearActiveHistory clears the history of the active channel
func ClearActiveHistory() {
ClearHistory(GetActiveNetwork(), GetActiveChannel())
}
// ClearHistory clears the history of the given channel on the given network
func ClearHistory(network, channel string) {
if len(network) > 0 && len(channel) > 0 {
data.Messages <- messages.Container{
Type: messages.MsgClear,
Object: messages.ClearHistory{
Network: network,
Channel: channel,
},
}
}
CloseSettings()
}
// PartActiveChannel leaves the active channel
func PartActiveChannel() {
PartChannel(GetActiveNetwork(), GetActiveChannel())
}
// PartChannel leaves the given channel on the given network
func PartChannel(network, channel string) {
if len(network) > 0 && len(channel) > 0 {
if channel[0] == '#' {
data.Messages <- messages.Container{
Type: messages.MsgMessage,
Object: messages.Message{
Network: network,
Channel: channel,
Command: "part",
Message: "Leaving",
},
}
} else {
data.Messages <- messages.Container{
Type: messages.MsgClose,
Object: messages.ClearHistory{
Network: network,
Channel: channel,
},
}
}
CloseChannel(network, channel)
}
CloseSettings()
}