mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
ChanViewer: Fetch the list of boards and allow switching the board
We put the list of boards in a combo box and allow the user to switch boards that way. :^)
This commit is contained in:
@@ -16,11 +16,19 @@ ThreadCatalogModel::~ThreadCatalogModel()
|
||||
{
|
||||
}
|
||||
|
||||
void ThreadCatalogModel::set_board(const String& board)
|
||||
{
|
||||
if (m_board == board)
|
||||
return;
|
||||
m_board = board;
|
||||
update();
|
||||
}
|
||||
|
||||
void ThreadCatalogModel::update()
|
||||
{
|
||||
CHttpRequest request;
|
||||
request.set_hostname("a.4cdn.org");
|
||||
request.set_path("/g/catalog.json");
|
||||
request.set_path(String::format("/%s/catalog.json", m_board.characters()));
|
||||
|
||||
auto* job = request.schedule();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user