@@ -2,29 +2,26 @@ import { AppTask, type Constructable, CustomElement, IAurelia, resolve, singleto
2
2
3
3
import type { AureliaViewOutput , ViewModelBindableInputData } from '../models/index' ;
4
4
5
- ( IAurelia as any ) . test = 'import 1' ;
6
-
7
5
@singleton ( )
8
6
export class AureliaUtilService {
9
7
constructor ( private readonly au : IAurelia = resolve ( IAurelia ) ) { }
10
8
11
9
async createAureliaViewModelAddToSlot ( viewModel : Constructable , bindableData ?: ViewModelBindableInputData , targetElement ?: HTMLElement ) : Promise < AureliaViewOutput | null > {
12
- if ( ! targetElement ) {
13
- return null ;
10
+ if ( targetElement ) {
11
+ const def = CustomElement . getDefinition ( viewModel ) ;
12
+ const addonBindable = bindableData ?. addon ? 'addon.bind="bindableData.addon"' : '' ;
13
+ const gridBindable = bindableData ?. grid ? 'grid.bind="bindableData.grid"' : '' ;
14
+ const dataViewBindable = bindableData ?. dataView ? 'data-view.bind="bindableData.dataView"' : '' ;
15
+ const parentBindable = bindableData ?. parent ? 'parent.bind="bindableData.parent"' : '' ;
16
+
17
+ targetElement . innerHTML = `<${ def . name } model.bind="bindableData.model" ${ addonBindable } ${ gridBindable } ${ dataViewBindable } ${ parentBindable } ></${ def . name } >` . trim ( ) ;
18
+
19
+ return await this . au . enhance ( {
20
+ host : targetElement ,
21
+ component : { bindableData } ,
22
+ container : this . au . container . createChild ( ) . register ( AppTask . creating ( ( ) => { } ) )
23
+ } ) ;
14
24
}
15
-
16
- const def = CustomElement . getDefinition ( viewModel ) ;
17
- const addonBindable = bindableData ?. addon ? 'addon.bind="bindableData.addon"' : '' ;
18
- const gridBindable = bindableData ?. grid ? 'grid.bind="bindableData.grid"' : '' ;
19
- const dataViewBindable = bindableData ?. dataView ? 'data-view.bind="bindableData.dataView"' : '' ;
20
- const parentBindable = bindableData ?. parent ? 'parent.bind="bindableData.parent"' : '' ;
21
-
22
- targetElement . innerHTML = `<${ def . name } model.bind="bindableData.model" ${ addonBindable } ${ gridBindable } ${ dataViewBindable } ${ parentBindable } ></${ def . name } >` . trim ( ) ;
23
-
24
- return await this . au . enhance ( {
25
- host : targetElement ,
26
- component : { bindableData } ,
27
- container : this . au . container . createChild ( ) . register ( AppTask . creating ( ( ) => { } ) )
28
- } ) ;
25
+ return null ;
29
26
}
30
27
}
0 commit comments