search.rs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. use crate::application::mode::ModeData;
  2. use crate::application::Application;
  3. use crate::errors::*;
  4. use crossterm::event::KeyCode;
  5. use held_core::utils::{position::Position, range::Range};
  6. pub fn exec_search(app: &mut Application) -> Result<()> {
  7. if let ModeData::Search(ref mut search_data) = app.mode {
  8. search_data.is_exec_search = true;
  9. if let Some(ref mut buffer) = app.workspace.current_buffer {
  10. let search_string = search_data.search_string.clone();
  11. let search_result = buffer.search(&search_string);
  12. let fixed_offset = search_string.len();
  13. let ranges: Vec<Range> = search_result
  14. .into_iter()
  15. .map(|pos| {
  16. let end_position = Position {
  17. line: pos.line,
  18. offset: pos.offset + fixed_offset,
  19. };
  20. Range::new(pos, end_position)
  21. })
  22. .collect();
  23. search_data.search_result = ranges;
  24. }
  25. }
  26. Ok(())
  27. }
  28. pub fn input_search_data(app: &mut Application) -> Result<()> {
  29. if let Some(key) = app.monitor.last_key {
  30. if let KeyCode::Char(c) = key.code {
  31. if let ModeData::Search(ref mut search_data) = app.mode {
  32. if search_data.is_exec_search == false {
  33. search_data
  34. .search_string
  35. .insert(search_data.search_string.len(), c);
  36. }
  37. }
  38. }
  39. }
  40. Ok(())
  41. }
  42. pub fn backspace(app: &mut Application) -> Result<()> {
  43. if let ModeData::Search(ref mut search_data) = app.mode {
  44. if search_data.is_exec_search == false && search_data.search_string.len() > 0 {
  45. search_data
  46. .search_string
  47. .remove(search_data.search_string.len() - 1);
  48. }
  49. }
  50. Ok(())
  51. }
  52. pub fn last_result(app: &mut Application) -> Result<()> {
  53. if let ModeData::Search(ref mut search_data) = app.mode {
  54. if search_data.is_exec_search == true && search_data.search_result.len() != 1 {
  55. search_data.search_result_index =
  56. (search_data.search_result_index + search_data.search_result.len() - 2)
  57. % (search_data.search_result.len() - 1);
  58. }
  59. }
  60. Ok(())
  61. }
  62. pub fn next_result(app: &mut Application) -> Result<()> {
  63. if let ModeData::Search(ref mut search_data) = app.mode {
  64. if search_data.is_exec_search == true && search_data.search_result.len() != 1 {
  65. search_data.search_result_index =
  66. (search_data.search_result_index + 1) % (search_data.search_result.len() - 1);
  67. }
  68. }
  69. Ok(())
  70. }
  71. pub fn clear(app: &mut Application) -> Result<()> {
  72. if let ModeData::Search(ref mut search_data) = app.mode {
  73. search_data.clear();
  74. }
  75. Ok(())
  76. }