-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSlashCommand.lua
More file actions
242 lines (228 loc) · 6.8 KB
/
Copy pathSlashCommand.lua
File metadata and controls
242 lines (228 loc) · 6.8 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
local ADDON_NAME, T = ...
local L = T.L
--- @type SimpleAddonManager
local SAM = T.AddonFrame
local CommandsModule = {}
local Commands = {
open = {
usage = "open",
args = {},
func = function()
SAM:Show()
end,
},
profile = {
usage = 'profile "Name" [OPTION]...',
args = {
{ desc = 'Name: Profile name', required = true },
{
desc = [==[Reload option (optional):
- ask: Show confirmation popup (default)
- reload: Reload the UI
- ignore: Apply changes without reload]==],
required = false
},
{
desc = [==[Load option (optional):
- load: Load the profile (default)
- enable: Enable all addons from the profile
- disable: Disable all addons from the profile]==],
required = false
},
},
func = function(profile, ...)
local db = SAM:GetDb()
if (not db.sets[profile]) then
CommandsModule:Print(L("Profile '${profile}' not found!", { profile = profile }))
return
else
local args = { ... }
local reloadOptions = { "ask", "reload", "ignore" }
local error, reloadType = CommandsModule:FindUniqueOptionInArgs(args, reloadOptions, "ask")
if (error) then return CommandsModule:Print(reloadType) end
local loadOptions = { "load", "enable", "disable" }
local error, loadType = CommandsModule:FindUniqueOptionInArgs(args, loadOptions, "load")
if (error) then return CommandsModule:Print(loadType) end
if (loadType == "load") then
if (reloadType == "ask") then
SAM:GetModule("Profile"):ShowLoadProfileAndReloadUIDialog(profile)
else
SAM:GetModule("Profile"):LoadAddonsFromProfile(profile)
if (reloadType == "reload") then
ReloadUI()
end
end
elseif (loadType == "enable") then
if (reloadType == "ask") then
SAM:ShowConfirmDialog(
L("Enable addons from the profile '${profile}' and reload UI?", { profile = profile }),
function()
SAM:GetModule("Profile"):LoadAddonsFromProfile(profile, true)
ReloadUI()
end
)
else
SAM:GetModule("Profile"):LoadAddonsFromProfile(profile, true)
if (reloadType == "reload") then
ReloadUI()
end
end
elseif (loadType == "disable") then
if (reloadType == "ask") then
SAM:ShowConfirmDialog(
L("Disable addons from the profile '${profile}' and reload UI?", { profile = profile }),
function()
SAM:GetModule("Profile"):UnloadAddonsFromProfile(profile)
ReloadUI()
end
)
else
SAM:GetModule("Profile"):UnloadAddonsFromProfile(profile)
if (reloadType == "reload") then
ReloadUI()
end
end
end
end
end,
},
category = {
usage = 'category "name" [OPTION]...',
args = {
{ desc = 'Name: Category name', required = true },
{
desc = [==[Reload option (optional):
- ask: Show confirmation popup (default)
- reload: Reload the UI
- ignore: Apply changes without reload]==],
required = false
},
{
desc = [==[Load option (optional):
- enable: Enable all addons from the category
- disable: Disable all addons from the category]==],
required = false
},
},
func = function (category,...)
local db = SAM:GetDb()
if (not db.categories[category]) then
CommandsModule:Print(L("Category '${category}' not found!", { category = category }))
return
else
local args = { ... }
local reloadOptions = { "ask", "reload", "ignore" }
local error, reloadType = CommandsModule:FindUniqueOptionInArgs(args, reloadOptions, "ask")
if (error) then return CommandsModule:Print(reloadType) end
local loadOptions = {"enable", "disable" }
local error, loadType = CommandsModule:FindUniqueOptionInArgs(args, loadOptions, "load")
if (error) then return CommandsModule:Print(loadType) end
if (loadType == "enable") then
if (reloadType == "ask") then
SAM:ShowConfirmDialog(
L("Enable addons from the category '${category}' and reload UI?", { category = category }),
function()
SAM:GetModule("Category"):EnableCategory(category)
ReloadUI()
end
)
else
SAM:GetModule("Category"):EnableCategory(category)
if (reloadType == "reload") then
ReloadUI()
end
end
elseif (loadType == "disable") then
if (reloadType == "ask") then
SAM:ShowConfirmDialog(
L("Disable addons from the category '${category}' and reload UI?", { category = category }),
function()
SAM:GetModule("Category"):DisableCategory(category)
ReloadUI()
end
)
else
SAM:GetModule("Category"):DisableCategory(category)
if (reloadType == "reload") then
ReloadUI()
end
end
end
end
end
},
}
LibStub("AceConsole-3.0"):Embed(CommandsModule)
setmetatable(CommandsModule, {
__tostring = function()
return (SAM:GetAddOnMetadata(ADDON_NAME, "Title"))
end
})
CommandsModule:RegisterChatCommand("sam", "HandleCMD")
CommandsModule:RegisterChatCommand("simpleaddonmanager", "HandleCMD")
local function HasMissingParam(list, max, reg)
for i = 1, max do
if (list[i] == nil and reg.args[i].required) then
return true
end
end
end
function CommandsModule:FindUniqueOptionInArgs(args, options, default)
local found
local optionsMap = {}
for _, option in ipairs(options) do
optionsMap[option] = true
end
for _, arg in ipairs(args) do
if (optionsMap[arg]) then
if (found) then
return true, L("(Duplicated option) You should only use one: ${a} ${b}", {a = found, b = arg})
end
found = arg
end
end
return false, found or default
end
function CommandsModule:UsageMessage(cmd)
local registry = Commands[cmd]
local args = {}
for _, v in ipairs(registry.args) do
table.insert(args, v.desc .. "\n")
end
return "\nUsage: /sam", registry.usage, "\n", unpack(args)
end
local function JointToString(...)
local text = ""
for _, v in ipairs({ ... }) do
text = text .. " " .. v
end
return text
end
function CommandsModule:PrintUsage(cmd)
if (not cmd) then
local text = "\nCommands:"
for i, registry in pairs(Commands) do
text = text .. "\n" .. "/sam " .. registry.usage
end
self:Print(text)
else
self:Print(self:UsageMessage(cmd))
end
end
function CommandsModule:HandleCMD(msg)
local command, nextPos = self:GetArgs(msg, 1)
local commandRegistry = Commands[command]
if (commandRegistry) then
local numArgs = #commandRegistry.args or 0
local args = { self:GetArgs(msg, numArgs, nextPos) }
if (HasMissingParam(args, numArgs, commandRegistry)) then
self:PrintUsage(command)
else
commandRegistry.func(unpack(args))
end
elseif (command == nil) then
Commands.open.func()
else
self:PrintUsage()
end
end