Add package list component
This commit is contained in:
parent
c8628af601
commit
933f4bb481
@ -14,7 +14,7 @@ FetchContent_Declare(toml11
|
|||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(toml11)
|
FetchContent_MakeAvailable(toml11)
|
||||||
|
|
||||||
add_executable(katja-cli main.cpp component.hpp component.cpp)
|
add_executable(katja-cli main.cpp component.hpp component.cpp page.hpp page.cpp)
|
||||||
target_include_directories(katja-cli PRIVATE ${Boost_INCLUDE_DIR})
|
target_include_directories(katja-cli PRIVATE ${Boost_INCLUDE_DIR})
|
||||||
target_link_libraries(katja-cli
|
target_link_libraries(katja-cli
|
||||||
LINK_PUBLIC katja
|
LINK_PUBLIC katja
|
||||||
|
@ -1,154 +1,67 @@
|
|||||||
#include "component.hpp"
|
#include "component.hpp"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <sstream>
|
||||||
|
|
||||||
namespace katja
|
namespace katja
|
||||||
{
|
{
|
||||||
ScreenContainer::ScreenContainer(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter)
|
PackageListBase::PackageListBase(const std::string& title, const std::vector<package_identifier>& packages)
|
||||||
: on_enter(on_enter)
|
: title(title), packages(packages)
|
||||||
{
|
|
||||||
ftxui::Components menu_pages;
|
|
||||||
|
|
||||||
std::transform(std::cbegin(pages), std::cend(pages), std::back_inserter(menu_entries),
|
|
||||||
[](const std::pair<std::string, Page>& pair) { return pair.first; });
|
|
||||||
std::transform(std::cbegin(pages), std::cend(pages), std::back_inserter(this->menu_pages),
|
|
||||||
[](const std::pair<std::string, Page>& pair) { return pair.second; });
|
|
||||||
std::copy(std::cbegin(this->menu_pages), std::cend(this->menu_pages), std::back_inserter(menu_pages));
|
|
||||||
|
|
||||||
ftxui::MenuOption menu_option = ftxui::MenuOption::Horizontal();
|
|
||||||
this->menu = ftxui::Toggle(&this->menu_entries, &this->menu_selected);
|
|
||||||
|
|
||||||
this->content = ftxui::Container::Tab(std::move(menu_pages), &this->menu_selected);
|
|
||||||
}
|
|
||||||
|
|
||||||
ftxui::Element ScreenContainer::OnRender()
|
|
||||||
{
|
|
||||||
return ftxui::vbox({
|
|
||||||
this->menu->Render(),
|
|
||||||
ftxui::separator(),
|
|
||||||
this->content->Render()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ScreenContainer::OnEvent(ftxui::Event event)
|
|
||||||
{
|
|
||||||
if (event == ftxui::Event::CtrlQ && this->on_enter)
|
|
||||||
{
|
|
||||||
on_enter();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
int previously = this->menu_selected;
|
|
||||||
bool result{ false };
|
|
||||||
|
|
||||||
if (event == ftxui::Event::CtrlP)
|
|
||||||
{
|
|
||||||
result = menu->OnEvent(ftxui::Event::ArrowLeft);
|
|
||||||
}
|
|
||||||
else if (event == ftxui::Event::CtrlN)
|
|
||||||
{
|
|
||||||
result = menu->OnEvent(ftxui::Event::ArrowRight);
|
|
||||||
}
|
|
||||||
if (previously != this->menu_selected)
|
|
||||||
{
|
|
||||||
this->menu_pages.at(this->menu_selected)->Load();
|
|
||||||
}
|
|
||||||
if (!result)
|
|
||||||
{
|
|
||||||
result = this->menu_pages.at(this->menu_selected)->OnEvent(event);
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ftxui::Component Screen(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter)
|
|
||||||
{
|
|
||||||
return std::make_shared<ScreenContainer>(std::move(pages), on_enter);
|
|
||||||
}
|
|
||||||
|
|
||||||
ftxui::Element WelcomePage::OnRender()
|
|
||||||
{
|
|
||||||
return ftxui::paragraph("Select an action in the menu.");
|
|
||||||
}
|
|
||||||
|
|
||||||
void WelcomePage::Load()
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdatesPage::UpdatesPage(std::shared_ptr<struct repository> repository, package_database database)
|
ftxui::Element PackageListBase::OnRender()
|
||||||
: repository(repository), database(database)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void UpdatesPage::Load()
|
|
||||||
{
|
|
||||||
this->updatable = repository->get_updates(this->database);
|
|
||||||
}
|
|
||||||
|
|
||||||
ftxui::Element UpdatesPage::OnRender()
|
|
||||||
{
|
{
|
||||||
std::vector<ftxui::Element> lines;
|
std::vector<ftxui::Element> lines;
|
||||||
|
|
||||||
for (const auto& package_identifier : this->updatable)
|
for (const auto& package_identifier : this->packages)
|
||||||
{
|
{
|
||||||
auto line = ftxui::text(package_identifier.to_string()) | color(ftxui::Color::SkyBlue2);
|
auto line = ftxui::text(package_identifier.to_string()) | color(ftxui::Color::SkyBlue2);
|
||||||
lines.push_back(line);
|
lines.push_back(line);
|
||||||
}
|
}
|
||||||
ftxui::Element summary = ftxui::text(" Updates (" + std::to_string(lines.size()) + ")");
|
if (this->selected.has_value() && this->selected.value() < lines.size())
|
||||||
|
|
||||||
return ftxui::window(summary, ftxui::vbox(lines));
|
|
||||||
}
|
|
||||||
|
|
||||||
SearchPage::SearchPage(std::shared_ptr<struct repository> repository, const std::string& architecture)
|
|
||||||
: repository(repository), architecture(architecture)
|
|
||||||
{
|
|
||||||
ftxui::InputOption search_input_option = { .multiline = false };
|
|
||||||
this->search_input = ftxui::Input(&this->needle, "Search", search_input_option);
|
|
||||||
this->type_input = ftxui::Radiobox(std::vector<std::string>{ "Names", "Description" }, &this->search_type);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SearchPage::Load()
|
|
||||||
{
|
|
||||||
this->needle.erase();
|
|
||||||
}
|
|
||||||
|
|
||||||
ftxui::Element SearchPage::OnRender()
|
|
||||||
{
|
|
||||||
std::vector<ftxui::Element> lines;
|
|
||||||
|
|
||||||
for (const auto& package_identifier : this->search_results)
|
|
||||||
{
|
{
|
||||||
auto line = ftxui::text(package_identifier.to_string()) | color(ftxui::Color::SkyBlue2);
|
lines[this->selected.value()] |= ftxui::focus;
|
||||||
lines.push_back(line);
|
|
||||||
}
|
}
|
||||||
ftxui::FlexboxConfig config;
|
std::stringstream summary;
|
||||||
config.justify_content = ftxui::FlexboxConfig::JustifyContent::SpaceAround;
|
|
||||||
config.align_items = ftxui::FlexboxConfig::AlignItems::FlexStart;
|
|
||||||
config.direction = ftxui::FlexboxConfig::Direction::Row;
|
|
||||||
config.wrap = ftxui::FlexboxConfig::Wrap::NoWrap;
|
|
||||||
config.SetGap(3, 0);
|
|
||||||
|
|
||||||
return ftxui::vbox({
|
summary << title << '(' << packages.size() << ')';
|
||||||
ftxui::flexbox({
|
|
||||||
this->search_input->Render(),
|
return ftxui::window(ftxui::text(summary.str()), ftxui::vbox(lines) | ftxui::yframe);
|
||||||
ftxui::window(ftxui::text("Search in"), type_input->Render())
|
|
||||||
}, config),
|
|
||||||
ftxui::vbox(lines) | ftxui::flex | ftxui::border
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SearchPage::OnEvent(ftxui::Event event)
|
bool PackageListBase::OnEvent(ftxui::Event event)
|
||||||
{
|
{
|
||||||
if (event == ftxui::Event::Return)
|
if (event == ftxui::Event::ArrowDown)
|
||||||
{
|
{
|
||||||
if (!this->needle.empty())
|
if (!this->selected.has_value() && !this->packages.empty())
|
||||||
{
|
{
|
||||||
this->search_results = this->repository->search_names(this->architecture, this->needle);
|
this->selected = std::make_optional<std::size_t>(0);
|
||||||
|
}
|
||||||
|
else if (this->selected.has_value() && this->selected.value() + 1 < this->packages.size())
|
||||||
|
{
|
||||||
|
this->selected = std::make_optional<std::size_t>(this->selected.value() + 1);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else if (event == ftxui::Event::ArrowUp)
|
||||||
{
|
{
|
||||||
return this->search_input->OnEvent(event);
|
if (!this->selected.has_value() && !this->packages.empty())
|
||||||
|
{
|
||||||
|
this->selected = std::make_optional<std::size_t>(0);
|
||||||
|
}
|
||||||
|
else if (this->selected.has_value()
|
||||||
|
&& this->selected.value() < this->packages.size()
|
||||||
|
&& this->selected.value() > 0)
|
||||||
|
{
|
||||||
|
this->selected = std::make_optional<std::size_t>(this->selected.value() - 1);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ftxui::Component PackageList(const std::string& title, const std::vector<package_identifier>& packages)
|
||||||
|
{
|
||||||
|
return ftxui::Make<PackageListBase>(title, packages);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,76 +1,28 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
#include <ftxui/component/event.hpp>
|
#include <ftxui/component/event.hpp>
|
||||||
#include <ftxui/component/component_base.hpp>
|
|
||||||
#include <ftxui/component/component.hpp>
|
#include <ftxui/component/component.hpp>
|
||||||
|
#include <ftxui/dom/elements.hpp>
|
||||||
|
|
||||||
#include "katja/repository.hpp"
|
#include "katja/repository.hpp"
|
||||||
#include "katja/database.hpp"
|
|
||||||
|
|
||||||
namespace katja
|
namespace katja
|
||||||
{
|
{
|
||||||
class PageBase : public ftxui::ComponentBase
|
class PackageListBase : public ftxui::ComponentBase
|
||||||
{
|
{
|
||||||
public:
|
std::string title;
|
||||||
virtual void Load() = 0;
|
const std::vector<package_identifier> packages;
|
||||||
};
|
std::optional<std::size_t> selected;
|
||||||
|
|
||||||
using Page = std::shared_ptr<PageBase>;
|
|
||||||
using Pages = std::vector<Page>;
|
|
||||||
|
|
||||||
class ScreenContainer final : public ftxui::ComponentBase
|
|
||||||
{
|
|
||||||
int menu_selected{ 0 };
|
|
||||||
ftxui::Component menu;
|
|
||||||
ftxui::Component content;
|
|
||||||
std::vector<std::string> menu_entries;
|
|
||||||
Pages menu_pages;
|
|
||||||
std::function<void()> on_enter;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ScreenContainer(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter);
|
PackageListBase(const std::string& title, const std::vector<package_identifier>& packages = {});
|
||||||
|
|
||||||
ftxui::Element OnRender() override;
|
ftxui::Element OnRender() override;
|
||||||
bool OnEvent(ftxui::Event event) override;
|
bool OnEvent(ftxui::Event event) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
ftxui::Component Screen(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter);
|
ftxui::Component PackageList(const std::string& title, const std::vector<package_identifier>& packages = {});
|
||||||
|
|
||||||
class WelcomePage final : public PageBase
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
void Load() override;
|
|
||||||
ftxui::Element OnRender() override;
|
|
||||||
};
|
|
||||||
|
|
||||||
class UpdatesPage final : public PageBase
|
|
||||||
{
|
|
||||||
std::vector<package_identifier> updatable;
|
|
||||||
std::shared_ptr<struct repository> repository;
|
|
||||||
package_database database;
|
|
||||||
|
|
||||||
public:
|
|
||||||
UpdatesPage(std::shared_ptr<struct repository> repository, package_database database);
|
|
||||||
|
|
||||||
void Load() override;
|
|
||||||
ftxui::Element OnRender() override;
|
|
||||||
};
|
|
||||||
|
|
||||||
class SearchPage final : public PageBase
|
|
||||||
{
|
|
||||||
std::string needle;
|
|
||||||
ftxui::Component search_input;
|
|
||||||
ftxui::Component type_input;
|
|
||||||
std::shared_ptr<struct repository> repository;
|
|
||||||
std::string architecture;
|
|
||||||
std::vector<package_identifier> search_results;
|
|
||||||
int search_type{ 0 };
|
|
||||||
|
|
||||||
public:
|
|
||||||
SearchPage(std::shared_ptr<struct repository> repository, const std::string& architecture);
|
|
||||||
|
|
||||||
void Load() override;
|
|
||||||
ftxui::Element OnRender() override;
|
|
||||||
bool OnEvent(ftxui::Event event) override;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "katja/sbo.hpp"
|
#include "katja/sbo.hpp"
|
||||||
#include "katja/database.hpp"
|
#include "katja/database.hpp"
|
||||||
#include "component.hpp"
|
#include "page.hpp"
|
||||||
|
|
||||||
int main(int argc, const char **argv)
|
int main(int argc, const char **argv)
|
||||||
{
|
{
|
||||||
|
147
cli/page.cpp
Normal file
147
cli/page.cpp
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
#include "page.hpp"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
namespace katja
|
||||||
|
{
|
||||||
|
ScreenContainer::ScreenContainer(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter)
|
||||||
|
: on_enter(on_enter)
|
||||||
|
{
|
||||||
|
ftxui::Components menu_pages;
|
||||||
|
|
||||||
|
std::transform(std::cbegin(pages), std::cend(pages), std::back_inserter(menu_entries),
|
||||||
|
[](const std::pair<std::string, Page>& pair) { return pair.first; });
|
||||||
|
std::transform(std::cbegin(pages), std::cend(pages), std::back_inserter(this->menu_pages),
|
||||||
|
[](const std::pair<std::string, Page>& pair) { return pair.second; });
|
||||||
|
std::copy(std::cbegin(this->menu_pages), std::cend(this->menu_pages), std::back_inserter(menu_pages));
|
||||||
|
|
||||||
|
ftxui::MenuOption menu_option = ftxui::MenuOption::Horizontal();
|
||||||
|
this->menu = ftxui::Toggle(&this->menu_entries, &this->menu_selected);
|
||||||
|
|
||||||
|
this->content = ftxui::Container::Tab(std::move(menu_pages), &this->menu_selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
ftxui::Element ScreenContainer::OnRender()
|
||||||
|
{
|
||||||
|
return ftxui::vbox({
|
||||||
|
this->menu->Render(),
|
||||||
|
ftxui::separator(),
|
||||||
|
this->content->Render()
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ScreenContainer::OnEvent(ftxui::Event event)
|
||||||
|
{
|
||||||
|
if (event == ftxui::Event::CtrlQ && this->on_enter)
|
||||||
|
{
|
||||||
|
on_enter();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
int previously = this->menu_selected;
|
||||||
|
bool result{ false };
|
||||||
|
|
||||||
|
if (event == ftxui::Event::CtrlP)
|
||||||
|
{
|
||||||
|
result = menu->OnEvent(ftxui::Event::ArrowLeft);
|
||||||
|
}
|
||||||
|
else if (event == ftxui::Event::CtrlN)
|
||||||
|
{
|
||||||
|
result = menu->OnEvent(ftxui::Event::ArrowRight);
|
||||||
|
}
|
||||||
|
if (previously != this->menu_selected)
|
||||||
|
{
|
||||||
|
this->menu_pages.at(this->menu_selected)->Load();
|
||||||
|
}
|
||||||
|
if (!result)
|
||||||
|
{
|
||||||
|
result = this->menu_pages.at(this->menu_selected)->OnEvent(event);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ftxui::Component Screen(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter)
|
||||||
|
{
|
||||||
|
return std::make_shared<ScreenContainer>(std::move(pages), on_enter);
|
||||||
|
}
|
||||||
|
|
||||||
|
ftxui::Element WelcomePage::OnRender()
|
||||||
|
{
|
||||||
|
return ftxui::paragraph("Select an action in the menu.");
|
||||||
|
}
|
||||||
|
|
||||||
|
void WelcomePage::Load()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
UpdatesPage::UpdatesPage(std::shared_ptr<struct repository> repository, package_database database)
|
||||||
|
: repository(repository), database(database)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void UpdatesPage::Load()
|
||||||
|
{
|
||||||
|
this->updatable = PackageList("Updates", repository->get_updates(this->database));
|
||||||
|
}
|
||||||
|
|
||||||
|
ftxui::Element UpdatesPage::OnRender()
|
||||||
|
{
|
||||||
|
return this->updatable->Render();
|
||||||
|
}
|
||||||
|
|
||||||
|
SearchPage::SearchPage(std::shared_ptr<struct repository> repository, const std::string& architecture)
|
||||||
|
: repository(repository), architecture(architecture)
|
||||||
|
{
|
||||||
|
ftxui::InputOption search_input_option = { .multiline = false };
|
||||||
|
this->search_input = ftxui::Input(&this->needle, "Search", search_input_option);
|
||||||
|
this->type_input = ftxui::Radiobox(std::vector<std::string>{ "Names", "Description" }, &this->search_type);
|
||||||
|
}
|
||||||
|
|
||||||
|
void SearchPage::Load()
|
||||||
|
{
|
||||||
|
this->needle.erase();
|
||||||
|
}
|
||||||
|
|
||||||
|
ftxui::Element SearchPage::OnRender()
|
||||||
|
{
|
||||||
|
std::vector<ftxui::Element> lines;
|
||||||
|
|
||||||
|
ftxui::FlexboxConfig config;
|
||||||
|
config.justify_content = ftxui::FlexboxConfig::JustifyContent::SpaceAround;
|
||||||
|
config.align_items = ftxui::FlexboxConfig::AlignItems::FlexStart;
|
||||||
|
config.direction = ftxui::FlexboxConfig::Direction::Row;
|
||||||
|
config.wrap = ftxui::FlexboxConfig::Wrap::NoWrap;
|
||||||
|
config.SetGap(3, 0);
|
||||||
|
|
||||||
|
return ftxui::vbox({
|
||||||
|
ftxui::flexbox({
|
||||||
|
this->search_input->Render(),
|
||||||
|
ftxui::window(ftxui::text("Search in"), type_input->Render())
|
||||||
|
}, config),
|
||||||
|
this->search_results->Render() | ftxui::flex
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SearchPage::OnEvent(ftxui::Event event)
|
||||||
|
{
|
||||||
|
if (event == ftxui::Event::Return)
|
||||||
|
{
|
||||||
|
if (!this->needle.empty())
|
||||||
|
{
|
||||||
|
std::vector<package_identifier> result =
|
||||||
|
this->repository->search_names(this->architecture, this->needle);
|
||||||
|
this->search_results = PackageList("Search", std::move(result));
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (event == ftxui::Event::ArrowUp || event == ftxui::Event::ArrowDown)
|
||||||
|
{
|
||||||
|
this->search_results->OnEvent(event);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return this->search_input->OnEvent(event);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
78
cli/page.hpp
Normal file
78
cli/page.hpp
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <ftxui/component/event.hpp>
|
||||||
|
#include <ftxui/component/component_base.hpp>
|
||||||
|
#include <ftxui/component/component.hpp>
|
||||||
|
|
||||||
|
#include "katja/repository.hpp"
|
||||||
|
#include "katja/database.hpp"
|
||||||
|
|
||||||
|
#include "component.hpp"
|
||||||
|
|
||||||
|
namespace katja
|
||||||
|
{
|
||||||
|
class PageBase : public ftxui::ComponentBase
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual void Load() = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
using Page = std::shared_ptr<PageBase>;
|
||||||
|
using Pages = std::vector<Page>;
|
||||||
|
|
||||||
|
class ScreenContainer final : public ftxui::ComponentBase
|
||||||
|
{
|
||||||
|
int menu_selected{ 0 };
|
||||||
|
ftxui::Component menu;
|
||||||
|
ftxui::Component content;
|
||||||
|
std::vector<std::string> menu_entries;
|
||||||
|
Pages menu_pages;
|
||||||
|
std::function<void()> on_enter;
|
||||||
|
|
||||||
|
public:
|
||||||
|
ScreenContainer(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter);
|
||||||
|
|
||||||
|
ftxui::Element OnRender() override;
|
||||||
|
bool OnEvent(ftxui::Event event) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
ftxui::Component Screen(std::vector<std::pair<std::string, Page>> pages, std::function<void()> on_enter);
|
||||||
|
|
||||||
|
class WelcomePage final : public PageBase
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
void Load() override;
|
||||||
|
ftxui::Element OnRender() override;
|
||||||
|
};
|
||||||
|
|
||||||
|
class UpdatesPage final : public PageBase
|
||||||
|
{
|
||||||
|
ftxui::Component updatable = PackageList("Updates");
|
||||||
|
std::shared_ptr<struct repository> repository;
|
||||||
|
package_database database;
|
||||||
|
|
||||||
|
public:
|
||||||
|
UpdatesPage(std::shared_ptr<struct repository> repository, package_database database);
|
||||||
|
|
||||||
|
void Load() override;
|
||||||
|
ftxui::Element OnRender() override;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SearchPage final : public PageBase
|
||||||
|
{
|
||||||
|
std::string needle;
|
||||||
|
ftxui::Component search_input;
|
||||||
|
ftxui::Component type_input;
|
||||||
|
std::shared_ptr<struct repository> repository;
|
||||||
|
std::string architecture;
|
||||||
|
ftxui::Component search_results = PackageList("Results");
|
||||||
|
int search_type{ 0 };
|
||||||
|
|
||||||
|
public:
|
||||||
|
SearchPage(std::shared_ptr<struct repository> repository, const std::string& architecture);
|
||||||
|
|
||||||
|
void Load() override;
|
||||||
|
ftxui::Element OnRender() override;
|
||||||
|
bool OnEvent(ftxui::Event event) override;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user