add keyboard shortcuts for prev/next image
[photo-tags.git] / js / photo-tags.js
index 95497bd73ecbb1fbf68d631a3d726625b6b2955c..238575d12cf17611c3919afbbead29dc414789e0 100644 (file)
@@ -1,4 +1,6 @@
 var pics = d3.select(".pics").select("ul");
 var pics = d3.select(".pics").select("ul");
+var page;
+var maxpage;
 
 function init()
 {
 
 function init()
 {
@@ -13,24 +15,34 @@ function init()
       d3.select('form').attr("action",webbase+"/tag/"+document.getElementById('MyTagsInput').value.replace(" ","+"));
   });
 
       d3.select('form').attr("action",webbase+"/tag/"+document.getElementById('MyTagsInput').value.replace(" ","+"));
   });
 
+  d3.select("#currenttags").select("a").remove();
   if (T!="")
     {
       var mycurrenttags = T.split(",");
 
   if (T!="")
     {
       var mycurrenttags = T.split(",");
 
-      d3.select("#currenttags").select("button").remove();
-      d3.select("#currenttags").selectAll("button")
+      d3.select("#currenttags").selectAll("a")
         .data(mycurrenttags).enter()
         .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');
+        .append("a").attr("class","btn btn-small").text( function(d) {return d;} )
+       .on("mouseover", function(d){ d3.select(this).classed("btn-danger",true)})
+       .on("mouseout", function(d){ d3.select(this).classed("btn-danger",false)})
+       .attr("href", function(d) { return removeTag(T.split(","),d) });
     };
 }
 
     };
 }
 
+function removeTag(alltags,removetag)
+{
+    /* return a link to a page with 'removetag' removed from the array of tags*/
+    var index = alltags.indexOf(removetag);
+    alltags.splice(index, 1);
+    if (alltags.length)
+       return webbase+'/tag/'+alltags.join(",");
+    else
+       return webbase;
+}
+
+
 function load_content() {
 function load_content() {
-  //  d3.select(".debug").text("T,P,N = *"+T+"* *"+page+"* *"+N+"*");
+  // d3.select(".debug").text("T,P,N = *"+T+"* *"+page+"* *"+N+"*");
 
   if (ID>=0)
     url = webbase+"/getjson.php?ID="+ID;
 
   if (ID>=0)
     url = webbase+"/getjson.php?ID="+ID;
@@ -48,18 +60,41 @@ function load_content() {
       /* if ID is set, just show one pictures, else create an array of pictures */
       if (ID>=0)
        {
       /* 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();
+           var singlepicspace=pics.selectAll("li").data(picdata, function(d){return ID;}).
+               enter().append("li").append("div").attr("class","singlepic");
+           singlepicspace.append("img").attr("class","left").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("img").attr("class","right").attr("src",webbase+"/icons/right.png");
+           /* show description and time of photo */
+           singlepicspace.append("p")
+               .text(function(d) {
+                   var date = new Date(d.time*1000);
+                   if (d.description=="")
+                       return "Time: "+date.toUTCString();
+                   else
+                       return "Description: "+d.description + "Time: "+date.toUTCString();
+               });
+           /* show tags */
+           tags="";
+           d3.json(webbase+"/getjson.php?IDT="+ID, function(jsontag) {
+               singlepicspace.append("p").selectAll("span").data(jsontag)
+                   .enter().append("span")
+                   .attr("class","btn btn-small")
+                   .text( function(t) {
+                       return t.name;
+                   })
+                   .on("mouseover", function(d){ d3.select(this).classed("btn-success",true)})
+                   .on("mouseout", function(d){ d3.select(this).classed("btn-success",false)})
+                   .on("click", function(d) { document.location.href=webbase+'/tag/'+d.name});
+           });
+
+           update_thumbnails();
        }
       else
        {
        }
       else
        {
@@ -76,9 +111,9 @@ function load_content() {
                return s;
              });
        };
                return s;
              });
        };
+      checkbutton();
+      update_permalink()
     });
     });
-   checkbutton();
-   update_permalink()
 }
 
 function update_permalink() {
 }
 
 function update_permalink() {
@@ -97,25 +132,20 @@ function update_permalink() {
 }
 
 function prev_page() {
 }
 
 function prev_page() {
-  if (page>=2) page=page-1;
-  load_content();
+    if (page>1) page=page-1;
+    load_content();
+    update_page_index();
 }
 
 function next_page() {
 }
 
 function next_page() {
-  page=page+1;
-  load_content();
-}
-
-function prev_pic() {
-}
-
-function next_pic() {
+    if (page<maxpage) page=page+1;
+    load_content();
+    update_page_index();
 }
 
 function load_pic(myid) {
   ID=myid;
   update_page_index();
 }
 
 function load_pic(myid) {
   ID=myid;
   update_page_index();
-  update_thumbnails();
   load_content();
 }
 
   load_content();
 }
 
@@ -131,11 +161,11 @@ function tagcloud() {
   /* update pics */
   d3.json(url, function(json) {
       svgelement.selectAll("text").data(json).enter().append("text")
   /* 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"})
+       .style("font-size", function(d){return (Math.log(d.count+1)/3.0+0.5)+"em"})
        .text(function(d) { return d.name+" "; })
        .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 })
+       .on("mouseover", function(d){ d3.select(this).style("color","red")  })
+       .on("mouseout",  function(d){ d3.select(this).style("color","black")})
+       .on("click", function(d) { document.location.href=webbase+'/tag/'+d.name});
     });
 }
 
     });
 }
 
@@ -162,6 +192,8 @@ function update_thumbnails(){
 
       var thumbs= d3.select(".nextprev").select("ul").selectAll("li").data(json2, function(d) {return d.id;});
 
 
       var thumbs= d3.select(".nextprev").select("ul").selectAll("li").data(json2, function(d) {return d.id;});
 
+      thumbs.exit().select("img").transition().duration(1000).style("height","0px").transition().duration(1050).remove();
+      thumbs.exit().transition().duration(1050).remove();
       thumbs.enter().append("li")
        .append("a")
        .on("click", function(d) {
       thumbs.enter().append("li")
        .append("a")
        .on("click", function(d) {
@@ -173,26 +205,29 @@ function update_thumbnails(){
            s = s.replace('file:\/\/'+dbprefix,webbase+'/Photos-tiny/');
            return s;
          })
            s = s.replace('file:\/\/'+dbprefix,webbase+'/Photos-tiny/');
            return s;
          })
-       .style("height","0")
-       .transition().duration(1000)
+       .style("height","0px")
+       .transition().duration(500)
        .style("height","100px");
 
        .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;});
       /* 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);});
+      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 )
 
 
       /* add links for left/right arrows */
       if (IDprev != -1 )
-       d3.select(".left").on("click", function() { load_pic(IDprev); });
+         d3.select(".left" ).on("click", function() { load_pic(IDprev); });
       if (IDnext != -1 )
       if (IDnext != -1 )
-       d3.select(".right").on("click", function() { load_pic(IDnext); });
-
-    });
+         d3.select(".right").on("click", function() { load_pic(IDnext); });
+
+      /* keyboard shortcuts */
+      $(document)
+         .keydown(  function (e) {
+             if(e.which == 37 && IDprev != -1) { $(document).unbind('keydown'); load_pic(IDprev);  }
+             if(e.which == 39 && IDnext != -1) { $(document).unbind('keydown'); load_pic(IDnext);  }
+         });
+  });
 }
 
 function checkbutton()
 }
 
 function checkbutton()
@@ -202,10 +237,10 @@ function checkbutton()
   else
     { d3.select(".pagination ul li:first-child").classed("disabled", false);};
 
   else
     { d3.select(".pagination ul li:first-child").classed("disabled", false);};
 
-  if (count<N)
+  if (page==maxpage)
     { d3.select(".pagination ul li:last-child").classed("disabled", true);}
   else
     { d3.select(".pagination ul li:last-child").classed("disabled", true);}
   else
-    { d3.select(".pagination ul li:last-child").classed("disabled", false);}
+    { d3.select(".pagination ul li:last-child").classed("disabled", false);};
 }
 
 function update_page_index()
 }
 
 function update_page_index()
@@ -225,6 +260,8 @@ function update_page_index()
       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 */
 
       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(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
@@ -232,7 +269,7 @@ function update_page_index()
       if(n>0)
       {
          mydata.push('{ page:0.1, name:"Prev"}');
       if(n>0)
       {
          mydata.push('{ page:0.1, name:"Prev"}');
-          if(page>7)
+          if(page>4)
          {
              mydata.push('{ page:1, name:"1"}');
              mydata.push('{ page:1.5, name:"..."}');
          {
              mydata.push('{ page:1, name:"1"}');
              mydata.push('{ page:1.5, name:"..."}');
@@ -253,7 +290,13 @@ function update_page_index()
              mydata.push('{ page:'+(n+1)+', name:"'+(n+1)+'"}');
 
          mydata.push('{ page:'+(n+2.1)+', name:"Next"}');
              mydata.push('{ page:'+(n+1)+', name:"'+(n+1)+'"}');
 
          mydata.push('{ page:'+(n+2.1)+', name:"Next"}');
-      };
+      }
+      else
+      {
+         mydata.push('{ page:0.1, name:"Prev"}');
+         mydata.push('{ page:1.1, name:"Next"}');
+      }
+
       mydata = "["+mydata.join(",")+"]";
       mydata =  eval('(' + mydata + ')');
 
       mydata = "["+mydata.join(",")+"]";
       mydata =  eval('(' + mydata + ')');
 
@@ -275,5 +318,7 @@ function update_page_index()
 
       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 ); });
 
       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();
     } );
     } );
+
 }
 }