TenantAtlas/apps/platform/.pnpm-store/v10/files/2b/6db069298c071e39a1421c1f09d70395e85d411c3a5cd7b4b7e86bf38514e290a5748ddbabdd1207df080085f86dfbc6e79c2440c2597d0d557a744c350661
ahmido 1fec9c6f9d
Some checks failed
Main Confidence / confidence (push) Failing after 45s
feat: compress governance operator outcomes (#253)
## Summary
- introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries
- apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces
- expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests

## Validation
- `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent`
- focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions)
- `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions)

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #253
2026-04-19 12:30:36 +00:00

61 lines
2.3 KiB
Plaintext

import { Falsy, MonoTypeOperatorFunction, OperatorFunction } from '../types';
import { operate } from '../util/lift';
import { createOperatorSubscriber } from './OperatorSubscriber';
export function skipWhile<T>(predicate: BooleanConstructor): OperatorFunction<T, Extract<T, Falsy> extends never ? never : T>;
export function skipWhile<T>(predicate: (value: T, index: number) => true): OperatorFunction<T, never>;
export function skipWhile<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;
/**
* Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds
* true, but emits all further source items as soon as the condition becomes false.
*
* ![](skipWhile.png)
*
* Skips all the notifications with a truthy predicate. It will not skip the notifications when the predicate is falsy.
* It can also be skipped using index. Once the predicate is true, it will not be called again.
*
* ## Example
*
* Skip some super heroes
*
* ```ts
* import { from, skipWhile } from 'rxjs';
*
* const source = from(['Green Arrow', 'SuperMan', 'Flash', 'SuperGirl', 'Black Canary'])
* // Skip the heroes until SuperGirl
* const example = source.pipe(skipWhile(hero => hero !== 'SuperGirl'));
* // output: SuperGirl, Black Canary
* example.subscribe(femaleHero => console.log(femaleHero));
* ```
*
* Skip values from the array until index 5
*
* ```ts
* import { from, skipWhile } from 'rxjs';
*
* const source = from([1, 2, 3, 4, 5, 6, 7, 9, 10]);
* const example = source.pipe(skipWhile((_, i) => i !== 5));
* // output: 6, 7, 9, 10
* example.subscribe(value => console.log(value));
* ```
*
* @see {@link last}
* @see {@link skip}
* @see {@link skipUntil}
* @see {@link skipLast}
*
* @param predicate A function to test each item emitted from the source Observable.
* @return A function that returns an Observable that begins emitting items
* emitted by the source Observable when the specified predicate becomes false.
*/
export function skipWhile<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T> {
return operate((source, subscriber) => {
let taking = false;
let index = 0;
source.subscribe(
createOperatorSubscriber(subscriber, (value) => (taking || (taking = !predicate(value, index++))) && subscriber.next(value))
);
});
}