summaryrefslogtreecommitdiff
path: root/data/speeddial-head.html
blob: 70def63781961744f6d2a53c2c4043de37f7fb8f (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
344
345
346
347
348
349
350
351
<!--
 Speed Dial head template for Midori.
 Copyright (C) 2009 Jean-François Guchens <zcx000@gmail.com>
 Copyright (C) 2011 Paweł Forysiuk <tuxator@o2.pl>
 Copyright (C) 2011 Cassidy James <email@cassidyjames.com>
 This file is licensed under the terms of the expat license, see the file EXPAT.
-->

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>{title}</title>
    <style>

    /* Animations */

    @-webkit-keyframes popin {
        0%   { opacity: 0.0; -webkit-transform: scale(0.00); }
        75%  { opacity: 0.5; -webkit-transform: scale(1.15); }
        100% { opacity: 1.0; -webkit-transform: scale(1.00); }
    }

    /* Styles */

    * {
        margin: 0;
        padding: 0;
        cursor: default;
        font-size: 13px;
        color: #4d4d4d;
        -webkit-user-select: none;
    }

    html, body {
        font-family: sans-serif;
        width: 100%;
        height: 100%;
        outline: 0;
        background: #eee;
    }

    input {
        width: 85%;
    }

    #content {
        width: 96%;
        height: 85%;
        margin: 0 auto;
        padding-top: 5%;
        padding-left: 2%;
    }

    div.shortcut {
        width: 25%;
        height: 33%;
        float: left;
    }

    div.shortcut .preview {
        width: 85%;
        height: 75%;
        margin: auto;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12),
                    0 1px 2px rgba(0,0,0,0.24);
        position: relative;
        border-radius: 3px;
        transition: all 200ms ease-in-out;
        outline: none;
    }

    div.shortcut .preview img {
        width: 100%;
        height: 100%;
        cursor: pointer;
        border-radius: 3px;
    }
    
    div.shortcut .preview.new {
        background-color: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.15);

        box-shadow: inset 0 0 1px 1px rgba(0,0,0,0.05),
                          0 1px 0 0 rgba(255,255,255,0.40);
        overflow: hidden;     
    }

    div.shortcut .preview.new .add {
        background-color: #777;
        width: 64px;
        height: 64px;
        line-height: 64px;
        text-align: center;
        border-radius: 32px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -32px;
        margin-top: -32px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12),
                    0 1px 2px rgba(0,0,0,0.24);
        outline: none;
    }
    
    div.shortcut .preview.new .add:after {
        content: "+";
        color: #fff;
        font-size: 48px;
        display: inline-block;
    }

    .title {
        background: transparent;
        border: 2px solid transparent;
        display: block;
        text-align: center;
        margin: 8px;
        margin-left: auto;
        margin-right: auto;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        cursor: text;
        outline: none;
        transition: all 200ms ease-in-out;
        padding-bottom: 6px;
    }
    
    .preview.new ~ .title {
        cursor: default;
    }
    
    .title.active {
        border-bottom-color: #4CAF50;
    }

    .cross {
        color: #fff;
        display: block;
        width: 32px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        top: -14px;
        right: -14px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        background-color: #555;
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12),
                    0 1px 2px rgba(0,0,0,0.24);
    }
    
    .cross:after {
        content: '+';
        -webkit-transform: rotate(45deg);
        font-size: 22px;
        display: inline-block;
    }

    div.shortcut .preview:hover .cross {
        -webkit-animation: popin 250ms ease-in-out;
        opacity: 1;
    }

    .box.added {
        display:none;
    }

    .selectable {
        -webkit-user-select: text;
    }
    </style>

    <script type="text/javascript">
    var previousName = "";

    function input_key_down (ev) {
        // 13 is the key code for enter
        if(ev.keyCode == 13) ev.target.blur();
        // 27 is the key code for escape
        if(ev.keyCode == 27) {
            ev.target.value = previousName;
            ev.target.blur();
        }
    }

    function add_tile (ev) {
        ev.preventDefault();

        var url = prompt ("{enter_shortcut_address}", "http://");
        if (!url)
            return false;

        if (url.indexOf ("://") == -1)
            url = "http://" + url;

        var id = ev.target.parentNode.parentNode.id;
        console.log ("speed_dial-save-add " + id + " " + url);
    }

    function done_editing_title (ev) {
        input = ev.target;
        input.className = "title";

        var name = ev.target.value;
        if (name == "")
            name = previousName;
        var id = ev.target.parentNode.id;
        console.log ("speed_dial-save-rename " + id + " " + name);
    }

    function editing_tile (ev) {
        input = ev.target;
        previousName = input.value;
        // indicate to user they are editing the title
        input.className = input.className + " active";
    }

    function delete_tile (ev) {
        ev.preventDefault();

        if (!confirm("{are_you_sure}"))
            return;

        var id = ev.target.parentNode.parentNode.id;
        console.log ("speed_dial-save-delete " + id);
    }

    var firstNode, secondNode;
    var cursor;

    var get_dial_div = function (ele) {
        var dial_div;
        if (ele.nodeName == 'IMG')
            dial_div = ele.parentNode.parentNode.parentNode;
        if (ele.className == 'title')
            dial_div = ele.parentNode;
        if (ele.className.indexOf ('shortcut') != -1)
            dial_div = ele;
        return dial_div;
    }

    function click (ev) {
        if (ev == undefined)
            return;

        /* If the target of the event is an element of class title
         * and not also of class add-shortcut we are editing title
         */
        var classes = ev.target.className.split(" ");
        var edit_title = false;
        for (var i = 0; i < classes.length; i++) {
            if(classes[i] == "add-shortcut") {
                edit_title = false;
                break;
            }
            if(classes[i] == "title") 
                edit_title = true;
        }

        if(edit_title) 
            return;

        ev.preventDefault();
        var ele = ev.target;
        cursor = ele.style.cursor;
        ele.style.cursor = 'move';

        var eparent = get_dial_div (ele);
        if (eparent != undefined) {
            eparent.className = 'shortcut selected';
            firstNode = eparent.id;
        }
    };

    function up (ev) {
        if (ev == undefined)
            return;

        ev.preventDefault();
        ele = ev.target;
        var eparent = get_dial_div (ele);

        ele.style.cursor = cursor;
        if(eparent != undefined) secondNode = eparent.id;
        else return;

        /* ommit just mere clicking the dial */
        if (firstNode != secondNode && firstNode != undefined)
            swap();
    };

    function over (ev) {
        if (ev == undefined)
            return;

        ev.preventDefault();
        var ele = ev.target;
        var eparent = get_dial_div (ele);

        var dial = document.getElementsByClassName("shortcut");
        if (firstNode != undefined)
        {
            eparent.className = 'shortcut selected';
            for (var i = 0; i < dial.length; i++) {
                if (eparent.id != firstNode.id && dial[i].id != eparent.id) {
                    dial[i].className = 'shortcut';
                }
            }
        }
        ele.style.cursor = cursor;
    }

    function swap () {
        console.log ("speed_dial-save-swap " + firstNode + " " + secondNode);
    };

    function init () {
        var new_tile = document.getElementsByClassName ("preview new");
        new_tile[0].addEventListener ('click', add_tile, false);

        var titles = document.getElementsByClassName ("title");
        var len = titles.length;
        for (var i = 0; i < len; i++) {
            if (titles[i].parentNode.childNodes[0].className != "preview new") {
                titles[i].addEventListener ('click', editing_tile, false);
                titles[i].addEventListener ('blur', done_editing_title, false);
                titles[i].addEventListener ('keydown', input_key_down, false);
            }
        }

        var crosses = document.getElementsByClassName ("cross");
        var len = crosses.length;
        for (var i = 0; i < len; i++)
            crosses[i].addEventListener ('click', delete_tile, false);

        var occupied_tiles = document.getElementsByClassName ("shortcut");
        var len = occupied_tiles.length;
        for (var i = 0; i < len; i++) {
            if (occupied_tiles[i].childNodes[0].className != "preview new") {
                occupied_tiles[i].addEventListener('mousedown', click, false);
                occupied_tiles[i].addEventListener('mouseover', over, false);
                occupied_tiles[i].addEventListener('mouseup', up, false);
            }
        }
    }
    </script>
</head>
<body onload="init ();">
    <div id="content">