-
-
Notifications
You must be signed in to change notification settings - Fork 900
web: correct toolbar item indentation when moving between groups + add tests for customize-toolbar.tsx #8624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ArjunCodess
wants to merge
5
commits into
streetwriters:master
Choose a base branch
from
ArjunCodess:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a85c0e6
web: adjust item depth calculation during move operation
ArjunCodess c5f3f2a
web: add tests for customize-toolbar.tsx
ArjunCodess bc1a62d
refactor(toolbar): export types and functions in customize-toolbar.tsx
ArjunCodess e75bff3
refactor(tests): simplify and import types for customize-toolbar tests
ArjunCodess a285522
refactor(toolbar): remove export from internal functions in customize…
ArjunCodess File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,182 @@ | ||
| /* | ||
| This file is part of the Notesnook project (https://notesnook.com/) | ||
|
|
||
| Copyright (C) 2023 Streetwriters (Private) Limited | ||
|
|
||
| This program is free software: you can redistribute it and/or modify | ||
| it under the terms of the GNU General Public License as published by | ||
| the Free Software Foundation, either version 3 of the License, or | ||
| (at your option) any later version. | ||
|
|
||
| This program is distributed in the hope that it will be useful, | ||
| but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| GNU General Public License for more details. | ||
|
|
||
| You should have received a copy of the GNU General Public License | ||
| along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| import { | ||
| Item, | ||
| Group, | ||
| Subgroup, | ||
| TreeNode, | ||
| moveItem | ||
| } from "../src/dialogs/settings/components/customize-toolbar"; | ||
| import { describe, it, expect } from "vitest"; | ||
|
|
||
| describe("moveItem function", () => { | ||
| it("should correctly set depth when moving item from subgroup to main group", () => { | ||
| const group: Group = { | ||
| type: "group", | ||
| id: "group1", | ||
| title: "Group 1", | ||
| depth: 0 | ||
| }; | ||
|
|
||
| const subgroup: Subgroup = { | ||
| type: "group", | ||
| id: "subgroup1", | ||
| title: "Subgroup 1", | ||
| depth: 1 | ||
| }; | ||
|
|
||
| const item: Item = { | ||
| type: "item", | ||
| id: "item1", | ||
| title: "Item 1", | ||
| depth: 2, // currently in subgroup | ||
| toolId: "bold", | ||
| icon: "bold" | ||
| }; | ||
|
|
||
| const items: TreeNode[] = [group, subgroup, item]; | ||
|
|
||
| // move item from subgroup to main group | ||
| const result = moveItem(items, "item1", "group1"); | ||
|
|
||
| // find the moved item | ||
| const movedItem = result.find((i) => i.id === "item1") as Item; | ||
|
|
||
| // the item should now have depth 1 (group depth + 1) | ||
| expect(movedItem.depth).toBe(1); | ||
| }); | ||
|
|
||
| it("should correctly set depth when moving item from main group to subgroup", () => { | ||
| const group: Group = { | ||
| type: "group", | ||
| id: "group1", | ||
| title: "Group 1", | ||
| depth: 0 | ||
| }; | ||
|
|
||
| const item: Item = { | ||
| type: "item", | ||
| id: "item1", | ||
| title: "Item 1", | ||
| depth: 1, // currently in main group | ||
| toolId: "bold", | ||
| icon: "bold" | ||
| }; | ||
|
|
||
| const subgroup: Subgroup = { | ||
| type: "group", | ||
| id: "subgroup1", | ||
| title: "Subgroup 1", | ||
| depth: 1 | ||
| }; | ||
|
|
||
| const items: TreeNode[] = [group, item, subgroup]; | ||
|
|
||
| // move item from main group to subgroup | ||
| const result = moveItem(items, "item1", "subgroup1"); | ||
|
|
||
| // find the moved item | ||
| const movedItem = result.find((i) => i.id === "item1") as Item; | ||
|
|
||
| // the item should now have depth 2 (subgroup depth + 1) | ||
| expect(movedItem.depth).toBe(2); | ||
| }); | ||
|
|
||
| it("should correctly set depth when moving item to another item at same level", () => { | ||
| const group: Group = { | ||
| type: "group", | ||
| id: "group1", | ||
| title: "Group 1", | ||
| depth: 0 | ||
| }; | ||
|
|
||
| const item1: Item = { | ||
| type: "item", | ||
| id: "item1", | ||
| title: "Item 1", | ||
| depth: 1, | ||
| toolId: "bold", | ||
| icon: "bold" | ||
| }; | ||
|
|
||
| const item2: Item = { | ||
| type: "item", | ||
| id: "item2", | ||
| title: "Item 2", | ||
| depth: 1, | ||
| toolId: "italic", | ||
| icon: "italic" | ||
| }; | ||
|
|
||
| const items: TreeNode[] = [group, item1, item2]; | ||
|
|
||
| // move item1 to item2's position | ||
| const result = moveItem(items, "item1", "item2"); | ||
|
|
||
| // find the moved item | ||
| const movedItem = result.find((i) => i.id === "item1") as Item; | ||
|
|
||
| // the item should maintain the same depth as the target item | ||
| expect(movedItem.depth).toBe(1); | ||
| }); | ||
|
|
||
| it("should correctly set depth when moving item from subgroup to another subgroup", () => { | ||
| const group: Group = { | ||
| type: "group", | ||
| id: "group1", | ||
| title: "Group 1", | ||
| depth: 0 | ||
| }; | ||
|
|
||
| const subgroup1: Subgroup = { | ||
| type: "group", | ||
| id: "subgroup1", | ||
| title: "Subgroup 1", | ||
| depth: 1 | ||
| }; | ||
|
|
||
| const item1: Item = { | ||
| type: "item", | ||
| id: "item1", | ||
| title: "Item 1", | ||
| depth: 2, | ||
| toolId: "bold", | ||
| icon: "bold" | ||
| }; | ||
|
|
||
| const subgroup2: Subgroup = { | ||
| type: "group", | ||
| id: "subgroup2", | ||
| title: "Subgroup 2", | ||
| depth: 1 | ||
| }; | ||
|
|
||
| const items: TreeNode[] = [group, subgroup1, item1, subgroup2]; | ||
|
|
||
| // move item from subgroup1 to subgroup2 | ||
| const result = moveItem(items, "item1", "subgroup2"); | ||
|
|
||
| // find the moved item | ||
| const movedItem = result.find((i) => i.id === "item1") as Item; | ||
|
|
||
| // the item should now have depth 2 (subgroup depth + 1) | ||
| expect(movedItem.depth).toBe(2); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.