Commit Graph

183 Commits

Author SHA1 Message Date
EdJoPaTo
f777df7015 build: v0.22.0 2024-08-07 16:23:34 +02:00
Justin Restivo
e9ac48dba1 build: update ratatui to v0.28 (#41) 2024-08-07 15:46:20 +02:00
EdJoPaTo
84066758ef fixup! build: update ratatui to v0.27 (#40) 2024-07-09 22:36:27 +02:00
EdJoPaTo
a4ad85bd7a build: v0.21.0 2024-06-28 16:13:23 +02:00
Justin Restivo
42910cb919 build: update ratatui to v0.27 (#40) 2024-06-28 15:55:36 +02:00
EdJoPaTo
b5fc5ca693 fix(example): exit on Ctrl+C 2024-06-08 17:21:00 +02:00
EdJoPaTo
d676f66504 fix: must_use the structs 2024-05-23 15:15:08 +02:00
EdJoPaTo
136599257a build(cargo): include examples and benches 2024-05-22 21:59:35 +02:00
EdJoPaTo
569043ebfd build: v0.20.0 2024-05-22 21:14:55 +02:00
EdJoPaTo
051f49fd72 refactor(state)!: use same naming pattern for getters
BREAKING CHANGE: instead of deprecating selected, change it directly.
The old behaviour can be achieved with a `.collect::<Vec<_>>()` easily.
2024-05-22 14:52:57 +02:00
EdJoPaTo
d23f55b2ad feat(state): click_at (#36) 2024-05-22 08:35:06 +02:00
wenqian
c2b2340ef4 feat(tree_item): add method to expose identifier (#38) 2024-05-22 05:53:06 +02:00
sandercm
b07b537067 perf: take Tree::new items by reference (#32)
Co-authored-by: EdJoPaTo <rfc-conform-git-commit-email@funny-long-domain-label-everyone-hates-as-it-is-too-long.edjopato.de>
2024-05-16 10:21:38 +02:00
EdJoPaTo
fc2495396f fixup! refactor: improve lifetime names 2024-05-15 17:08:35 +02:00
EdJoPaTo
2fd909aa0f refactor(flatten): improve variable/test names 2024-05-15 14:45:01 +02:00
EdJoPaTo
2811a79713 perf(state): less clones on handling the selection 2024-05-15 13:51:54 +02:00
EdJoPaTo
bba94dcf88 perf(state): const get_open
no need for additional logic, its read only anyway

The only reason for this was to keep the API with less breaking changes.
Performance is more important.
2024-05-15 13:51:54 +02:00
EdJoPaTo
fa85e7bb56 test: check rendered results 2024-05-15 13:51:54 +02:00
EdJoPaTo
9dcccba31d refactor: improve lifetime names 2024-05-15 13:51:54 +02:00
EdJoPaTo
04ecf5388f docs(state): improve comments 2024-05-15 13:51:54 +02:00
EdJoPaTo
a20134bdcd feat(example): debounce, top right corner performance info and update on resize 2024-05-15 13:51:54 +02:00
EdJoPaTo
65fd1c04ed refactor!: reuse text style of tree item
BREAKING CHANGE: TreeItem style is gone
2024-05-15 13:51:54 +02:00
EdJoPaTo
775e5cc4ef refactor(TreeItem): simplify with Self 2024-05-15 13:51:54 +02:00
EdJoPaTo
202e8d874c style: split import groups correctly 2024-05-15 13:51:54 +02:00
EdJoPaTo
be05a341f4 test: basic tests to ensure render doesnt panic
should use buffer assertions in the future but this is a start
2024-05-15 13:51:54 +02:00
EdJoPaTo
e9656f82d1 test(flatten): ensure depth works 2024-05-15 13:51:54 +02:00
EdJoPaTo
537dc8021e perf(flatten): fewer clones 2024-05-15 13:49:50 +02:00
EdJoPaTo
fdd2c5436a feat!: cache last tree structure to simplify events
Things like key up/down dont require the items anymore to be used.
Instead a cached last state from last render is used.
2024-05-15 12:49:37 +02:00
EdJoPaTo
701be9315d test(bench): add benchmark 2024-05-15 12:49:37 +02:00
EdJoPaTo
37ade72330 refactor(item): use keyword Self 2024-05-15 12:49:37 +02:00
EdJoPaTo
68d19b0a58 ci(rust): improve workflow 2024-05-15 12:49:37 +02:00
EdJoPaTo
d7415f40c7 build(cargo): specify lints in Cargo.toml 2024-03-15 03:17:52 +01:00
EdJoPaTo
a60eb5266b refactor: simplify docs and LSP hints with names exactly as exported 2024-03-14 11:55:10 +01:00
EdJoPaTo
d5f3635613 build: v0.19.0 2024-02-26 21:12:44 +01:00
EdJoPaTo
a2f8100fe7 refactor!: remove get_identifier_without_leaf
remove as its no longer used either internally or in mqttui for some time.
Either its quickly implemented yourself or `Vec::pop()` does the job better.
2024-02-26 20:49:21 +01:00
EdJoPaTo
ed9a54a55a feat(state)!: return true when something changed 2024-02-26 19:09:57 +01:00
EdJoPaTo
0a5c7d6cfb refactor(example): move draw to App::draw 2024-02-26 18:09:26 +01:00
EdJoPaTo
15f05be46c fix: do not move offset on unselect 2024-02-26 18:05:17 +01:00
EdJoPaTo
d3386fe016 build: v0.18.0 2024-02-24 18:39:38 +01:00
EdJoPaTo
83dd95b87f fix(scrollbar): calculate area margin from inside and outside of border areas 2024-02-24 18:39:34 +01:00
EdJoPaTo
9a0b26f5c9 refactor(scrollbar): use variable names over unnamed pair content 2024-02-24 11:21:48 +01:00
EdJoPaTo
49bfa7e5f0 refactor(example): restructure import / use 2024-02-24 11:18:09 +01:00
EdJoPaTo
b31a599a37 refactor(scrollbar): experimental prefix over feature
A feature flag has quite some complexity with it and is annyoing.
Write a rustdoc comment about it and be clear about it being experimental and include it as is.
2024-02-24 11:08:30 +01:00
EdJoPaTo
98b53e448f fix(scrollbar): workaround overscroll 2024-02-24 03:09:58 +01:00
EdJoPaTo
ce3b2b530e fix(scrollbar): change margin to individual start/end 2024-02-24 03:09:58 +01:00
EdJoPaTo
86458ffc39 perf: prefer into_iter() over clone() 2024-02-24 03:09:58 +01:00
EdJoPaTo
4130a800b8 perf: get item.height() less often on render 2024-02-24 03:09:58 +01:00
EdJoPaTo
2781a2d146 refactor: deconstruct Flattened for more speakable variables 2024-02-24 03:09:58 +01:00
EdJoPaTo
4e00f07c74 fix(scrollbar): use current height rather than available height
with item height = 1 its the same but with height != 1 its not
2024-02-24 00:04:39 +01:00
EdJoPaTo
85bfecc568 fix!: remove start_corner
While is somewhat works its not used and doesnt seem that useful
2024-02-23 23:51:37 +01:00