Order receipts with the most recent on the right (#8506)
parent
3a63c88a11
commit
b12c002602
|
@ -52,11 +52,11 @@ interface IAvatarPosition {
|
||||||
position: number;
|
position: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function determineAvatarPosition(index: number, count: number, max: number): IAvatarPosition {
|
export function determineAvatarPosition(index: number, max: number): IAvatarPosition {
|
||||||
if (index < max) {
|
if (index < max) {
|
||||||
return {
|
return {
|
||||||
hidden: false,
|
hidden: false,
|
||||||
position: Math.min(count, max) - index - 1,
|
position: index,
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
|
@ -133,7 +133,7 @@ export function ReadReceiptGroup(
|
||||||
}
|
}
|
||||||
|
|
||||||
const avatars = readReceipts.map((receipt, index) => {
|
const avatars = readReceipts.map((receipt, index) => {
|
||||||
const { hidden, position } = determineAvatarPosition(index, readReceipts.length, maxAvatars);
|
const { hidden, position } = determineAvatarPosition(index, maxAvatars);
|
||||||
|
|
||||||
const userId = receipt.userId;
|
const userId = receipt.userId;
|
||||||
let readReceiptInfo: IReadReceiptInfo;
|
let readReceiptInfo: IReadReceiptInfo;
|
||||||
|
|
|
@ -34,46 +34,46 @@ describe("ReadReceiptGroup", () => {
|
||||||
describe("AvatarPosition", () => {
|
describe("AvatarPosition", () => {
|
||||||
// The avatar slots are numbered from right to left
|
// The avatar slots are numbered from right to left
|
||||||
// That means currently, we’ve got the slots | 3 | 2 | 1 | 0 | each with 10px distance to the next one.
|
// That means currently, we’ve got the slots | 3 | 2 | 1 | 0 | each with 10px distance to the next one.
|
||||||
// We want to fill slots so the first avatar is in the left-most slot without leaving any slots at the right
|
// We want to fill slots so the first avatar is in the right-most slot without leaving any slots at the left
|
||||||
// unoccupied.
|
// unoccupied.
|
||||||
it("to handle the non-overflowing case correctly", () => {
|
it("to handle the non-overflowing case correctly", () => {
|
||||||
expect(determineAvatarPosition(0, 1, 4))
|
expect(determineAvatarPosition(0, 4))
|
||||||
.toEqual({ hidden: false, position: 0 });
|
.toEqual({ hidden: false, position: 0 });
|
||||||
|
|
||||||
expect(determineAvatarPosition(0, 2, 4))
|
expect(determineAvatarPosition(0, 4))
|
||||||
|
.toEqual({ hidden: false, position: 0 });
|
||||||
|
expect(determineAvatarPosition(1, 4))
|
||||||
.toEqual({ hidden: false, position: 1 });
|
.toEqual({ hidden: false, position: 1 });
|
||||||
expect(determineAvatarPosition(1, 2, 4))
|
|
||||||
.toEqual({ hidden: false, position: 0 });
|
|
||||||
|
|
||||||
expect(determineAvatarPosition(0, 3, 4))
|
expect(determineAvatarPosition(0, 4))
|
||||||
|
.toEqual({ hidden: false, position: 0 });
|
||||||
|
expect(determineAvatarPosition(1, 4))
|
||||||
|
.toEqual({ hidden: false, position: 1 });
|
||||||
|
expect(determineAvatarPosition(2, 4))
|
||||||
.toEqual({ hidden: false, position: 2 });
|
.toEqual({ hidden: false, position: 2 });
|
||||||
expect(determineAvatarPosition(1, 3, 4))
|
|
||||||
.toEqual({ hidden: false, position: 1 });
|
|
||||||
expect(determineAvatarPosition(2, 3, 4))
|
|
||||||
.toEqual({ hidden: false, position: 0 });
|
|
||||||
|
|
||||||
expect(determineAvatarPosition(0, 4, 4))
|
expect(determineAvatarPosition(0, 4))
|
||||||
|
.toEqual({ hidden: false, position: 0 });
|
||||||
|
expect(determineAvatarPosition(1, 4))
|
||||||
|
.toEqual({ hidden: false, position: 1 });
|
||||||
|
expect(determineAvatarPosition(2, 4))
|
||||||
|
.toEqual({ hidden: false, position: 2 });
|
||||||
|
expect(determineAvatarPosition(3, 4))
|
||||||
.toEqual({ hidden: false, position: 3 });
|
.toEqual({ hidden: false, position: 3 });
|
||||||
expect(determineAvatarPosition(1, 4, 4))
|
|
||||||
.toEqual({ hidden: false, position: 2 });
|
|
||||||
expect(determineAvatarPosition(2, 4, 4))
|
|
||||||
.toEqual({ hidden: false, position: 1 });
|
|
||||||
expect(determineAvatarPosition(3, 4, 4))
|
|
||||||
.toEqual({ hidden: false, position: 0 });
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("to handle the overflowing case correctly", () => {
|
it("to handle the overflowing case correctly", () => {
|
||||||
expect(determineAvatarPosition(0, 6, 4))
|
expect(determineAvatarPosition(0, 4))
|
||||||
.toEqual({ hidden: false, position: 3 });
|
|
||||||
expect(determineAvatarPosition(1, 6, 4))
|
|
||||||
.toEqual({ hidden: false, position: 2 });
|
|
||||||
expect(determineAvatarPosition(2, 6, 4))
|
|
||||||
.toEqual({ hidden: false, position: 1 });
|
|
||||||
expect(determineAvatarPosition(3, 6, 4))
|
|
||||||
.toEqual({ hidden: false, position: 0 });
|
.toEqual({ hidden: false, position: 0 });
|
||||||
expect(determineAvatarPosition(4, 6, 4))
|
expect(determineAvatarPosition(1, 4))
|
||||||
|
.toEqual({ hidden: false, position: 1 });
|
||||||
|
expect(determineAvatarPosition(2, 4))
|
||||||
|
.toEqual({ hidden: false, position: 2 });
|
||||||
|
expect(determineAvatarPosition(3, 4))
|
||||||
|
.toEqual({ hidden: false, position: 3 });
|
||||||
|
expect(determineAvatarPosition(4, 4))
|
||||||
.toEqual({ hidden: true, position: 0 });
|
.toEqual({ hidden: true, position: 0 });
|
||||||
expect(determineAvatarPosition(5, 6, 4))
|
expect(determineAvatarPosition(5, 4))
|
||||||
.toEqual({ hidden: true, position: 0 });
|
.toEqual({ hidden: true, position: 0 });
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue