summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 80e38b841be4aa238ac9a0d08638da521b592bc5 (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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>

<html lang="en">
  <head>
    <meta name="charset" content="UTF-8" />
    <meta name="author" content="Jonas Earendel" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="description" content="Just testing some table sorting." />
    <title>sortable - the example page</title>
    <!-- <link rel="stylesheet" type="text/css" href="sortable-base.css" />
    <link rel="stylesheet" type="text/css" href="sortable.css" /> -->
    <link rel="stylesheet" type="text/css" href="example.css" />
  </head>
  <style></style>

  <body>
    <h1>Demos</h1>
    Here are some basic demos for the tiny table sorter found on
    <a href="https://github.com/tofsjonas/sortable">https://github.com/tofsjonas/sortable</a>
    <h2>Table with three &lt;tbody/&gt;, sorted separately:</h2>
    <table class="sortable" style="--sortable-th-bg: pink">
      <thead>
        <tr>
          <th><span>Role</span></th>
          <th>Name</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Genius</td>
          <td>Rick</td>
        </tr>
        <tr>
          <td><a href="javascript:alert('Inline javascript works!');">Sidekick</a></td>
          <td><a id="morty" href="#">Morty</a></td>
        </tr>
      </tbody>
      <tbody style="font-style: italic">
        <tr>
          <td>Genius</td>
          <td>Rick</td>
        </tr>
        <tr>
          <td><a href="javascript:alert('Inline javascript works!');">Sidekick</a></td>
          <td><a id="morty" href="#">Morty</a></td>
        </tr>
      </tbody>
      <tbody style="font-weight: bold">
        <tr>
          <td>Genius</td>
          <td>Rick</td>
        </tr>
        <tr>
          <td><a href="javascript:alert('Inline javascript works!');">Sidekick</a></td>
          <td><a id="morty" href="#">Morty</a></td>
        </tr>
      </tbody>
    </table>

    <h2>An example with arrows on the left side:</h2>

    <table class="sortable lefty">
      <thead>
        <tr>
          <th><span>Text</span></th>
          <th class="indicator-left">Number</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>jkl</td>
          <td>0.4</td>
        </tr>
        <tr>
          <td>abc</td>
          <td>0</td>
        </tr>
        <tr>
          <td>def</td>
          <td>0.2</td>
        </tr>
        <tr>
          <td>ghi</td>
          <td></td>
        </tr>
      </tbody>
    </table>

    <script>
      document.getElementById('morty').addEventListener('click', function (e) {
        e.preventDefault()
        alert('event listeners also work!')
      })
    </script>

    <h2>Using the data-sort attribute</h2>

    <p>Here 1.5GB has <code>data-sort="1610612736"</code> and 900MB has <code>data-sort="943718400"</code></p>
    <p>
      The same with the dates. 03/18/2021 is turned into <code>data-sort="20210318"</code> and 12/09/1965 into
      <code>data-sort="19651209"</code>
    </p>
    <p>Otherwise the sorting would be wrong.</p>
    <table class="sortable advanced-table">
      <thead>
        <tr>
          <th>Movie Name</th>
          <th>Size</th>
          <th>Release date</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>The Sound of Music</td>
          <td>1.5GB</td>
          <td>12/09/1965</td>
        </tr>
        <tr>
          <td>Zack Snyder's Justice League</td>
          <td>900MB</td>
          <td>03/18/2021</td>
        </tr>
      </tbody>
    </table>

    <h2>Slightly larger</h2>

    <p>"Ram" has class="no-sort", which has the css property "pointer-events: none;"</p>
    <p>"Screen width" has the "css only" way of disabling sorting.</p>

    <table class="sortable">
      <thead>
        <tr>
          <td colspan="3">personal</td>
          <td colspan="5">hardware</td>
          <td colspan="4">software</td>
        </tr>
        <tr>
          <th>job title</th>
          <th>name</th>
          <th>company</th>
          <th>processor</th>
          <th class="no-sort">ram(not sortable)</th>
          <th>graphics card</th>
          <th>screen width</th>
          <th>screen height</th>
          <th>platform</th>
          <th>browser</th>
          <th>browser version</th>
          <th>language</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Boss</td>
          <td>Stan the Man</td>
          <td>Monsters Inc</td>
          <td>AMD</td>
          <td>2</td>
          <td>Nvidia</td>
          <td>1510</td>
          <td>981</td>
          <td>Win32</td>
          <td>IE</td>
          <td>11</td>
          <td>en-us</td>
        </tr>
        <tr>
          <td>Stevedore</td>
          <td>Bridget Jones</td>
          <td>The Hand</td>
          <td>i7</td>
          <td>8gb</td>
          <td>-</td>
          <td>1530</td>
          <td>1080</td>
          <td>Linux x86_64</td>
          <td>Firefox</td>
          <td>54</td>
          <td>sv-se</td>
        </tr>
        <tr>
          <td>HR</td>
          <td>Bruce Wayne</td>
          <td>League of Shadows</td>
          <td>i5</td>
          <td>-</td>
          <td>GeForce</td>
          <td>1520</td>
          <td>1080</td>
          <td>Linux x86_64</td>
          <td>Opera</td>
          <td>46</td>
          <td>dk</td>
        </tr>
        <tr>
          <td>Programmer</td>
          <td>Bilbo Baggins</td>
          <td>Brotherhood of Evil Mutants</td>
          <td>i3</td>
          <td>4 gigabyte</td>
          <td>-</td>
          <td>130</td>
          <td>1080</td>
          <td>Linux x86_64</td>
          <td>Opera</td>
          <td>46</td>
          <td>en</td>
        </tr>
      </tbody>
      <tfoot></tfoot>
    </table>

    <h2>Even larger table (with ascending sort)</h2>

    <table class="sortable asc massive">
      <thead>
        <tr>
          <td colspan="3">personal</td>
          <td colspan="5">hardware</td>
          <td colspan="4">software</td>
        </tr>
        <tr>
          <th>job title</th>
          <th>name</th>
          <th>company</th>
          <th>processor</th>
          <th>ram</th>
          <th>graphics card</th>
          <th>screen width</th>
          <th>screen height</th>
          <th>platform</th>
          <th>browser</th>
          <th>browser version</th>
          <th>language</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Boss</td>
          <td>Stan the Man</td>
          <td>Monsters Inc</td>
          <td>AMD</td>
          <td>2</td>
          <td>Nvidia</td>
          <td>1510</td>
          <td>981</td>
          <td>Win32</td>
          <td>IE</td>
          <td>11</td>
          <td>en-us</td>
        </tr>
        <tr>
          <td>Slave</td>
          <td>Bridget Jones</td>
          <td>The Hand</td>
          <td>i7</td>
          <td>8gb</td>
          <td>-</td>
          <td>1530</td>
          <td>1080</td>
          <td>Linux x86_64</td>
          <td>Firefox</td>
          <td>54</td>
          <td>sv-se</td>
        </tr>
        <tr>
          <td>HR</td>
          <td>Bruce Wayne</td>
          <td>League of Shadows</td>
          <td>i5</td>
          <td>-</td>
          <td>GeForce</td>
          <td>1520</td>
          <td>1080</td>
          <td>Linux x86_64</td>
          <td>Opera</td>
          <td>46</td>
          <td>dk</td>
        </tr>
        <tr>
          <td>Programmer</td>
          <td>Bilbo Baggins</td>
          <td>Brotherhood of Evil Mutants</td>
          <td>i3</td>
          <td>4 gigabyte</td>
          <td>-</td>
          <td>130</td>
          <td>1080</td>
          <td>Linux x86_64</td>
          <td>Opera</td>
          <td>46</td>
          <td>en</td>
        </tr>
      </tbody>
      <tfoot></tfoot>
    </table>
    <script>
      var table = document.querySelector('.massive')
      var tbody = table.tBodies[0]
      var rows = [].slice.call(tbody.rows, 0)
      var fragment = document.createDocumentFragment()

      for (var k = 0; k < 50; k++) {
        for (var i = 0; i < rows.length; i++) {
          fragment.appendChild(rows[i].cloneNode(true))
        }
      }
      tbody.innerHTML = ''
      tbody.appendChild(fragment)
    </script>
    <!-- <script type="text/javascript" src="sortable.js"></script> -->
    <script src="sortable.js"></script>
    <script>
      function prepareAdvancedTable() {
        function convertSizeToBytes(str) {
          var matches = str.match(/^([0-9.]+)(\w+)$/)
          if (matches) {
            var vals = {
              kB: 1, // 1024 B
              KiB: 1, // 1024 B
              MB: 2, // 1024 * 1024 B
              GB: 3, // 1024 * 1024 * 1024 B
              TB: 4, // 1024 * 1024 * 1024 *1024 B
            }
            return (matches[1] || 0) * Math.pow(1024, vals[matches[2]])
          }
          return str
        }

        var size_table = document.querySelector('.advanced-table')
        var rows = size_table.tBodies[0].rows
        for (let i = 0; i < rows.length; i++) {
          const date_element = rows[i].cells[2]
          const size_element = rows[i].cells[1]
          date_element.setAttribute('data-sort', date_element.innerText.replace(/(\d+)\/(\d+)\/(\d+)/, '$3$1$2'))
          size_element.setAttribute('data-sort', convertSizeToBytes(size_element.innerText))
        }
      }
      prepareAdvancedTable()
    </script>
  </body>
</html>