mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-11 05:36:34 +01:00
103 lines
3.8 KiB
JavaScript
Executable File
103 lines
3.8 KiB
JavaScript
Executable File
/*
|
|
* Copyright (c) Codiad & daeks (codiad.com), distributed
|
|
* as-is and without warranty under the MIT License. See
|
|
* [root]/license.txt for more. This information must remain intact.
|
|
*/
|
|
|
|
(function(global, $){
|
|
|
|
var codiad = global.codiad;
|
|
|
|
$(function() {
|
|
codiad.market.init();
|
|
});
|
|
|
|
codiad.market = {
|
|
|
|
controller: 'components/market/controller.php',
|
|
dialog: 'components/market/dialog.php',
|
|
|
|
init: function() {
|
|
},
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Open marketplace
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
list: function(type, note) {
|
|
$('#modal-content form')
|
|
.die('submit'); // Prevent form bubbling
|
|
codiad.modal.load(800, this.dialog + '?action=list&type='+type+'¬e='+note);
|
|
},
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Search marketplace
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
search: function(e, query, note) {
|
|
$('#modal-content form')
|
|
.die('submit'); // Prevent form bubbling
|
|
var key= e.charCode || e.keyCode || e.which;
|
|
if(query != '' && key==13) {
|
|
codiad.modal.load(800, this.dialog + '?action=list¬e=' + note + '&type=undefined&query='+query);
|
|
}
|
|
},
|
|
|
|
openInBrowser: function(path) {
|
|
window.open(path, '_newtab');
|
|
},
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Install
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
install: function(page, type, name, repo) {
|
|
var _this = this;
|
|
if(repo != '') {
|
|
$('#modal-content').html('<div id="modal-loading"></div><div align="center">Installing ' + name + '...</div><br>');
|
|
$.get(_this.controller + '?action=install&type=' + type + '&name=' + name + '&repo=' + repo, function(data) {
|
|
var response = codiad.jsend.parse(data);
|
|
if (response == 'error') {
|
|
codiad.message.error(response.message);
|
|
}
|
|
_this.list(page, true);
|
|
});
|
|
} else {
|
|
codiad.message.error('No Repository URL');
|
|
}
|
|
},
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Remove
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
remove: function(page, type, name) {
|
|
var _this = this;
|
|
$('#modal-content').html('<div id="modal-loading"></div><div align="center">Deleting ' + name + '...</div><br>');
|
|
$.get(_this.controller + '?action=remove&type=' + type + '&name=' + name, function(data) {
|
|
var response = codiad.jsend.parse(data);
|
|
if (response == 'error') {
|
|
codiad.message.error(response.message);
|
|
}
|
|
_this.list(page, true);
|
|
});
|
|
},
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Update
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
update: function(page, type, name) {
|
|
var _this = this;
|
|
$('#modal-content').html('<div id="modal-loading"></div><div align="center">Updating ' + name + '...</div><br>');
|
|
$.get(_this.controller + '?action=update&type=' + type + '&name=' + name, function(data) {
|
|
var response = codiad.jsend.parse(data);
|
|
if (response == 'error') {
|
|
codiad.message.error(response.message);
|
|
}
|
|
_this.list(page, false);
|
|
});
|
|
},
|
|
};
|
|
})(this, jQuery);
|