use tuirealm::command::{Cmd, CmdResult, Direction};
use tuirealm::component::Component;
use tuirealm::props::{
AttrValue, Attribute, Borders, Color, LineStatic, PropPayload, PropValue, Props, QueryResult,
Style, TextModifiers, Title,
};
use tuirealm::ratatui::Frame;
use tuirealm::ratatui::layout::{Constraint, Direction as LayoutDirection, Layout, Rect};
use tuirealm::ratatui::widgets::{List, ListDirection, ListItem, ListState, Paragraph};
use tuirealm::state::{State, StateValue};
use crate::prop_ext::{CommonHighlight, CommonProps};
#[derive(Default)]
pub struct SelectStates {
pub choices: Vec<String>,
pub selected: usize,
pub previously_selected: usize,
pub tab_open: bool,
}
impl SelectStates {
pub fn next_choice(&mut self, rewind: bool) {
if self.tab_open {
if rewind && self.selected + 1 >= self.choices.len() {
self.selected = 0;
} else if self.selected + 1 < self.choices.len() {
self.selected += 1;
}
}
}
pub fn prev_choice(&mut self, rewind: bool) {
if self.tab_open {
if rewind && self.selected == 0 && !self.choices.is_empty() {
self.selected = self.choices.len() - 1;
} else if self.selected > 0 {
self.selected -= 1;
}
}
}
pub fn set_choices(&mut self, choices: impl Into<Vec<String>>) {
self.choices = choices.into();
if self.selected >= self.choices.len() {
self.selected = match self.choices.len() {
0 => 0,
l => l - 1,
};
}
}
pub fn select(&mut self, i: usize) {
if i < self.choices.len() {
self.selected = i;
}
}
pub fn close_tab(&mut self) {
self.tab_open = false;
}
pub fn open_tab(&mut self) {
self.previously_selected = self.selected;
self.tab_open = true;
}
pub fn cancel_tab(&mut self) {
self.close_tab();
self.selected = self.previously_selected;
}
#[must_use]
pub fn is_tab_open(&self) -> bool {
self.tab_open
}
}
#[derive(Default)]
#[must_use]
pub struct Select {
common: CommonProps,
common_hg: CommonHighlight,
props: Props,
pub states: SelectStates,
}
impl Select {
pub fn foreground(mut self, fg: Color) -> Self {
self.attr(Attribute::Foreground, AttrValue::Color(fg));
self
}
pub fn background(mut self, bg: Color) -> Self {
self.attr(Attribute::Background, AttrValue::Color(bg));
self
}
pub fn modifiers(mut self, m: TextModifiers) -> Self {
self.attr(Attribute::TextProps, AttrValue::TextModifiers(m));
self
}
pub fn style(mut self, style: Style) -> Self {
self.attr(Attribute::Style, AttrValue::Style(style));
self
}
pub fn inactive(mut self, s: Style) -> Self {
self.attr(Attribute::UnfocusedBorderStyle, AttrValue::Style(s));
self
}
pub fn borders(mut self, b: Borders) -> Self {
self.attr(Attribute::Borders, AttrValue::Borders(b));
self
}
pub fn title<T: Into<Title>>(mut self, title: T) -> Self {
self.attr(Attribute::Title, AttrValue::Title(title.into()));
self
}
pub fn rewind(mut self, r: bool) -> Self {
self.attr(Attribute::Rewind, AttrValue::Flag(r));
self
}
pub fn highlight_str<S: Into<LineStatic>>(mut self, s: S) -> Self {
self.attr(Attribute::HighlightedStr, AttrValue::TextLine(s.into()));
self
}
pub fn highlight_style(mut self, s: Style) -> Self {
self.attr(Attribute::HighlightStyle, AttrValue::Style(s));
self
}
pub fn highlight_style_inactive(mut self, s: Style) -> Self {
self.attr(Attribute::HighlightStyleUnfocused, AttrValue::Style(s));
self
}
pub fn choices<S: Into<String>>(mut self, choices: impl IntoIterator<Item = S>) -> Self {
self.attr(
Attribute::Content,
AttrValue::Payload(PropPayload::Vec(
choices
.into_iter()
.map(|v| PropValue::Str(v.into()))
.collect(),
)),
);
self
}
pub fn value(mut self, i: usize) -> Self {
self.attr(
Attribute::Value,
AttrValue::Payload(PropPayload::Single(PropValue::Usize(i))),
);
self
}
fn render_selected_text(&self, render: &mut Frame, area: Rect) {
let selected_text = self
.states
.choices
.get(self.states.selected)
.map(String::as_str)
.unwrap_or_default();
let widget = Paragraph::new(selected_text).style(self.common.style);
render.render_widget(widget, area);
}
fn render_choices(&self, render: &mut Frame, area: Rect) {
let choices: Vec<ListItem> = self
.states
.choices
.iter()
.map(|x| ListItem::new(x.as_str()))
.collect();
let mut widget = List::new(choices)
.direction(ListDirection::TopToBottom)
.style(self.common.style)
.highlight_style(
self.common_hg
.get_style_focus(self.common.style, self.common.is_active()),
);
if let Some(symbol) = self.common_hg.get_symbol() {
widget = widget.highlight_symbol(symbol);
}
let mut state = ListState::default();
state.select(Some(self.states.selected));
render.render_stateful_widget(widget, area, &mut state);
}
#[inline]
fn rewindable(&self) -> bool {
self.props
.get(Attribute::Rewind)
.and_then(AttrValue::as_flag)
.unwrap_or_default()
}
}
impl Component for Select {
fn view(&mut self, render: &mut Frame, mut area: Rect) {
if !self.common.display {
return;
}
render.buffer_mut().set_style(area, self.common.style);
if let Some(block) = self.common.get_block() {
let inner = block.inner(area);
render.render_widget(block, area);
area = inner;
}
let [para_area, list_area] = if self.states.is_tab_open() {
Layout::default()
.direction(LayoutDirection::Vertical)
.margin(0)
.constraints([Constraint::Length(2), Constraint::Min(1)])
.areas(area)
} else {
[area, Rect::ZERO]
};
self.render_selected_text(render, para_area);
if !list_area.is_empty() {
self.render_choices(render, list_area);
}
}
fn query<'a>(&'a self, attr: Attribute) -> Option<QueryResult<'a>> {
if let Some(value) = self
.common
.get_for_query(attr)
.or_else(|| self.common_hg.get_for_query(attr))
{
return Some(value);
}
self.props.get_for_query(attr)
}
fn attr(&mut self, attr: Attribute, value: AttrValue) {
if let Some(value) = self
.common
.set(attr, value)
.and_then(|value| self.common_hg.set(attr, value))
{
match attr {
Attribute::Content => {
let choices: Vec<String> = value
.unwrap_payload()
.unwrap_vec()
.iter()
.map(|x| x.clone().unwrap_str())
.collect();
self.states.set_choices(choices);
}
Attribute::Value => {
self.states
.select(value.unwrap_payload().unwrap_single().unwrap_usize());
}
Attribute::Focus if self.states.is_tab_open() => {
if let AttrValue::Flag(false) = value {
self.states.cancel_tab();
}
self.props.set(attr, value);
}
attr => {
self.props.set(attr, value);
}
}
}
}
fn state(&self) -> State {
if self.states.is_tab_open() {
State::None
} else {
State::Single(StateValue::Usize(self.states.selected))
}
}
fn perform(&mut self, cmd: Cmd) -> CmdResult {
match cmd {
Cmd::Move(Direction::Down) => {
self.states.next_choice(self.rewindable());
if self.states.is_tab_open() {
CmdResult::Changed(State::Single(StateValue::Usize(self.states.selected)))
} else {
CmdResult::NoChange
}
}
Cmd::Move(Direction::Up) => {
self.states.prev_choice(self.rewindable());
if self.states.is_tab_open() {
CmdResult::Changed(State::Single(StateValue::Usize(self.states.selected)))
} else {
CmdResult::NoChange
}
}
Cmd::Cancel => {
self.states.cancel_tab();
CmdResult::Changed(self.state())
}
Cmd::Submit => {
if self.states.is_tab_open() {
self.states.close_tab();
CmdResult::Submit(self.state())
} else {
self.states.open_tab();
CmdResult::Visual
}
}
_ => CmdResult::Invalid(cmd),
}
}
}
#[cfg(test)]
mod test {
use pretty_assertions::assert_eq;
use tuirealm::props::{HorizontalAlignment, PropPayload, PropValue};
use super::*;
#[test]
fn test_components_select_states() {
let mut states: SelectStates = SelectStates::default();
assert_eq!(states.selected, 0);
assert_eq!(states.choices.len(), 0);
assert_eq!(states.tab_open, false);
let choices: &[String] = &[
"lemon".to_string(),
"strawberry".to_string(),
"vanilla".to_string(),
"chocolate".to_string(),
];
states.set_choices(choices);
assert_eq!(states.selected, 0);
assert_eq!(states.choices.len(), 4);
states.prev_choice(false);
assert_eq!(states.selected, 0);
states.next_choice(false);
assert_eq!(states.selected, 0);
states.open_tab();
assert_eq!(states.is_tab_open(), true);
states.next_choice(false);
assert_eq!(states.selected, 1);
states.next_choice(false);
assert_eq!(states.selected, 2);
states.next_choice(false);
states.next_choice(false);
assert_eq!(states.selected, 3);
states.prev_choice(false);
assert_eq!(states.selected, 2);
states.close_tab();
assert_eq!(states.is_tab_open(), false);
states.prev_choice(false);
assert_eq!(states.selected, 2);
let choices: &[String] = &["lemon".to_string(), "strawberry".to_string()];
states.set_choices(choices);
assert_eq!(states.selected, 1); assert_eq!(states.choices.len(), 2);
let choices = vec![];
states.set_choices(choices);
assert_eq!(states.selected, 0); assert_eq!(states.choices.len(), 0);
let choices: &[String] = &[
"lemon".to_string(),
"strawberry".to_string(),
"vanilla".to_string(),
"chocolate".to_string(),
];
states.set_choices(choices);
states.open_tab();
assert_eq!(states.selected, 0);
states.prev_choice(true);
assert_eq!(states.selected, 3);
states.next_choice(true);
assert_eq!(states.selected, 0);
states.next_choice(true);
assert_eq!(states.selected, 1);
states.prev_choice(true);
assert_eq!(states.selected, 0);
states.close_tab();
states.select(2);
states.open_tab();
states.prev_choice(true);
states.prev_choice(true);
assert_eq!(states.selected, 0);
states.cancel_tab();
assert_eq!(states.selected, 2);
assert_eq!(states.is_tab_open(), false);
}
#[test]
fn test_components_select() {
let mut component = Select::default()
.foreground(Color::Red)
.background(Color::Black)
.borders(Borders::default())
.highlight_style(
Style::new()
.fg(Color::Red)
.add_modifier(TextModifiers::REVERSED),
)
.highlight_str(">>")
.title(
Title::from("C'est oui ou bien c'est non?").alignment(HorizontalAlignment::Center),
)
.choices(["Oui!", "Non", "Peut-être"])
.value(1)
.rewind(false);
assert_eq!(component.states.is_tab_open(), false);
component.states.open_tab();
assert_eq!(component.states.is_tab_open(), true);
component.states.close_tab();
assert_eq!(component.states.is_tab_open(), false);
component.attr(
Attribute::Value,
AttrValue::Payload(PropPayload::Single(PropValue::Usize(2))),
);
assert_eq!(component.state(), State::Single(StateValue::Usize(2)));
component.states.open_tab();
assert_eq!(
component.perform(Cmd::Move(Direction::Up)),
CmdResult::Changed(State::Single(StateValue::Usize(1))),
);
assert_eq!(
component.perform(Cmd::Move(Direction::Up)),
CmdResult::Changed(State::Single(StateValue::Usize(0))),
);
assert_eq!(
component.perform(Cmd::Move(Direction::Up)),
CmdResult::Changed(State::Single(StateValue::Usize(0))),
);
assert_eq!(
component.perform(Cmd::Move(Direction::Down)),
CmdResult::Changed(State::Single(StateValue::Usize(1))),
);
assert_eq!(
component.perform(Cmd::Move(Direction::Down)),
CmdResult::Changed(State::Single(StateValue::Usize(2))),
);
assert_eq!(
component.perform(Cmd::Move(Direction::Down)),
CmdResult::Changed(State::Single(StateValue::Usize(2))),
);
assert_eq!(
component.perform(Cmd::Submit),
CmdResult::Submit(State::Single(StateValue::Usize(2))),
);
assert_eq!(component.states.is_tab_open(), false);
assert_eq!(component.perform(Cmd::Submit), CmdResult::Visual);
assert_eq!(component.states.is_tab_open(), true);
assert_eq!(
component.perform(Cmd::Submit),
CmdResult::Submit(State::Single(StateValue::Usize(2))),
);
assert_eq!(component.states.is_tab_open(), false);
assert_eq!(
component.perform(Cmd::Move(Direction::Down)),
CmdResult::NoChange
);
assert_eq!(
component.perform(Cmd::Move(Direction::Up)),
CmdResult::NoChange
);
}
#[test]
fn various_set_choice_types() {
SelectStates::default().set_choices(&["hello".to_string()]);
SelectStates::default().set_choices(vec!["hello".to_string()]);
SelectStates::default().set_choices(vec!["hello".to_string()].into_boxed_slice());
}
#[test]
fn various_choice_types() {
let _ = Select::default().choices(["hello"]);
let _ = Select::default().choices(["hello".to_string()]);
let _ = Select::default().choices(vec!["hello"]);
let _ = Select::default().choices(vec!["hello".to_string()]);
let _ = Select::default().choices(vec!["hello"].into_boxed_slice());
let _ = Select::default().choices(vec!["hello".to_string()].into_boxed_slice());
}
}