summaryrefslogtreecommitdiff
path: root/view.js
blob: 74e91ffd4dd5a13908650b2ccaddac5312d3b0e8 (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
/* -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set et sw=2 ts=2: */

/*
function createTask()
{
    var task = new Task();
    task.id = 42;
    task.dump = function() {
	alert(this.id);
    } 
}
*/

function createId(boardid, taskid)
{
  return "b" + boardid + "_t" + taskid;
}

function idFromStr(str)
{
  return str.substring(str.search('t') + 1, str.length);
}

function getTask(observeid, id)
{
    
}

function updateTask(observeid, id, name, value)
{
}

function getBoard(observeid)
{
    var board = document.getElementById("board_" + observeid);
    if(!board) {
        board = document.createElement("div");
        board.name = "board";
        board.setAttribute("class", "board");
        board.id = "board_" + observeid;
        boards.appendChild(board);
    }

    return board;
}

//////////////////////////////////////////////////////
//////////////////////////////////////////////////////

function clear() {
    document.getElementById("input_data").value = "";
}

function deleteTask(id) {
    socket_task.send("remove " + id + ";");
}

function drag(target, e) {
    e.dataTransfer.setData('Text', target.id);
    e.stopPropagation(); // <--- this fixes the drag target problem
}

function drop(target, e) {
    e.preventDefault();
    e.stopPropagation();

    var id = e.dataTransfer.getData('Text');
    var task = document.getElementById(id);
    socket_task.send("move " + idFromStr(id) + " " + idFromStr(target.id) + ";");
}

function observeMe(target, e)
{
  e.stopPropagation();
  socket_task.send("observe "+target.title+";");
}

function unobserveMe(target, e)
{
  e.stopPropagation();
  socket_task.send("unobserve "+target.title+";");
}

function showHideChildren(target, e)
{
  e.stopPropagation();
  updateid = idFromStr(target.id);
  if(target.style.backgroundColor != "red") {
    target.style.backgroundColor = "red";
    for(var i = 1; i < target.childNodes.length; i++) {
      target.childNodes[i].style.display = "none";
    }
  } else {
    target.style.backgroundColor = "grey";
    for(var i = 1; i < target.childNodes.length; i++) {
      target.childNodes[i].style.display = "block";
    }
  }
}

//
// Butt ugly.. but hey! it works...
//
var updateid;
var divtxt;
var oldtxt;
var oldtitle;
function onKeyUpHandler(target, e)
{
  if(e.which == 13) { // enter
    divtxt.removeChild(target);
    oldtxt.nodeValue = 'updating...';
    socket_task.send("update " + updateid + " \""+target.value+"\";");
  }
  if(e.which == 27) { // escape
    divtxt.removeChild(target);
    oldtxt.nodeValue = oldtitle;
  }
}

function onLostFocusHandler(target, e)
{
  if(target.value == oldtitle) {
    divtxt.removeChild(target);
    oldtxt.nodeValue = oldtitle;
  }
}

function editTitle(target, e)
{
  e.stopPropagation();
  updateid = idFromStr(target.id);
  if(updateid < 10) return;
  var inp = document.createElement("input");
  var txtdiv = document.getElementById(target.id + "_txt");
  divtxt = txtdiv;
  oldtxt = txtdiv.firstChild;
  oldtitle = oldtxt.nodeValue;
  oldtxt.nodeValue = "";
  inp.setAttribute("onkeyup", "onKeyUpHandler(this, event)");
  inp.setAttribute("onblur", "onLostFocusHandler(this, event)");
  inp.setAttribute("style", "border: inherit; padding: inherit; margin: inherit; background: inherit;");
  inp.value = oldtitle;
  lineedit = inp;
  txtdiv.appendChild(inp);
  inp.focus();
}