mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-02 08:40:53 +03:00
fix(frontend): clean related Brains useEffect (#2091)
# Description - Select current Brain from brain_id instead of brain_name - Avoid multiple calls of useEffect ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
This commit is contained in:
parent
6c5496f797
commit
67c71bbc1d
@ -129,6 +129,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
"@typescript-eslint/prefer-optional-chain": "error",
|
"@typescript-eslint/prefer-optional-chain": "error",
|
||||||
|
"react-hooks/exhaustive-deps": "off",
|
||||||
"no-shadow": "off",
|
"no-shadow": "off",
|
||||||
"@typescript-eslint/no-shadow": "error",
|
"@typescript-eslint/no-shadow": "error",
|
||||||
"@typescript-eslint/prefer-nullish-coalescing": "error",
|
"@typescript-eslint/prefer-nullish-coalescing": "error",
|
||||||
|
@ -32,12 +32,12 @@ const RelatedBrains = ({ closeBrains }: RelatedBrainsProps): JSX.Element => {
|
|||||||
const g = Math.round(lerp(211, 43, t));
|
const g = Math.round(lerp(211, 43, t));
|
||||||
const b = Math.round(lerp(211, 226, t));
|
const b = Math.round(lerp(211, 226, t));
|
||||||
const isCurrentBrain =
|
const isCurrentBrain =
|
||||||
brain.name === messages[messages.length - 1].brain_name;
|
brain.id === messages[messages.length - 1].brain_id;
|
||||||
|
|
||||||
return { color: `rgb(${r}, ${g}, ${b})`, isCurrentBrain: isCurrentBrain };
|
return { color: `rgb(${r}, ${g}, ${b})`, isCurrentBrain: isCurrentBrain };
|
||||||
});
|
});
|
||||||
setCloseBrainProps(newProps);
|
setCloseBrainProps(newProps);
|
||||||
}, [closeBrains, messages]);
|
}, [closeBrains, messages.length]);
|
||||||
|
|
||||||
if (closeBrains.length === 0) {
|
if (closeBrains.length === 0) {
|
||||||
return <></>;
|
return <></>;
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex: 1 1 0%;
|
flex: 1 1 0%;
|
||||||
background-color: Colors.$white;
|
background-color: Colors.$white;
|
||||||
padding: Spacings.$spacing06;
|
padding-block: Spacings.$spacing06;
|
||||||
|
padding-inline: Spacings.$spacing09;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: Spacings.$spacing09;
|
gap: Spacings.$spacing09;
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@ export type ChatMessage = {
|
|||||||
message_time: string;
|
message_time: string;
|
||||||
prompt_title?: string;
|
prompt_title?: string;
|
||||||
brain_name?: string;
|
brain_name?: string;
|
||||||
|
brain_id?: UUID;
|
||||||
metadata?: {
|
metadata?: {
|
||||||
sources?: [string];
|
sources?: [string];
|
||||||
close_brains?: CloseBrain[];
|
close_brains?: CloseBrain[];
|
||||||
|
Loading…
Reference in New Issue
Block a user