enyo.kind({
name: "biblez.moduleManager",
kind: "enyo.FittableRows",
fit: true,
events: {
onBack: "",
onInstalled: ""
},
components: [
{name: "messagePopup", kind: "onyx.Popup", centered: true, floating: true, classes: "message-popup"},
{name: "scrim", kind: "onyx.Scrim", classes: "onyx-scrim-translucent"},
{kind: "onyx.MoreToolbar", components: [
{kind: "onyx.IconButton", src: "assets/back.png", ontap: "handleBack"},
{content: $L("Module Manager")}
]},
{name: "panel", arrangerKind: "CollapsingArranger", fit: true, kind: "Panels", classes: "app-panels", components: [
{name: "panelLang", kind: "enyo.FittableRows", components: [
{classes: "center", components: [{kind: "onyx.Spinner", name: "spinner", classes: "onyx-light center"}]},
{name: "langList", kind: "List", fit: true, touch: true, onSetupItem: "setupLangItem", components: [
{classes: "item", ontap: "handleLanguage", components: [
{kind: "enyo.FittableColumns", components: [
{name: "langShort", classes: "item-left"},
{name: "langName", style: "font-style: italic;"}
]}
]}
]}
]},
{name: "panelModules", kind: "enyo.FittableRows", components: [
{name: "modList", kind: "List", fit: true, touch: true, onSetupItem: "setupModItem", components: [
{classes: "item", ontap: "handleModule", components: [
{name: "modName"}
]}
]}
]},
{name: "panelDescription", kind: "enyo.FittableRows", components: [
{kind: enyo.Scroller, touch: true, fit: true, components: [
{name: "detailsContainer", showing: false, classes: "content-container", components: [
{name: "detailsName", classes: "title"},
//{kind: "onyx.ProgressBar", name: "progressBar", progress: 0, showing: false, showStripes: false},
{kind: "onyx.Button", ontap: "installModule", name: "btnInstall", classes: "onyx-affirmative", content: $L("Install Module"), style: "margin-left: 10px;"},
{kind: "onyx.Button", ontap: "removeModule", name: "btnRemove", showing: false, classes: "onyx-negative", content: $L("Remove Module"), style: "margin-left: 10px;"},
{name: "detailsDescription", allowHtml: true, classes: "nice-padding"}
]}
]}
]}
]},
{kind: "onyx.MoreToolbar", name: "bottomTB", components: [
{kind: "onyx.PickerDecorator", components: [
{},
{name: "repoPicker", kind: "onyx.Picker", onSelect: "handleRepoChange"}
]},
{kind: "onyx.ProgressBar", name: "progressBar", progress: 0, showing: false, showStripes: false, fit: true}
]}
],
lang: [],
started: false,
repos: [],
modules: [],
langModules: [],
currentModule: null,
installedModules: [],
start: function () {
if (!this.started) {
//this.$.scrim.show();
this.$.spinner.show();
api.get("repos", enyo.bind(this, function (inError, inData) {
if(!inData)
this.getRepos();
else
this.setupRepoPicker(inData.repos, inData.currentRepo);
}));
}
this.getInstalledModules();
this.started = true;
},
getInstalledModules: function () {
sword.moduleMgr.getModules(enyo.bind(this, function (inError, inModules) {
//console.log(inModules);
if(!inError && inModules.length !== 0) {
this.installedModules = inModules;
}
}));
},
handleBack: function() {
if(enyo.Panels.isScreenNarrow()) {
if(this.$.panel.getIndex() !== 0)
this.$.panel.previous();
else
this.doBack();
} else this.doBack();
},
handleRepoChange: function (inSender, inEvent) {
this.$.detailsContainer.hide();
this.$.modList.setCount(0);
this.$.modList.refresh();
this.$.langList.setCount(0);
this.$.langList.refresh();
this.$.spinner.show();
this.$.panel.setIndex(0);
api.get("repos", enyo.bind(this, function(inError, inRepos) {
if(!inError) {
inRepos["currentRepo"] = this.repos[inEvent.selected.index];
api.put(inRepos);
} else
this.handleError(inError);
}));
//console.log(inEvent.selected.index);
this.getRemoteModules(this.repos[inEvent.selected.index]);
},
getRepos: function () {
if(navigator.onLine)
sword.installMgr.getRepositories(enyo.bind(this, function (inError, inRepos) {
if (!inError) {
api.put({id: "repos", repos: inRepos, lastRepoUpdate: {time: new Date().getTime()}},
enyo.bind(this, function (inError, inId) {
if(!inError)
this.setupRepoPicker(inRepos);
else
this.handleError(inError);
})
);
} else {
this.handleError(inError);
}
}));
else {
this.$.spinner.stop();
this.handleError({message: $L("You need an internet connection to download modules!")});
}
},
setupRepoPicker: function (inRepos, currentRepo) {
var items = [],
cw = null;
inRepos.forEach(function(repo, idx) {
if ((currentRepo && repo.name === currentRepo.name) || repo.name === "CrossWire") {
items.push({content: repo.name, index: idx, active: true});
cw = repo;
} else items.push({content: repo.name, index: idx});
});
this.repos = inRepos;
this.$.repoPicker.createComponents(items, {owner: this});
this.$.repoPicker.render();
if (currentRepo)
this.getRemoteModules(currentRepo);
else
this.getRemoteModules(cw);
},
getRemoteModules: function (inRepo) {
//console.log(inRepo);
api.get("downloadedModules", enyo.bind(this, function (inError, allModules) {
//console.log(inRepo, allModules, this.repos);
if(!inError) {
if(allModules && allModules.hasOwnProperty(inRepo.name.replace(" ", ""))) {
this.modules = allModules[inRepo.name.replace(" ", "")].modules;
this.prepareLangList(this.modules);
} else {
if (navigator.onLine)
sword.installMgr.getModules(inRepo, enyo.bind(this, function (inError, inModules) {
//enyo.log(inError, inModules, inModules.length);
if(!inError) {
if(!allModules) allModules = {id: "downloadedModules"};
allModules[inRepo.name.replace(" ", "")] = {modules: inModules, name: inRepo.name};
api.put(allModules, enyo.bind(this, function (inError, inId) {
if(inError)
this.handleError(inError);
}));
this.modules = inModules;
this.prepareLangList(this.modules);
} else {
this.handleError((inError.message) ? inError.message : inError);
}
}));
else {
this.$.spinner.stop();
this.handleError({message: $L("You need an internet connection to download modules!")});
}
}
} else
this.handleError(inError);
}));
},
prepareLangList: function (inModules) {
this.$.spinner.hide();
this.lang = [];
inModules.forEach(enyo.bind(this, function(module, idx) {
//console.log(module.Lang, inModules[idx+1].Lang);
if (idx === 0) {
this.lang.push({lang: module.Lang});
} else if (idx > 0 && module.Lang !== inModules[idx-1].Lang) {
this.lang.push({lang: module.Lang});
}
}));
this.$.panelLang.reflow();
this.$.langList.setCount(this.lang.length);
this.$.langList.refresh();
},
setupLangItem: function(inSender, inEvent) {
var data = this.lang[inEvent.index];
this.$.langShort.setContent(data.lang);
this.$.langName.setContent(languages[data.lang]);
//this.$.index.setContent(inEvent.index);
},
handleLanguage: function(inSender, inEvent) {
if(enyo.Panels.isScreenNarrow()) {
this.$.panel.next();
}
this.langModules = [];
this.modules.forEach(enyo.bind(this, function (module, idx) {
if(module.Lang === this.lang[inEvent.index].lang)
this.langModules.push(module);
}));
this.$.modList.setCount(this.langModules.length);
this.$.modList.refresh();
},
// Module List //
setupModItem: function (inSender, inEvent) {
var data = this.langModules[inEvent.index];
this.$.modName.setContent(data.Description);
},
handleModule: function (inSender, inEvent) {
if(enyo.Panels.isScreenNarrow()) {
this.$.panel.next();
}
this.$.btnInstall.show();
this.$.btnRemove.hide();
this.currentModule = this.langModules[inEvent.index];
this.installedModules.forEach(enyo.bind(this, function(mod) {
if(mod.modKey === this.currentModule.moduleKey) {
this.$.btnInstall.hide();
this.$.btnRemove.show();
}
}));
this.$.detailsContainer.show();
this.$.detailsName.setContent(this.currentModule.Description);
this.$.detailsDescription.setContent(this.currentModule.About.replace(/\\par/g, "<br>"));
},
installModule: function (inSender, inEvent) {
//console.log(this.currentModule.url);
this.$.btnInstall.setDisabled(true);
this.$.progressBar.show();
this.$.bottomTB.render();
sword.installMgr.installModule(this.currentModule.url, enyo.bind(this, function (inError, inModule) {
if (!inError) {
this.doInstalled();
this.getInstalledModules();
} else {
console.log(inError);
this.handleError(inError);
}
//console.log(inError, inModule);
this.$.progressBar.hide();
this.$.progressBar.setProgress(0);
this.$.btnInstall.setDisabled(false);
this.$.btnInstall.hide();
this.$.btnRemove.show();
}),
enyo.bind(this, function (inEvent) {
this.$.progressBar.animateProgressTo(inEvent.loaded/inEvent.total*100);
}));
},
removeModule: function (inSender, inEvent) {
sword.installMgr.removeModule(this.currentModule.moduleKey, enyo.bind(this, function (inError) {
if(!inError) {
this.doInstalled();
this.$.btnInstall.show();
this.$.btnRemove.hide();
} else {
this.handleError(inError);
}
}));
},
clearDB: function () {
sword.dataMgr.clearDatabase();
},
handleError: function (inMessage) {
if (inMessage.message)
inMessage = inMessage.message;
this.$.messagePopup.setContent(inMessage);
this.$.messagePopup.show();
}
});