mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
// @author rubenwardy
|
|
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
|
|
|
|
$(function() {
|
|
function finish() {
|
|
$(".pkg_wiz_1").hide()
|
|
$(".pkg_wiz_2").hide()
|
|
$(".pkg_repo").show()
|
|
$(".pkg_meta").show()
|
|
}
|
|
|
|
$(".pkg_meta").hide()
|
|
$(".pkg_wiz_1").show()
|
|
$("#pkg_wiz_1_next").click(function() {
|
|
const repoURL = $("#repo").val();
|
|
if (repoURL.trim() != "") {
|
|
$(".pkg_wiz_1").hide()
|
|
$(".pkg_wiz_2").show()
|
|
$(".pkg_repo").hide()
|
|
|
|
function setSpecial(id, value) {
|
|
if (value != "") {
|
|
var ele = $(id);
|
|
ele.val(value);
|
|
ele.trigger("change")
|
|
}
|
|
}
|
|
|
|
performTask("/tasks/getmeta/new/?url=" + encodeURI(repoURL)).then(function(result) {
|
|
$("#name").val(result.name)
|
|
setSpecial("#provides_str", result.provides)
|
|
$("#title").val(result.title)
|
|
$("#repo").val(result.repo || repoURL)
|
|
$("#issueTracker").val(result.issueTracker)
|
|
$("#desc").val(result.description)
|
|
$("#shortDesc").val(result.short_description)
|
|
setSpecial("#harddep_str", result.depends)
|
|
setSpecial("#softdep_str", result.optional_depends)
|
|
$("#shortDesc").val(result.short_description)
|
|
if (result.forumId) {
|
|
$("#forums").val(result.forumId)
|
|
}
|
|
|
|
if (result.type && result.type.length > 2) {
|
|
$("#type").val(result.type)
|
|
}
|
|
|
|
finish()
|
|
}).catch(function(e) {
|
|
alert(e)
|
|
$(".pkg_wiz_1").show()
|
|
$(".pkg_wiz_2").hide()
|
|
$(".pkg_repo").show()
|
|
// finish()
|
|
})
|
|
} else {
|
|
finish()
|
|
}
|
|
})
|
|
})
|