1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-10 00:30:09 +00:00

Use AjaxProxy for roomlist refresh

This commit is contained in:
Tim Düsterhus 2013-04-21 18:27:55 +02:00
parent 7046452b58
commit 8b878f2f3c
3 changed files with 43 additions and 91 deletions

View File

@ -611,15 +611,18 @@ Updates the room list.
console.log 'Refreshing the roomlist' console.log 'Refreshing the roomlist'
$('#toggleRooms .ajaxLoad').show() $('#toggleRooms .ajaxLoad').show()
$.ajax $('#toggleRooms a').data('refreshUrl'), proxy = new WCF.Action.Proxy
dataType: 'json' autoSend: true
type: 'POST' data:
success: (data, textStatus, jqXHR) => actionName: 'getRoomList'
className: 'chat\\data\\room\\RoomAction'
showLoadingOverlay: false
success: (data) =>
$('#timsChatRoomList li').remove() $('#timsChatRoomList li').remove()
$('#toggleRooms .ajaxLoad').hide() $('#toggleRooms .ajaxLoad').hide()
$('#toggleRooms .badge').text data.length $('#toggleRooms .badge').text data.returnValues.length
for room in data for room in data.returnValues
li = $ '<li></li>' li = $ '<li></li>'
li.addClass 'activeMenuItem' if room.active li.addClass 'activeMenuItem' if room.active
$("""<a href="#{room.link}">#{room.title}</a>""").addClass('timsChatRoom').appendTo li $("""<a href="#{room.link}">#{room.title}</a>""").addClass('timsChatRoom').appendTo li

View File

@ -118,4 +118,38 @@ public function updatePosition() {
} }
WCF::getDB()->commitTransaction(); WCF::getDB()->commitTransaction();
} }
/**
* Validates parameters and permissions.
*/
public function validateGetRoomList() {
if (!CHAT_ACTIVE) throw new \wcf\system\exception\IllegalLinkException();
}
/**
* Returns the available rooms.
*/
public function getRoomList() {
$rooms = Room::getCache();
$roomID = \chat\util\ChatUtil::readUserData('roomID');
if (!isset($rooms[$roomID])) throw new \wcf\system\exception\IllegalLinkException();
$activeRoom = $rooms[$roomID];
$result = array();
foreach ($rooms as $room) {
if (!$room->canEnter()) continue;
$result[] = array(
'title' => (string) $room,
'link' => \wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
'application' => 'chat',
'object' => $room
)),
'active' => $room->roomID == $activeRoom->roomID
);
}
return $result;
}
} }

View File

@ -1,85 +0,0 @@
<?php
namespace chat\page;
use \chat\data;
use \wcf\system\exception\IllegalLinkException;
use \wcf\system\WCF;
/**
* Outputs roomlist.
*
* @author Tim Düsterhus
* @copyright 2010-2013 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.chat
* @subpackage page
*/
class RoomListPage extends \wcf\page\AbstractPage {
/**
* @see wcf\page\AbstractPage::$loginRequired
*/
public $loginRequired = true;
/**
* @see \wcf\page\AbstractPage::$neededModules
*/
public $neededModules = array('CHAT_ACTIVE');
/**
* @see \wcf\page\AbstractPage::$neededPermissions
*/
public $neededPermissions = array();
/**
* the room the user current is in
* @var \chat\data\room\Room
*/
public $room = null;
/**
* all rooms in the current installation
* @var array<\chat\data\room\Room>
*/
public $rooms = array();
/**
* @see \wcf\page\AbstractPage::$useTemplate
*/
public $useTemplate = false;
/**
* @see \wcf\page\IPage::readData()
*/
public function readData() {
parent::readData();
$this->rooms = data\room\Room::getCache();
$roomID = \chat\util\ChatUtil::readUserData('roomID');
if (!isset($this->rooms[$roomID])) throw new IllegalLinkException();
$this->room = $this->rooms[$roomID];
}
/**
* @see \wcf\page\IPage::show()
*/
public function show() {
parent::show();
@header('Content-type: application/json');
$json = array();
foreach ($this->rooms as $room) {
if (!$room->canEnter()) continue;
$json[] = array(
'title' => WCF::getLanguage()->get($room->title),
'link' => \wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
'application' => 'chat',
'object' => $room
)),
'active' => $room->roomID == $this->room->roomID
);
}
echo \wcf\util\JSON::encode($json);
exit;
}
}