-
Notifications
You must be signed in to change notification settings - Fork 144
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
Feat: Reorganize Wallet PopUp #945
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,24 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { Connector } from "starknetkit"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
export const sortConnectors = (connectors: Connector[]): Connector[] => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
const available: Connector[] = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
const notAvailable: Connector[] = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Sort connectors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
connectors.forEach((connector) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (connector.available()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
available.push(connector); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
notAvailable.push(connector); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
fricoben marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
return [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
...available, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Reorganized not available connectors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
...notAvailable.sort((a, b) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
const order = ["okxwallet", "bitkeep"]; // desired order | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
return order.indexOf(a.id) - order.indexOf(b.id); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Improve sorting configuration and handle unknown connectors The current implementation has two potential issues:
Consider this improved implementation: +const DEFAULT_ORDER = ["okxwallet", "bitkeep"];
+
export const sortConnectors = (connectors: Connector[]): Connector[] => {
const available: Connector[] = [];
const notAvailable: Connector[] = [];
+ const order = DEFAULT_ORDER;
// Rest of the code...
return [
...available,
...notAvailable.sort((a, b) => {
- const order = ["okxwallet", "bitkeep"]; // desired order
- return order.indexOf(a.id) - order.indexOf(b.id);
+ const indexA = order.indexOf(a.id);
+ const indexB = order.indexOf(b.id);
+ // If neither connector is in the order array, maintain their relative position
+ if (indexA === -1 && indexB === -1) return 0;
+ // If only one connector is in the order array, prioritize it
+ if (indexA === -1) return 1;
+ if (indexB === -1) return -1;
+ // Both connectors are in the order array, sort by their index
+ return indexA - indexB;
}),
];
}; 📝 Committable suggestion
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to create a connector.test.js function to test your util and make sur it covers all hedge cases here :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename the file
connectors.ts
, we'll reuse it later for connectors utils