summaryrefslogtreecommitdiff
path: root/src/templates/admin/plugins.html
blob: 5e5a1b035e86c5fb83d669b1edac800e5568fcc2 (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
<html>
  <head>
    <title>Plugin manager</title>
    <link href="../../static/css/admin.css" rel="stylesheet" type="text/css" />
    <script src="../../static/js/jquery.js"></script>
    <script src="../../socket.io/socket.io.js"></script>
    <script>
      $(document).ready(function () {
        var socket = io.connect().of("/pluginfw/installer");

        var doUpdate = false;

        function updateHandlers() {
          $("#progress.dialog .close").unbind('click').click(function () {
            $("#progress.dialog").hide();
          });

          $("#do-search").unbind('click').click(function () {
            if ($("#search-query")[0].value != "")
              socket.emit("search", $("#search-query")[0].value);
          });

          $(".do-install").unbind('click').click(function (e) {
            var row = $(e.target).closest("tr");
            doUpdate = true;
            socket.emit("install", row.find(".name").html());
          });

          $(".do-uninstall").unbind('click').click(function (e) {
            var row = $(e.target).closest("tr");
            doUpdate = true;
            socket.emit("uninstall", row.find(".name").html());
          });
        }

        updateHandlers();

        socket.on('progress', function (data) {
          $("#progress.dialog .close").hide();
          $("#progress.dialog").show();
          var message = "Unknown status";
          if (data.message) {
            message = "<span class='status'>" + data.message.toString() + "</span>";
          }
          if (data.error) {
            message = "<span class='error'>" + data.error.toString() + "<span>";            
          }
          $("#progress.dialog .message").html(message);
          $("#progress.dialog .history").append("<div>" + message + "</div>");

          if (data.progress >= 1) {
            if (data.error) {
              $("#progress.dialog .close").show();
            } else {
              if (doUpdate) {
                doUpdate = false;
                socket.emit("load");
              }
              $("#progress.dialog").hide();
            }
          }
        });

        socket.on('search-result', function (data) {
          $("#search-results *").remove();
          for (plugin_name in data.results) {
            var plugin = data.results[plugin_name];
            var row = $("#search-result-template").clone();

            for (attr in plugin) {
              row.find("." + attr).html(plugin[attr]);
            }
            $("#search-results").append(row);
          }
          updateHandlers();
        });

        socket.on('installed-results', function (data) {
          $("#installed-plugins *").remove();
          for (plugin_name in data.results) {
            var plugin = data.results[plugin_name];
            var row = $("#installed-plugin-template").clone();

            for (attr in plugin.package) {
              row.find("." + attr).html(plugin.package[attr]);
            }
            $("#installed-plugins").append(row);
          }
          updateHandlers();
        });

        socket.emit("load");

      });
    </script>
  </head>
  <body>
    <% if (errors.length) { %>
      <div class="errors">
        <% errors.forEach(function (item) { %>
          <div class="error"><%= item.toString() %></div>
        <% }) %>
      </div>
    <% } %>


    <h1>Installed plugins</h1>
    <table>
      <thead>
        <tr>
          <th>Name</th>
          <th>Description</th>
          <td></td>
        </tr>
      </thead>
      <tbody class="template">
        <tr id="installed-plugin-template">
          <td class="name"></td>
          <td class="description"></td>
          <td class="actions">
            <input type="button" value="Uninstall" class="do-uninstall">
          </td>
        </tr>
      </tbody>
      <tbody id="installed-plugins">
      </tbody>
    </table>



    <h1>Search for plugins to install</h1>
    <form>
      <input type="text" name="search" value="" id="search-query">
      <input type="button" value="Search" id="do-search">
    </form>
    <table>
      <thead>
        <tr>
          <th>Name</th>
          <th>Description</th>
          <td></td>
        </tr>
      </thead>
      <tbody class="template">
        <tr id="search-result-template">
          <td class="name"></td>
          <td class="description"></td>
          <td class="actions">
            <input type="button" value="Install" class="do-install">
          </td>
        </tr>
      </tbody>
      <tbody id="search-results">
      </tbody>
    </table>


    <div id="progress" class="dialog">
      <h1 class="title">
        Please wait: <span class="message"></span>
        <input type="button" class="close" value="Close">
      </h1>

      <div class="history"></div>
    </div>

  </body>
</html>