X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/f464053e71c47280c84c901db3ea3faa7d0222c2..f7ee98cbd525246757a426514eb0641503bae542:/Cydia.app/package.js diff --git a/Cydia.app/package.js b/Cydia.app/package.js index 52025a94..418e44a2 100644 --- a/Cydia.app/package.js +++ b/Cydia.app/package.js @@ -23,40 +23,130 @@ } };*/ -$(function () { +function space(selector, html, max) { + var node = $(selector); + node.html(html); + var width = node.width(); + if (width > max) { + var spacing = (max - node.width()) / (html.length - 1) + "px"; + node.css("letter-spacing", spacing); + } +} + +function cache(url) { + return url.replace('://', '://ne.edgecastcdn.net/8003A4/'); +} + +var swap_, swap = function (on, off, time) { + setTimeout(swap_(on, off, time), time); +}; + +swap_ = function (on, off, time) { + return function () { + on.className = 'fade-out'; + off.className = 'fade-in'; + swap(off, on, time); + }; +}; + +var special_ = function () { + if (package == null) + return; + var id = package.id; var idc = encodeURIComponent(id); var name = package.name; - var regarding = encodeURIComponent("Cydia/APT: " + name); + var icon = 'cydia://package-icon/' + idc; + var api = 'http://cydia.saurik.com/api/'; + + var regarding = function (type) { + return encodeURIComponent("Cydia/APT(" + type + "): " + name); + }; + + $("#icon").css("background-image", 'url("' + icon + '")'); + //$("#reflection").src("cydia://package-icon/" + idc); - $("#icon").src("cydia://package-icon/" + idc); $("#name").html(name); - $("#latest").html(package.latest); + space("#latest", package.latest, 96); + + $.xhr(cache(api + 'package/' + idc), 'GET', {}, null, { + success: function (value) { + value = eval(value); + + if (typeof value.rating == "undefined") + $(".rating").addClass("deleted"); + else { + $("#rating-load").addClass("deleted"); + $("#rating-href").href(value.reviews); + + var none = $("#rating-none"); + var done = $("#rating-done"); + + if (value.rating == null) { + none.css("display", "block"); + } else { + done.css("display", "block"); + + $("#rating-value").css('width', 16 * value.rating); + } + } + + if (typeof value.icon != "undefined" && value.icon != null) { + var icon = $("#icon"); + var thumb = $("#thumb"); + + icon[0].className = 'flip-180'; + thumb[0].className = 'flip-360'; + + thumb.css("background-image", 'url("' + value.icon + '")'); + + setTimeout(function () { + icon.addClass("deleted"); + thumb[0].className = 'flip-0'; + }, 2000); + } + }, + + failure: function (status) { + $(".rating").addClass("deleted"); + } + }); + + $("#settings").href("cydia://package-settings/" + idc); + + var mode = package.mode; + if (mode == null) + $(".mode").addClass("deleted"); + else { + $("#mode").html(cydia.localize(mode)); + $("#mode-src").src("Modes/" + mode + ".png"); + } var warnings = package.warnings; var length = warnings == null ? 0 : warnings.length; if (length == 0) - $(".warnings").remove(); + $(".warnings").addClass("deleted"); else { var parent = $("#warnings"); var child = $("#warning"); - child.remove(); for (var i = 0; i != length; ++i) { var clone = child.clone(true); + clone.addClass("inserted"); parent.append(clone); - clone.xpath("label").html($.xml(warnings[i])); + clone.xpath("./div/label").html($.xml(warnings[i])); } + + child.addClass("deleted"); } var applications = package.applications; var length = applications == null ? 0 : applications.length; - if (length == 0) - $(".applications").remove(); - else { + + var child = $("#application"); + + /*if (length != 0) { var parent = $("#actions"); - var child = $("#application"); - child.remove(); for (var i = 0; i != length; ++i) { var application = applications[i]; @@ -65,28 +155,50 @@ $(function () { clone.href("cydia://launch/" + application[0]); clone.xpath("label").html("Run " + $.xml(application[1])); clone.xpath("img").src(application[2]); - console.log(0); } - } + }*/ + + child.addClass("deleted"); + + var commercial = package.hasTag('cydia::commercial'); + if (!commercial) + $(".commercial").addClass("deleted"); + + var _console = package.hasTag('purpose::console'); + if (!_console) + $(".console").addClass("deleted"); var author = package.author; if (author == null) - $(".author").remove(); + $(".author").addClass("deleted"); else { - $("#author").html(author.name); + space("#author", author.name, 160); if (author.address == null) - $("#author-icon").remove(); - else - $("#author-href").href("mailto:" + author.address + "?subject=" + regarding); + $("#author-icon").addClass("deleted"); + else { + var support = package.support; + if (support == null) + $("#author-href").href("mailto:" + author.address + "?subject=" + regarding("A")); + else + $("#author-href").href(support); + } } //$("#notice-src").src("http://saurik.cachefly.net/notice/" + idc + ".html"); + /*var store = commercial; + if (!store) + $(".activation").addClass("deleted"); + else { + var activation = api + 'activation/' + idc; + $("#activation-src").src(activation); + }*/ + var depiction = package.depiction; if (depiction == null) - $(".depiction").remove(); + $(".depiction").addClass("deleted"); else { - $(".description").display("none"); + $(".description").addClass("deleted"); $("#depiction-src").src(depiction); } @@ -99,65 +211,102 @@ $(function () { var homepage = package.homepage; if (homepage == null) - $(".homepage").remove(); + $(".homepage").addClass("deleted"); else $("#homepage-href").href(homepage); var installed = package.installed; if (installed == null) - $(".installed").remove(); + $(".installed").addClass("deleted"); else { $("#installed").html(installed); $("#files-href").href("cydia://files/" + idc); } - $("#id").html(id); + space("#id", id, 220); var section = package.section; if (section == null) - $(".section").remove(); - else - $("#section").html(package.section); + $(".section").addClass("deleted"); + else { + $("#section-src").src("cydia://section-icon/" + encodeURIComponent(section)); + $("#section").html(section); + } var size = package.size; if (size == 0) - $(".size").remove(); + $(".size").addClass("deleted"); else $("#size").html(size / 1024 + " kB"); var maintainer = package.maintainer; if (maintainer == null) - $(".maintainer").remove(); + $(".maintainer").addClass("deleted"); else { - $("#maintainer").html(maintainer.name); + space("#maintainer", maintainer.name, 153); if (maintainer.address == null) - $("#maintainer-icon").remove(); + $("#maintainer-icon").addClass("deleted"); else - $("#maintainer-href").href("mailto:" + maintainer.address + "?subject=" + regarding); + $("#maintainer-href").href("mailto:" + maintainer.address + "?subject=" + regarding("M")); } var sponsor = package.sponsor; if (sponsor == null) - $(".sponsor").remove(); + $(".sponsor").addClass("deleted"); else { - $("#sponsor").html(sponsor.name); + space("#sponsor", sponsor.name, 152); $("#sponsor-href").href(sponsor.address); } var source = package.source; if (source == null) { - $(".source").remove(); - $(".trusted").remove(); + $(".source").addClass("deleted"); + $(".trusted").addClass("deleted"); } else { + var host = source.host; + + $("#source-src").src("cydia://source-icon/" + encodeURIComponent(host)); $("#source-name").html(source.name); - if (!source.trusted) - $(".trusted").remove(); + if (source.trusted) + $("#trusted").href("cydia://package-signature/" + idc); + else + $(".trusted").addClass("deleted"); var description = source.description; if (description == null) - $(".source-description").remove(); + $(".source-description").addClass("deleted"); else $("#source-description").html(description); } -}); +}; + +$(special_); + +var special = function () { + $(".deleted").removeClass("deleted"); + $(".inserted").remove(); + + $("#icon")[0].className = 'flip-0'; + $("#thumb")[0].className = 'flip-180'; + + /* XXX: this could be better */ + $("#rating-none").css("display", "none"); + $("#rating-done").css("display", "none"); + + var depiction = $("#depiction-src"); + + depiction[0].outerHTML = ''; + + special_(); +}; + +cydia.setSpecial(special);