core/wizard/wizard.service.ts
Properties |
|
Methods |
|
Accessors |
constructor(rootInjector: Injector, router: Router, plugins: PluginsResolveService)
|
||||||||||||
Parameters :
|
add | ||||||||
add(entry: WizardEntry)
|
||||||||
Adds a new entry in the wizard.
Parameters :
Returns :
void
|
getEntriesListById | ||||||
getEntriesListById(id: string)
|
||||||
List of wizard entries matching the given id.
Parameters :
Returns :
Observable<WizardEntry[]>
observable with list of wizard entries. |
remove | ||||||||
remove(entry: WizardEntry)
|
||||||||
Removes entry from the wizard.
Parameters :
Returns :
void
|
Protected setupItemsObservable |
setupItemsObservable()
|
Returns :
Observable<WizardEntry[]>
|
refresh |
refresh()
|
Refresh the extension factories
Returns :
void
|
Protected emitNewState |
emitNewState()
|
Emits a new state.
Returns :
void
|
map | ||||||||
map(mappedProperty: (undefined) => void)
|
||||||||
Maps to a property and just returns that property.
Parameters :
Returns :
Observable<any>
|
Readonly bodyTemplate$ |
Type : Subject<literal type>
|
Default value : new Subject()
|
Wizard body subject. It emits body template. |
Readonly footerTemplate$ |
Type : Subject<literal type>
|
Default value : new Subject()
|
Wizard footer subject. It emits footer template. |
Readonly headerTemplate$ |
Type : Subject<literal type>
|
Default value : new Subject()
|
Wizard header subject. It emits header template. |
factories |
Type : ExtensionFactory<T>[]
|
Default value : []
|
Protected injectors |
Type : Injector[]
|
All injectors to search for an extension. |
items$ |
Type : Observable<T[]>
|
Readonly refresh$ |
Type : Observable<void>
|
Readonly state$ |
Default value : new BehaviorSubject<Set<T>>(new Set<T>())
|
state |
getstate()
|
Returns the current state.
Returns :
Set<WizardEntry>
|