-
Notifications
You must be signed in to change notification settings - Fork 557
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
Merge release/v1.0.0
to develop
#4867
Changes from 2 commits
6a215b6
5fcbed6
770869b
e68d444
70aead6
5ab32f7
b0d7bdc
21531d8
e666b66
18417e4
40593bd
e26974d
7068e77
e1b582b
169c3b3
9e70ef1
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 |
---|---|---|
|
@@ -63,3 +63,13 @@ describe("filter resolves correctly", () => { | |
).toBeUndefined(); | ||
}); | ||
}); | ||
|
||
describe("heatmap utils", () => { | ||
it("clamps for heatmaps", async () => { | ||
// A value below a heatmap range returns -1 | ||
expect(painter.clampedIndex(1, 2, 3, 4)).toBe(-1); | ||
|
||
// A value above a heatmap range return the max | ||
expect(painter.clampedIndex(4, 2, 3, 4)).toBe(3); | ||
}); | ||
Comment on lines
+68
to
+74
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 Enhance test coverage and clarity for The test case covers important edge cases, but consider the following improvements:
Here's a suggested refactor: describe("heatmap utils", () => {
describe("clampedIndex", () => {
test.each([
{ value: 1, min: 2, max: 3, steps: 4, expected: -1, description: "value below range" },
{ value: 4, min: 2, max: 3, steps: 4, expected: 3, description: "value above range" },
{ value: 2.5, min: 2, max: 3, steps: 4, expected: 2, description: "value within range" },
])("returns $expected when $description", ({ value, min, max, steps, expected }) => {
expect(painter.clampedIndex(value, min, max, steps)).toBe(expected);
});
});
}); This refactor improves readability, adds a test for a value within the range, and makes it easier to add more test cases in the future. |
||
}); |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -206,23 +206,28 @@ export const PainterFactory = (requestColor) => ({ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// 0 is background image | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (value !== 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let r; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (coloring.by === COLOR_BY.FIELD) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
color = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fieldSetting?.fieldColor ?? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(await requestColor(coloring.pool, coloring.seed, field)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
r = get32BitColor(color, Math.min(max, Math.abs(value)) / max); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const index = Math.round( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(Math.max(value - start, 0) / (stop - start)) * (scale.length - 1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
r = get32BitColor(scale[index]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (value === 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let r: number; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (coloring.by === COLOR_BY.FIELD) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
color = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fieldSetting?.fieldColor ?? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(await requestColor(coloring.pool, coloring.seed, field)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
r = get32BitColor(color, Math.min(max, Math.abs(value)) / max); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const index = clampedIndex(value, start, stop, scale.length); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (index < 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// values less than range start are background | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
overlay[i] = r; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
r = get32BitColor(scale[index]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
overlay[i] = r; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Segmentation: async ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -386,8 +391,23 @@ export const convertToHex = (color: string) => | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const convertMaskColorsToObject = (array: MaskColorInput[]) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const result = {}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!array) return {}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
array.forEach((item) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (const item of array) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
result[item.intTarget.toString()] = item.color; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return result; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export const clampedIndex = ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
value: number, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
start: number, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
stop: number, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
length: number | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (value < start) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return -1; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const clamped = Math.min(value, stop); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return Math.round( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(Math.max(clamped - start, 0) / (stop - start)) * (length - 1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+400
to
+413
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. Potential division by zero in The Apply this diff to handle the division by zero: export const clampedIndex = (
value: number,
start: number,
stop: number,
length: number
) => {
if (value < start) {
return -1;
}
+ if (stop === start) {
+ return length - 1; // Or handle as appropriate for your application
+ }
const clamped = Math.min(value, stop);
return Math.round(
(Math.max(clamped - start, 0) / (stop - start)) * (length - 1)
);
}; 📝 Committable suggestion
Suggested change
|
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.
Logical error: Redundant division in opacity calculation
In line 224,
result
is already normalized between 0 and 1 by dividing bymax
. Dividingresult
bymax
again in line 226 causes the opacity to be incorrectly reduced, which may result in the heatmap being rendered with unintended transparency levels.Apply this diff to correct the calculation:
📝 Committable suggestion