This repository was archived by the owner on Oct 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +15
-13
lines changed
Expand file tree Collapse file tree 6 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ export * from './agile';
55export * from './utils' ;
66export * from './logCodeManager' ;
77export * from './integrations' ;
8- export * from './storages' ;
98export * from './runtime' ;
9+ export * from './storages' ;
1010export * from './state' ;
1111export * from './collection' ;
1212export * from './computed' ;
Original file line number Diff line number Diff line change 1+ export * from './subscription' ;
12export * from './runtime' ;
23export * from './observer' ;
34export * from './runtime.job' ;
4- export * from './subscription/container/SubscriptionContainer' ;
5- export * from './subscription/container/CallbackSubscriptionContainer' ;
6- export * from './subscription/container/ComponentSubscriptionContainer' ;
7- export * from './subscription/sub.controller' ;
Original file line number Diff line number Diff line change 11import { defineConfig , generateId } from '@agile-ts/utils' ;
22import { LogCodeManager } from '../logCodeManager' ;
33import { Agile } from '../agile' ;
4- import { SubscriptionContainer } from './subscription/container/SubscriptionContainer ' ;
4+ import { SubscriptionContainer } from './subscription' ;
55import { CreateRuntimeJobConfigInterface , RuntimeJob } from './runtime.job' ;
66import { IngestConfigInterface } from './runtime' ;
77import { StateKey } from '../state' ;
Original file line number Diff line number Diff line change 11import { defineConfig } from '@agile-ts/utils' ;
2- import { SubscriptionContainer } from './subscription/container/SubscriptionContainer ' ;
2+ import { SubscriptionContainer } from './subscription' ;
33import { Observer } from './observer' ;
44
55export class RuntimeJob < ObserverType extends Observer = Observer > {
Original file line number Diff line number Diff line change 11import { defineConfig , notEqual } from '@agile-ts/utils' ;
22import { LogCodeManager } from '../logCodeManager' ;
33import { Agile } from '../agile' ;
4+ import {
5+ SubscriptionContainer ,
6+ CallbackSubscriptionContainer ,
7+ ComponentSubscriptionContainer ,
8+ } from './subscription' ;
49import { RuntimeJob } from './runtime.job' ;
5- import { SubscriptionContainer } from './subscription/container/SubscriptionContainer' ;
6- import { CallbackSubscriptionContainer } from './subscription/container/CallbackSubscriptionContainer' ;
7- import { ComponentSubscriptionContainer } from './subscription/container/ComponentSubscriptionContainer' ;
810
911export class Runtime {
1012 // Agile Instance the Runtime belongs to
@@ -157,9 +159,8 @@ export class Runtime {
157159 return false ;
158160
159161 // Extract the Subscription Container to be re-rendered from the Jobs
160- const subscriptionContainerToUpdate = this . extractToUpdateSubscriptionContainer (
161- jobsToRerender
162- ) ;
162+ const subscriptionContainerToUpdate =
163+ this . extractToUpdateSubscriptionContainer ( jobsToRerender ) ;
163164 if ( subscriptionContainerToUpdate . length <= 0 ) return false ;
164165
165166 // Update Subscription Container (trigger re-render on the UI-Component they represent)
Original file line number Diff line number Diff line change 1+ export * from './container/SubscriptionContainer' ;
2+ export * from './container/CallbackSubscriptionContainer' ;
3+ export * from './container/ComponentSubscriptionContainer' ;
4+ export * from './sub.controller' ;
You can’t perform that action at this time.
0 commit comments