2018-10-19 04:58:38 +08:00
|
|
|
#include "ftxui/component/input.hpp"
|
2019-01-13 01:24:46 +08:00
|
|
|
#include "ftxui/screen/string.hpp"
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2018-10-19 04:58:38 +08:00
|
|
|
|
|
|
|
// Component implementation.
|
2019-01-12 22:00:08 +08:00
|
|
|
Element Input::Render() {
|
2019-01-27 09:33:06 +08:00
|
|
|
cursor_position = std::max(0, std::min<int>(content.size(), cursor_position));
|
|
|
|
auto main_decorator = flex | size(HEIGHT, EQUAL, 1);
|
2018-10-21 20:18:11 +08:00
|
|
|
bool is_focused = Focused();
|
|
|
|
|
|
|
|
// Placeholder.
|
|
|
|
if (content.size() == 0) {
|
|
|
|
if (is_focused)
|
2019-01-27 09:33:06 +08:00
|
|
|
return text(placeholder) | dim | inverted | main_decorator;
|
2018-10-21 20:18:11 +08:00
|
|
|
else
|
2019-01-27 09:33:06 +08:00
|
|
|
return text(placeholder) | dim | main_decorator;
|
2018-10-21 20:18:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Not focused.
|
|
|
|
if (!is_focused)
|
2019-01-27 09:33:06 +08:00
|
|
|
return text(content) | main_decorator;
|
2018-10-21 20:18:11 +08:00
|
|
|
|
|
|
|
std::wstring part_before_cursor = content.substr(0,cursor_position);
|
|
|
|
std::wstring part_at_cursor = cursor_position < (int)content.size()
|
|
|
|
? content.substr(cursor_position, 1)
|
|
|
|
: L" ";
|
|
|
|
std::wstring part_after_cursor = cursor_position < (int)content.size() - 1
|
|
|
|
? content.substr(cursor_position + 1)
|
|
|
|
: L"";
|
2019-01-20 05:06:05 +08:00
|
|
|
auto focused =
|
|
|
|
is_focused ? focus : select;
|
|
|
|
|
2019-01-05 09:03:49 +08:00
|
|
|
return
|
|
|
|
hbox(
|
|
|
|
text(part_before_cursor),
|
2019-01-20 05:06:05 +08:00
|
|
|
text(part_at_cursor) | underlined | focused,
|
2019-01-05 09:03:49 +08:00
|
|
|
text(part_after_cursor)
|
2019-01-27 09:33:06 +08:00
|
|
|
) | flex | inverted | frame | main_decorator;
|
|
|
|
|
2018-10-19 04:58:38 +08:00
|
|
|
}
|
|
|
|
bool Input::OnEvent(Event event) {
|
2019-01-27 09:33:06 +08:00
|
|
|
cursor_position = std::max(0, std::min<int>(content.size(), cursor_position));
|
2018-10-19 04:58:38 +08:00
|
|
|
std::wstring c;
|
|
|
|
|
2018-10-21 20:18:11 +08:00
|
|
|
// Backspace.
|
2018-10-19 04:58:38 +08:00
|
|
|
if (event == Event::Backspace) {
|
2018-10-21 20:18:11 +08:00
|
|
|
if (cursor_position == 0)
|
|
|
|
return false;
|
|
|
|
content.erase(cursor_position - 1, 1);
|
|
|
|
cursor_position--;
|
2018-10-19 04:58:38 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-21 20:18:11 +08:00
|
|
|
// Enter.
|
2018-10-19 04:58:38 +08:00
|
|
|
if (event == Event::Return) {
|
2019-01-27 09:33:06 +08:00
|
|
|
on_enter();
|
2018-10-19 04:58:38 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-01-27 09:33:06 +08:00
|
|
|
if (event == Event::Custom) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-21 20:18:11 +08:00
|
|
|
if (event == Event::ArrowLeft && cursor_position > 0) {
|
|
|
|
cursor_position--;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event == Event::ArrowRight && cursor_position < (int)content.size()) {
|
|
|
|
cursor_position++;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Content
|
2018-10-19 04:58:38 +08:00
|
|
|
constexpr char ESC = char(27);
|
|
|
|
if (event.values[0] != ESC) {
|
2018-10-21 20:18:11 +08:00
|
|
|
wchar_t v = (char)event.values[0];
|
|
|
|
content.insert(cursor_position, 1, v);
|
|
|
|
cursor_position++;
|
2018-10-19 04:58:38 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
} // namespace ftxui
|