mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Introduce an agnostic way to start application is the Feature Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce directory for application-packages Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Remove non agnostic timeslots from agnostic application Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce empty package for electron main specific stuff for Application Feature Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce electron-main specific timeslots Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Update injectable version Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Update README Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Tweak export names to make them easier to import Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Make starting of application synchronous for Electron main Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Tweak versions in package jsons Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Consolidate name of feature file Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> --------- Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
40 lines
905 B
Markdown
40 lines
905 B
Markdown
# @k8slens/application
|
|
|
|
This package contains stuff related to creating Lens-applications.
|
|
|
|
# Usage
|
|
|
|
```bash
|
|
$ npm install @k8slens/application-for-electron-main
|
|
```
|
|
|
|
```typescript
|
|
import { applicationFeature, startApplicationInjectionToken } from "@k8slens/application";
|
|
import { registerFeature } from "@k8slens/feature-core";
|
|
import { createContainer } from "@ogre-tools/injectable";
|
|
|
|
const di = createContainer("some-container");
|
|
|
|
registerFeature(di, applicationFeature);
|
|
|
|
const startApplication = di.inject(startApplicationInjectionToken);
|
|
|
|
startApplication();
|
|
```
|
|
|
|
|
|
## Features
|
|
|
|
#### Start application
|
|
`startApplicationInjectionToken`
|
|
|
|
Starts the application and calls timeslots in specified order. Check for timeslots for more info.
|
|
|
|
## Extendability
|
|
|
|
#### Timeslots
|
|
|
|
1. `beforeApplicationIsLoadingInjectionToken`
|
|
2. `onLoadOfApplicationInjectionToken`
|
|
3. `afterApplicationIsLoadedInjectionToken`
|