provide option for viewing by parent created order
This commit is contained in:
parent
43da1429cc
commit
21d35e52dd
1 changed files with 76 additions and 76 deletions
|
@ -131,6 +131,8 @@ function network_content(&$a, $update = 0) {
|
||||||
$star = ((x($_GET['star'])) ? intval($_GET['star']) : 0);
|
$star = ((x($_GET['star'])) ? intval($_GET['star']) : 0);
|
||||||
$bmark = ((x($_GET['bmark'])) ? intval($_GET['bmark']) : 0);
|
$bmark = ((x($_GET['bmark'])) ? intval($_GET['bmark']) : 0);
|
||||||
|
|
||||||
|
$order = 'comment';
|
||||||
|
|
||||||
if(($a->argc > 2) && $a->argv[2] === 'new')
|
if(($a->argc > 2) && $a->argv[2] === 'new')
|
||||||
$nouveau = true;
|
$nouveau = true;
|
||||||
|
|
||||||
|
@ -313,7 +315,8 @@ function network_content(&$a, $update = 0) {
|
||||||
// Normal conversation view
|
// Normal conversation view
|
||||||
// Show conversation by activity date
|
// Show conversation by activity date
|
||||||
|
|
||||||
/* created date order
|
|
||||||
|
if($order === 'post') {
|
||||||
$r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
|
$r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
|
||||||
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
||||||
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
|
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
|
||||||
|
@ -325,12 +328,9 @@ intval(local_user()),
|
||||||
intval($a->pager['start']),
|
intval($a->pager['start']),
|
||||||
intval($a->pager['itemspage'])
|
intval($a->pager['itemspage'])
|
||||||
);
|
);
|
||||||
*/
|
}
|
||||||
|
else {
|
||||||
|
// $order === 'comment'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// First fetch a known number of parent items
|
// First fetch a known number of parent items
|
||||||
|
|
||||||
$r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
|
$r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
|
||||||
|
@ -343,7 +343,6 @@ intval($a->pager['itemspage'])
|
||||||
WHERE `item`.`id`=`com`.`parent` AND
|
WHERE `item`.`id`=`com`.`parent` AND
|
||||||
`item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
|
`item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
|
||||||
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
||||||
|
|
||||||
$sql_extra
|
$sql_extra
|
||||||
ORDER BY `com`.`created` DESC LIMIT %d ,%d ",
|
ORDER BY `com`.`created` DESC LIMIT %d ,%d ",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
|
@ -351,6 +350,7 @@ intval($a->pager['itemspage'])
|
||||||
intval($a->pager['start']),
|
intval($a->pager['start']),
|
||||||
intval($a->pager['itemspage'])
|
intval($a->pager['itemspage'])
|
||||||
);
|
);
|
||||||
|
}
|
||||||
// Then fetch all the children of the parents that are on this page
|
// Then fetch all the children of the parents that are on this page
|
||||||
|
|
||||||
$parents_arr = array();
|
$parents_arr = array();
|
||||||
|
@ -361,7 +361,8 @@ intval($a->pager['itemspage'])
|
||||||
$parents_arr[] = $rr['item_id'];
|
$parents_arr[] = $rr['item_id'];
|
||||||
$parents_str = implode(', ', $parents_arr);
|
$parents_str = implode(', ', $parents_arr);
|
||||||
|
|
||||||
/* created order
|
if($order === 'post') {
|
||||||
|
// parent created order
|
||||||
$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
|
$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
|
||||||
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
|
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
|
||||||
`contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
|
`contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
|
||||||
|
@ -375,9 +376,10 @@ $sql_extra
|
||||||
ORDER BY `parentitem`.`created` DESC, `item`.`gravity` ASC, `item`.`created` ASC ",
|
ORDER BY `parentitem`.`created` DESC, `item`.`gravity` ASC, `item`.`created` ASC ",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
dbesc($parents_str)
|
dbesc($parents_str)
|
||||||
*/
|
);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// $order === 'comment'
|
||||||
|
|
||||||
$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
|
$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
|
||||||
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
|
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
|
||||||
|
@ -399,9 +401,7 @@ dbesc($parents_str)
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
dbesc($parents_str)
|
dbesc($parents_str)
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue