feat: auto cue re-numbering (#2016)

* feat: update auto cue numbering

* feat: renumber from ui

* refactor: patchEntries is not used

* chore: format

* fix: correct cue at top of group

* fix: handle precision

* refactor dialog

* bump limit for performance time test

* extract type

* add class name to lable

* fix rebase

* refator: extract renumering logic

* chore: comments for getIntegerAndFraction function

* chore: add the for renumber mutation

* fix: fraction match precision

* refactor: small cleanup

* refactor: use more narrow validator

---------

Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
This commit is contained in:
Alex Christoffer Rasmussen
2026-05-03 18:39:00 +02:00
committed by GitHub
parent ba1c3235b3
commit 1a08b39b8b
20 changed files with 554 additions and 144 deletions
@@ -98,7 +98,7 @@ describe('processRundown()', () => {
Object.keys(result?.entries ?? {}).length,
'events',
);
expect(t2 - t1).lessThan(100);
expect(t2 - t1).lessThan(120);
});
it('generates metadata from given rundown', () => {
@@ -851,6 +851,98 @@ describe('rundownMutation.removeAll()', () => {
});
});
describe('rundownMutation.renumber()', () => {
it('sets cues from integer start and increment with no fractional part', () => {
const rundown = makeRundown({
order: ['a', 'b', 'c'],
entries: {
a: makeOntimeEvent({ id: 'a', cue: 'old-a' }),
b: makeOntimeEvent({ id: 'b', cue: 'old-b' }),
c: makeOntimeEvent({ id: 'c', cue: 'old-c' }),
},
});
rundownMutation.renumber(
rundown,
['a', 'b', 'c'],
'Q',
{ integer: 10, faction: 0, precision: 0 },
{ integer: 2, faction: 0, precision: 0 },
);
expect((rundown.entries['a'] as OntimeEvent).cue).toBe('Q10');
expect((rundown.entries['b'] as OntimeEvent).cue).toBe('Q12');
expect((rundown.entries['c'] as OntimeEvent).cue).toBe('Q14');
});
it('pads fractional segment to maxPrecision and steps faction by increment', () => {
const rundown = makeRundown({
order: ['a', 'b', 'c', 'd'],
entries: {
a: makeOntimeEvent({ id: 'a' }),
b: makeOntimeEvent({ id: 'b' }),
c: makeOntimeEvent({ id: 'c' }),
d: makeOntimeEvent({ id: 'd' }),
},
});
rundownMutation.renumber(
rundown,
['a', 'b', 'c', 'd'],
'',
{ integer: 1, faction: 0, precision: 2 },
{ integer: 0, faction: 25, precision: 2 },
);
expect((rundown.entries['a'] as OntimeEvent).cue).toBe('1.00');
expect((rundown.entries['b'] as OntimeEvent).cue).toBe('1.25');
expect((rundown.entries['c'] as OntimeEvent).cue).toBe('1.50');
expect((rundown.entries['d'] as OntimeEvent).cue).toBe('1.75');
});
it('throws when an id is not an event', () => {
const rundown = makeRundown({
order: ['e', 'd'],
entries: {
e: makeOntimeEvent({ id: 'e' }),
d: makeOntimeDelay({ id: 'd' }),
},
});
expect(() =>
rundownMutation.renumber(
rundown,
['e', 'd'],
'X',
{ integer: 1, faction: 0, precision: 0 },
{ integer: 1, faction: 0, precision: 0 },
),
).toThrowError('A given id was not an event');
});
it('handles mixed precision', () => {
const rundown = makeRundown({
order: ['a', 'b', 'c', 'd'],
entries: {
a: makeOntimeEvent({ id: 'a' }),
b: makeOntimeEvent({ id: 'b' }),
c: makeOntimeEvent({ id: 'c' }),
d: makeOntimeEvent({ id: 'd' }),
},
});
const inc = { integer: 0, faction: 5, precision: 1 }; // 0.5
const start = { integer: 1, faction: 5, precision: 2 }; // 1.05
rundownMutation.renumber(rundown, ['a', 'b', 'c', 'd'], 'X', start, inc);
expect((rundown.entries['a'] as OntimeEvent).cue).toBe('X1.05');
expect((rundown.entries['b'] as OntimeEvent).cue).toBe('X1.55');
expect((rundown.entries['c'] as OntimeEvent).cue).toBe('X1.105');
expect((rundown.entries['d'] as OntimeEvent).cue).toBe('X1.155');
});
});
describe('rundownMutation.reorder()', () => {
it('moves an event into a group', () => {
const rundown = makeRundown({
@@ -9,6 +9,7 @@ import {
deleteById,
doesInvalidateMetadata,
duplicateRundown,
getIntegerAndFraction,
hasChanges,
makeDeepClone,
} from '../rundown.utils.js';
@@ -281,3 +282,29 @@ describe('makeDeepClone()', () => {
]);
});
});
describe('getIntegerAndFraction()', () => {
test('integer without fraction', () => {
expect(getIntegerAndFraction('123')).toStrictEqual({ integer: 123, faction: 0, precision: 0 });
});
test('integer and fraction', () => {
expect(getIntegerAndFraction('123.456')).toStrictEqual({ integer: 123, faction: 456, precision: 3 });
});
test('invalid integer', () => {
expect(() => getIntegerAndFraction('abc.456')).toThrowError('input can not be converted to a number');
});
test('indicate precision just with zeros', () => {
expect(getIntegerAndFraction('123.000')).toStrictEqual({ integer: 123, faction: 0, precision: 3 });
});
test('invalid fraction', () => {
expect(() => getIntegerAndFraction('123.abc')).toThrowError('input can not be converted to a number');
});
test('floating separator', () => {
expect(getIntegerAndFraction('123.')).toStrictEqual({ integer: 123, faction: 0, precision: 0 });
});
});