local _, Cell = ... local L = Cell.L local F = Cell.funcs local P = Cell.pixelPerfectFuncs local Serializer = LibStub:GetLibrary("LibSerialize") local LibDeflate = LibStub:GetLibrary("LibDeflate") local deflateConfig = {level = 9} local isImport, imported, exported = false, {}, "" local importExportFrame, importBtn, title, textArea local function DoImport() CellDB["quickAssist"][Cell.vars.playerSpecID] = imported Cell.Fire("UpdateQuickAssist") Cell.Fire("ReloadQuickAssist") importExportFrame:Hide() end local function CreateQuickAssistImportExportFrame() importExportFrame = CreateFrame("Frame", "CellOptionsFrame_QuickAssistImportExport", Cell.frames.quickAssistTab, "BackdropTemplate") importExportFrame:Hide() Cell.StylizeFrame(importExportFrame, nil, Cell.GetAccentColorTable()) importExportFrame:EnableMouse(true) importExportFrame:SetFrameLevel(Cell.frames.quickAssistTab:GetFrameLevel() + 50) P.Size(importExportFrame, 430, 170) importExportFrame:SetPoint("TOPLEFT", P.Scale(1), -30) if not Cell.frames.quickAssistTab.mask then Cell.CreateMask(Cell.frames.quickAssistTab, nil, {1, -1, -1, 1}) Cell.frames.quickAssistTab.mask:Hide() end -- close local closeBtn = Cell.CreateButton(importExportFrame, "×", "red", {18, 18}, false, false, "CELL_FONT_SPECIAL", "CELL_FONT_SPECIAL") closeBtn:SetPoint("TOPRIGHT", P.Scale(-5), P.Scale(-1)) closeBtn:SetScript("OnClick", function() importExportFrame:Hide() end) -- import importBtn = Cell.CreateButton(importExportFrame, L["Import"], "green", {57, 18}) importBtn:Hide() importBtn:SetPoint("TOPRIGHT", closeBtn, "TOPLEFT", P.Scale(1), 0) importBtn:SetScript("OnClick", function() -- lower frame level importExportFrame:SetFrameLevel(Cell.frames.quickAssistTab:GetFrameLevel() + 25) local popup = Cell.CreateConfirmPopup(Cell.frames.quickAssistTab, 200, L["Overwrite Quick Assist"].."?", function(self) DoImport() end, nil, true) popup:SetPoint("TOPLEFT", importExportFrame, 117, -50) textArea.eb:ClearFocus() end) -- title title = importExportFrame:CreateFontString(nil, "OVERLAY", "CELL_FONT_CLASS") title:SetPoint("TOPLEFT", 5, -5) -- textArea textArea = Cell.CreateScrollEditBox(importExportFrame, function(eb, userChanged) if userChanged then if isImport then imported = {} local text = eb:GetText() -- check local version, data = string.match(text, "^!CELL:(%d+):QUICKASSIST!(.+)$") version = tonumber(version) if version and data then if version >= Cell.MIN_QUICKASSIST_VERSION then local success data = LibDeflate:DecodeForPrint(data) -- decode success, data = pcall(LibDeflate.DecompressDeflate, LibDeflate, data) -- decompress success, data = Serializer:Deserialize(data) -- deserialize if success and data then imported = data importBtn:SetEnabled(true) else title:SetText(L["Import"]..": |cffff2222"..L["Error"]) importBtn:SetEnabled(false) end else -- incompatible version title:SetText(L["Import"]..": |cffff2222"..L["Incompatible Version"]) importBtn:SetEnabled(false) end else title:SetText(L["Import"]..": |cffff2222"..L["Error"]) importBtn:SetEnabled(false) end else eb:SetText(exported) eb:SetCursorPosition(0) eb:HighlightText() end end end) Cell.StylizeFrame(textArea.scrollFrame, {0, 0, 0, 0}, Cell.GetAccentColorTable()) textArea:SetPoint("TOPLEFT", P.Scale(5), P.Scale(-20)) textArea:SetPoint("BOTTOMRIGHT", P.Scale(-5), P.Scale(5)) -- highlight text textArea.eb:SetScript("OnEditFocusGained", function() textArea.eb:HighlightText() end) textArea.eb:SetScript("OnMouseUp", function() if not isImport then textArea.eb:HighlightText() end end) importExportFrame:SetScript("OnHide", function() importExportFrame:Hide() isImport = false exported = "" imported = {} -- hide mask Cell.frames.quickAssistTab.mask:Hide() end) importExportFrame:SetScript("OnShow", function() -- raise frame level importExportFrame:SetFrameLevel(Cell.frames.quickAssistTab:GetFrameLevel() + 50) Cell.frames.quickAssistTab.mask:Show() end) end local init function F.ShowQuickAssistImportFrame() if not init then init = true CreateQuickAssistImportExportFrame() end importExportFrame:Show() isImport = true importBtn:Show() importBtn:SetEnabled(false) exported = "" title:SetText(L["Import"]) textArea:SetText("") textArea.eb:SetFocus(true) end function F.ShowQuickAssistExportFrame(quickAssistTable) if not init then init = true CreateQuickAssistImportExportFrame() end if not quickAssistTable then return end importExportFrame:Show() isImport = false importBtn:Hide() title:SetText(L["Export"]) local prefix = "!CELL:"..Cell.versionNum..":QUICKASSIST!" exported = Serializer:Serialize(quickAssistTable) -- serialize exported = LibDeflate:CompressDeflate(exported, deflateConfig) -- compress exported = LibDeflate:EncodeForPrint(exported) -- encode exported = prefix..exported textArea:SetText(exported) textArea.eb:SetFocus(true) end