summaryrefslogtreecommitdiff
path: root/js/guix-packages.js
blob: 7ab30a0329c806a39d469a9ab4ccd2cdb10deee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// guix-web - Web interface for GNU Guix
// Copyright © 2014  David Thompson <davet@gnu.org>
//
// This program is free software: you can redistribute it and/or
// modify it under the terms of the GNU Affero General Public License
// as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public
// License along with this program.  If not, see
// <http://www.gnu.org/licenses/>.

var guix = {};

guix.chunk = function(array, size) {
  return array.reduce(function(memo, value, i) {
    var currentSlice = _(memo).last();

    if(i / size < memo.length) {
      currentSlice.push(value);
    } else {
      memo.push([value]);
    }

    return memo;
  }, []);
};

guix.paginate = function(array, pageSize) {
  return guix.chunk(array, pageSize);
};

guix.Packages = function() {
  return m.request({ method: "GET", url: "packages.json" });
};

guix.controller = function() {
  var self = this;

  this.packages = guix.Packages();
  this.pages = m.prop([]);
  this.currentPageIndex = 0;
  this.pageSize = 20;
  this.searchTerm = m.prop("");

  // All packages are visible initially
  this.packages.then(function(packages) {
    self.pages(guix.paginate(packages, self.pageSize));
  });

  this.currentPage = function() {
    return self.pages()[self.currentPageIndex] || [];
  };

  this.isFirstPage = function() {
    return self.currentPageIndex === 0;
  };

  this.isLastPage = function() {
    return self.currentPageIndex === self.pages().length - 1;
  };

  this.isCurrentPage = function(i) {
    return self.currentPageIndex === i;
  };

  this.packageCount = function() {
    return self.pages().reduce(function(memo, page) {
      return memo + page.length;
    }, 0);
  };

  this.doSearch = function() {
    var regexp = new RegExp(this.searchTerm(), "i");

    this.pages(guix.paginate(this.packages().filter(function(package) {
      return regexp.test(package.name) ||
        regexp.test(package.synopsis);
    }), self.pageSize));
  };
};

guix.view = function(ctrl) {
  function renderName(package) {
    var name = package.name;

    return m("a", { href: "/package/".concat(name) }, name);
  }

  function renderHomepage(package) {
    if(package.homepage) {
      return m("a", { href: package.homepage }, package.homepage);
    } else {
      return "";
    }
  }

  function renderLicense(package) {
    function licenseLink(license) {
      return m("a", { href: license.uri }, license.name);
    }

    if(_.isArray(package.license)) {
      return m("ul.list-inline", package.license.map(function(license) {
        return m("li", licenseLink(license));
      }));
    } else if(package.license) {
      return licenseLink(package.license);
    } else {
      return "";
    }
  }

  function renderPagination() {
    function renderPage(text, opts) {
      return m("li", {
        class: opts.class || "",
        onclick: opts.onclick
      }, m("a", { href: "#" }, text));
    }

    return m("ul.pagination", [
      // Back page
      renderPage("«", {
        class: ctrl.isFirstPage() ? "disabled" : "",
        onclick: function() {
          ctrl.currentPageIndex--;

          return false;
        }
      })
    ].concat(ctrl.pages().map(function(page, i) {
      // Jump to page
      return renderPage(i + 1, {
        class: ctrl.isCurrentPage(i) ? "active" : "",
        onclick: function() {
          ctrl.currentPageIndex = i;

          return false;
        }
      });
    })).concat([
      // Forward page
      renderPage("»", {
        class: ctrl.isLastPage() ? "disabled" : "",
        onclick: function() {
          ctrl.currentPageIndex++;

          return false;
        }
      })
    ]));
  }

  return [
    m("h2", [
      "Packages",
      m("span.badge", ctrl.packageCount())
    ]),
    m("input.form-control", {
      type: "text",
      placeholder: "Search",
      onchange: m.withAttr("value", function(value) {
        ctrl.searchTerm(value);
        ctrl.doSearch();
      }),
      value: ctrl.searchTerm()
    }),
    m("table.table", [
      m("thead", [
        m("tr", [
          ["Name",
           "Version",
           "Synopsis",
           "Home Page",
           "License"].map(function(header) {
             return m("th", header);
           })
        ])
      ]),
      m("tbody", [
        ctrl.currentPage().map(function(package) {
          return m("tr", [
            m("td", renderName(package)),
            m("td", package.version),
            m("td", package.synopsis),
            m("td", renderHomepage(package)),
            m("td", renderLicense(package))
          ]);
        })
      ])
    ]),
    renderPagination()
  ];
};

m.module(document.getElementById("guix"), guix);