Compare commits

..

No commits in common. "bd5fe465a711bc5f73ce7f20be34f897498cf429" and "e0eba95ff49492eb0e3ee9afff4c73b6004deab3" have entirely different histories.

3 changed files with 6 additions and 30 deletions

View File

@ -24,7 +24,6 @@ public:
Pager &operator-=(int number);
Page &operator*();
Page *operator->();
void set(int number);

View File

@ -50,7 +50,6 @@ void printHelp() {
}
void Tui::run() {
clear_console();
std::cout << m_pager->str_pretty() << std::endl;
for (;;) {
std::cout << "Enter a command: ";
@ -63,34 +62,32 @@ void Tui::run() {
continue;
}
bool should_exit = false;
bool should_output = false;
auto visitor = [this, &should_exit, &should_output]<typename T0>(T0 &&arg) {
auto visitor = [this, &should_exit]<typename T0>(T0 &&arg) {
using T = std::decay_t<T0>;
if constexpr (std::is_same_v<T, Command::None>) {
std::cout << "Invalid command!" << std::endl;
} else if constexpr (std::is_same_v<T, Command::Next>) {
try {
std::cout << "Fetching..." << std::endl;
m_pager += 1;
} catch (const std::runtime_error &e) {
std::cout << e.what() << std::endl;
return;
}
should_output = true;
std::cout << m_pager->str_pretty() << std::endl;
} else if constexpr (std::is_same_v<T, Command::Previous>) {
try {
std::cout << "Fetching..." << std::endl;
m_pager -= 1;
} catch (const std::runtime_error &e) {
std::cout << e.what() << std::endl;
return;
}
should_output = true;
std::cout << m_pager->str_pretty() << std::endl;
} else if constexpr (std::is_same_v<T, Command::Refresh>) {
m_pager.clear();
should_output = true;
std::cout << m_pager->str_pretty() << std::endl;
} else if constexpr (std::is_same_v<T, Command::Exit>) {
should_exit = true;
} else if constexpr (std::is_same_v<T, Command::Help>) {
@ -99,32 +96,16 @@ void Tui::run() {
const Command::Seek &seek = arg;
const int number = seek.number;
try {
std::cout << "Fetching..." << std::endl;
m_pager.seek(number);
} catch (const std::runtime_error &e) {
std::cout << e.what() << std::endl;
return;
}
should_output = true;
std::cout << m_pager->str_pretty() << std::endl;
}
};
std::visit(visitor, command);
if (should_exit)
return;
clear_console();
if (should_output)
std::cout << m_pager->str_pretty() << std::endl;
}
}
void Tui::clear_console() {
const auto CMD =
#ifdef _WIN32 || _WIN64
"cls";
#else
"clear";
#endif
system(CMD);
}

View File

@ -16,10 +16,6 @@ public:
void run();
private:;
static void clear_console();
private:
Pager m_pager;
};