summaryrefslogtreecommitdiffstats
path: root/js/photo-tags.js
blob: 71dadd41c8150fdf4ca97f316651aebbac16180d (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
var pics = d3.select(".pics").select("ul");
var page;
var maxpage;

function init()
{
  /* populate data list with tags*/
  d3.json(webbase+"/getjson.php?S", function(json) {
      d3.select("#MyTags").selectAll("option").data(json)
        .enter().append("option").attr("value",function(d) {return d.name});
    });

  /* update form to point to new link */
  d3.select("input").on("keyup", function(d) {
      d3.select('form').attr("action",webbase+"/tag/"+document.getElementById('MyTagsInput').value.replace(" ","+"));
  });

  if (T!="")
    {
      var mycurrenttags = T.split(",");

      d3.select("#currenttags").select("button").remove();
      d3.select("#currenttags").selectAll("button")
        .data(mycurrenttags).enter()
        .append("button").attr("type","button").text( function(d) {return d;} );
    }
   else
    {
      d3.select("#currenttags").select("button").remove();
      d3.select("#currenttags").append("span").text( ' none');
    };
}

function load_content() {
  // d3.select(".debug").text("T,P,N = *"+T+"* *"+page+"* *"+N+"*");

  if (ID>=0)
    url = webbase+"/getjson.php?ID="+ID;
  else if(T!="")
    url = webbase+"/getjson.php?T="+T+"&P="+page;
  else
    url = webbase+"/getjson.php?P="+page;

  /* update pics */
  d3.json(url, function(json) {
      count=0;
      pics.selectAll("li").remove();
      picdata=json;

      /* if ID is set, just show one pictures, else create an array of pictures */
      if (ID>=0)
	{
	  var singlepicspace=pics.selectAll("li").data(picdata, function(d){return ID;}).enter().append("li").append("div").attr("class","singlepic");
	  singlepicspace.append("div").attr("class","left").append("img").attr("src",webbase+"/icons/left.png");
	  singlepicspace.append("img")
	    .attr("class","large")
	    .attr("src",function(d) {
		s = d.base_uri+'/'+d.filename;
		s = s.replace('file:\/\/'+dbprefix,webbase+'/Photos-small/');
		return s;
	      });
	  singlepicspace.append("div").attr("class","right").append("img").attr("src",webbase+"/icons/right.png");

	  update_thumbnails();
	}
      else
	{
	  d3.select(".nextprev").select("ul").selectAll("li").remove();
	  pics.selectAll("li").data(picdata)
	    .enter().append("li")
	    .append("a")
	    .on("click", function(d) { load_pic(d.id); })
	    .append("img")
	    .attr("src",function(d) {
		count++;
		s= d.base_uri+'/'+d.filename;
		s = s.replace('file:\/\/'+dbprefix,webbase+'/Photos-tiny/');
		return s;
	      });
	};
      checkbutton();
      update_permalink()
    });
}

function update_permalink() {
  /* update permalink */

  permalink = webbase;

  if(T!="")
    permalink += '/tag/' + T;
  if(page!=1)
    permalink += '/page/' + page;
  if(ID>0)
    permalink += '/pic/' + ID;

  d3.select(".permalink").html("Permalink: <a href=\""+permalink+"\">"+permalink+"</a>");
}

function prev_page() {
    if (page>1) page=page-1;
    load_content();
    update_page_index();
}

function next_page() {
    if (page<maxpage) page=page+1;
    load_content();
    update_page_index();
}

function prev_pic() {
}

function next_pic() {
}

function load_pic(myid) {
  ID=myid;
  update_page_index();
  update_thumbnails();
  load_content();
}

function tagcloud() {

  url = webbase+"/getjson.php?CLOUD=1";

  pics.selectAll("li").remove();

  var svgelement=pics.append("li")
    .append("svg").attr("width",400).attr("height",400);

  /* update pics */
  d3.json(url, function(json) {
      svgelement.selectAll("text").data(json).enter().append("text")
	.style("font-size", function(d){return (Math.log(d.count+1)/2.0)+"em"})
	.text(function(d) { return d.name+" "; })
	.on("mouseover", function(d){ d3.select(this).style("color","red")} )
	.on("mouseout", function(d){ d3.select(this).style("color","white")} )
	.on("click", function(d) { document.location.href=webbase+'/tag/'+d.name })
    });
}

function update_thumbnails(){
  if(T!="")
    url2 = webbase+"/getjson.php?NP=1&T="+T+"&ID="+ID;
  else
    url2 = webbase+"/getjson.php?NP=1&ID="+ID;

  var IDprev=-1;
  var IDnext=-1;
  var IDcurr=-1;
  d3.json(url2, function(json2) {
      /* figure out where the arrows on the pic should link to */
      all=""
      for (var i in json2){
	if( IDcurr != ID )
	  {
	    IDprev = IDcurr;
	    IDcurr = IDnext;
	    IDnext = json2[i].id;
	  };
      }

      var thumbs= d3.select(".nextprev").select("ul").selectAll("li").data(json2, function(d) {return d.id;});

      thumbs.enter().append("li")
	.append("a")
	.on("click", function(d) {
	    load_pic(d.id); }
	  )
	.append("img")
	.attr("src",function(d) {
	    s= d.base_uri+'/'+d.filename;
	    s = s.replace('file:\/\/'+dbprefix,webbase+'/Photos-tiny/');
	    return s;
	  })
	.style("height","0")
	.transition().duration(1000)
	.style("height","100px");

      thumbs.exit().select("img").transition().duration(1000).style("height","0");
      thumbs.exit().transition().duration(1050).remove();

      /* resort elements */
      d3.select(".nextprev").select("ul").selectAll("li").sort(function(a,b){return a.id-b.id;});
      d3.select(".nextprev").select("ul").selectAll("li").select("a").select("img").classed("current",false);
      d3.select(".nextprev").select("ul").selectAll("li").select("a").select("img").classed("current",function(d){return (d.id==IDcurr);});


      /* add links for left/right arrows */
      if (IDprev != -1 )
	d3.select(".left").on("click", function() { load_pic(IDprev); });
      if (IDnext != -1 )
	d3.select(".right").on("click", function() { load_pic(IDnext); });

    });
}

function checkbutton()
{
  if (page==1)
    { d3.select(".pagination ul li:first-child").classed("disabled", true);}
  else
    { d3.select(".pagination ul li:first-child").classed("disabled", false);};

  if (page==maxpage)
    { d3.select(".pagination ul li:last-child").classed("disabled", true);}
  else
    { d3.select(".pagination ul li:last-child").classed("disabled", false);};
}

function update_page_index()
{
  /* load number of pictures */
  myID = "";
  if(ID > 0)
    myID = "&ID="+ID;

  if(T!="")
    url = webbase+"/getjson.php?C=1&T="+T+myID;
  else
    url = webbase+"/getjson.php?C=1"+myID;

  d3.json(url, function(json) {
      /* update index, show only page +-5 pages max */
      n  = Math.floor( json[0].total/N   ); /* how many pages */
      nr = Math.floor( (json[0].row-1)/N ); /* which row are we in? rowid starts at 1 not 0 */

      maxpage=n+1;

      if(nr > 0) page = nr+1;

      var mydata = new Array();  // add json data  {page: <nr>, name: <name>} ; at end reform array into real json and use d3 to parse it

      if(n>0)
      {
	  mydata.push('{ page:0.1, name:"Prev"}');
          if(page>4)
	  {
	      mydata.push('{ page:1, name:"1"}');
	      mydata.push('{ page:1.5, name:"..."}');
	      start = page-3;
	  }
          else
	      start=1;

          for(i=start;i<=Math.min(n+1,page+3);i++)
	      mydata.push('{ page:'+i+', name:"'+i+'"}');

          if(page+3<n)
	  {
	      mydata.push('{ page:'+(n+0.5)+', name:"..."}');
	      mydata.push('{ page:'+(n+1)+', name:"'+(n+1)+'"}');
	  }
          else if(page+3==n)
	      mydata.push('{ page:'+(n+1)+', name:"'+(n+1)+'"}');

	  mydata.push('{ page:'+(n+2.1)+', name:"Next"}');
      };
      mydata = "["+mydata.join(",")+"]";
      mydata =  eval('(' + mydata + ')');

      /* remove old elements */
      d3.selectAll(".pagination").select("ul").selectAll("li").remove();

      /* create new ones */
      var pageindex = d3.selectAll(".pagination").select("ul").selectAll("li").data(mydata, function(d){return d.page});
      pageindex.selectAll("li").data(mydata, function(d){ return d.page; });
      pageindex.enter().append("li").append("a")
	  .on("click", function(d) { if(  (d.page - Math.floor(d.page)) ==0 )  {page=d.page; ID=-1;load_content(); update_page_index();} })
	  .text(function(d) {return " "+d.name+" "});

      pageindex.sort( function(a,b) { return a.page- b.page;} );

      /* add callbacks to prev and next buttons */
      d3.selectAll(".pagination ul li:first-child a").on("click", function(){prev_page();});
      d3.selectAll(".pagination ul li:last-child  a").on("click", function(){next_page();});

      d3.select(".pagination").select("ul").selectAll("li").classed("active", false);
      d3.select(".pagination").select("ul").selectAll("li").classed("active", function(d) {return ( d.page == page ); });
      checkbutton();
    } );

}