29 lines
777 B
C++
29 lines
777 B
C++
#include "component.hpp"
|
|
|
|
namespace katja
|
|
{
|
|
ftxui::Element WelcomePage::Render()
|
|
{
|
|
return ftxui::text("Select an action in the menu.");
|
|
}
|
|
|
|
UpdatesPage::UpdatesPage(std::vector<package_identifier>&& updatable)
|
|
: updatable(std::move(updatable))
|
|
{
|
|
}
|
|
|
|
ftxui::Element UpdatesPage::Render()
|
|
{
|
|
std::vector<std::shared_ptr<ftxui::Node>> lines;
|
|
|
|
for (const auto& package_identifier : this->updatable)
|
|
{
|
|
auto line = ftxui::text(package_identifier.to_string()) | color(ftxui::Color::SkyBlue2);
|
|
lines.push_back(line);
|
|
}
|
|
ftxui::Element summary = ftxui::text(" Updates (" + std::to_string(lines.size()) + ")");
|
|
|
|
return ftxui::window(summary, ftxui::vbox(lines));
|
|
}
|
|
}
|