From 6d5e7c762a78f887694ca0efd9b93c8e4313222e Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Tue, 7 Feb 2012 21:15:38 -0800 Subject: [PATCH] fixed page_index to advance when we click on a thumbnail from another page --- getjson.php | 34 +++++++++++++++++++++++++--------- index.php | 17 +++++++++-------- 2 files changed, 34 insertions(+), 17 deletions(-) diff --git a/getjson.php b/getjson.php index d5dab8b..3e4cf4d 100644 --- a/getjson.php +++ b/getjson.php @@ -45,7 +45,6 @@ if (isset($_REQUEST["S"])) " AND (t.name COLLATE NOCASE IN ($tags))". " AND p.id = pt.photo_id ". " GROUP BY p.id HAVING COUNT( p.id )=$nrtags"); - } else { @@ -65,7 +64,7 @@ if (isset($_REQUEST["S"])) } } - else if (isset($_REQUEST["ID"])) + else if (isset($_REQUEST["ID"]) && !isset($_REQUEST["C"])) { $id = intval($_REQUEST["ID"]); $result = $DB->query("SELECT base_uri, filename, id FROM photos". @@ -104,11 +103,19 @@ if (isset($_REQUEST["S"])) if (isset($_REQUEST["C"])) { - $result = $DB->query("SELECT count(*) as total from (SELECT p.id FROM photo_tags pt, photos p, tags t". - " WHERE pt.tag_id = t.id". - " AND (t.name COLLATE NOCASE IN ($tags))". - " AND p.id = pt.photo_id ". - " GROUP BY p.id HAVING COUNT( p.id )=$nrtags)"); + $DB->query("CREATE TEMP TABLE TEMPPICS AS SELECT p.id as id FROM photo_tags pt, photos p, tags t". + " WHERE pt.tag_id = t.id". + " AND (t.name COLLATE NOCASE IN ($tags))". + " AND p.id = pt.photo_id ". + " GROUP BY p.id HAVING COUNT( p.id )=$nrtags"); + + if (isset($_REQUEST["ID"])) + { + $ID = $_REQUEST["ID"]; + $result = $DB->query("SELECT count(*) as total, (SELECT rowid from TEMPPICS WHERE id = $ID) as row from TEMPPICS"); + } + else + $result = $DB->query("SELECT count(*) as total, -1 as row from TEMPPICS"); } else { @@ -118,13 +125,22 @@ if (isset($_REQUEST["S"])) " AND p.id = pt.photo_id ". " GROUP BY p.id HAVING COUNT( p.id )=$nrtags". " LIMIT $OFFSET, $N"); - } } else { if (isset($_REQUEST["C"])) - $result = $DB->query("SELECT count(*) as total FROM photos"); + { + $DB->query("CREATE TEMP TABLE TEMPPICS AS SELECT id from photos"); + + if (isset($_REQUEST["ID"])) + { + $ID = $_REQUEST["ID"]; + $result = $DB->query("SELECT count(*) as total, (SELECT rowid FROM TEMPPICS WHERE id=$ID) as row FROM TEMPPICS"); + } + else + $result = $DB->query("SELECT count(*) as total, -1 as row FROM TEMPPICS"); + } else $result = $DB->query("SELECT * FROM photos LIMIT $OFFSET, $N"); } diff --git a/index.php b/index.php index 93bc9e3..7237d28 100644 --- a/index.php +++ b/index.php @@ -41,8 +41,8 @@ else @@ -55,7 +55,7 @@ else Current tags: - +
@@ -239,17 +239,17 @@ function update_permalink(page) { d3.select(".permalink").html("Permalink: "+permalink+""); } -function left() { +function prev_page() { if (page>=2) page=page-1; load_content(page); } -function right() { +function next_page() { page=page+1; load_content(page); } -function cloud() { +function tagcloud() { url = webbase+"/getjson.php?CLOUD=1"; @@ -271,7 +271,6 @@ function cloud() { function checkbutton() { - if (page==1) { d3.select("button.prev").attr("disabled","disabled");} else @@ -286,7 +285,6 @@ function checkbutton() function update_page_index(mypage) { /* load number of pictures */ - myID = ""; if(ID > 0) myID = "&ID="+ID; @@ -299,6 +297,9 @@ function update_page_index(mypage) d3.json(url, function(json) { /* update index, show only page +-5 pages max */ n = Math.floor(json[0].total/N); + nr = Math.floor( (json[0].row-1)/N); /* rowid starts at 1 not 0 */ + + if(nr > 0) mypage = nr+1; s = ""; if(n>0) -- 2.25.1