Skip to content

Commit ab891dd

Browse files
authored
chore: remove unused code & simplify code (#1328)
1 parent 2992544 commit ab891dd

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed

packages/aurelia-slickgrid/src/services/aureliaUtil.service.ts

+15-18
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,26 @@ import { AppTask, type Constructable, CustomElement, IAurelia, resolve, singleto
22

33
import type { AureliaViewOutput, ViewModelBindableInputData } from '../models/index';
44

5-
(IAurelia as any).test = 'import 1';
6-
75
@singleton()
86
export class AureliaUtilService {
97
constructor(private readonly au: IAurelia = resolve(IAurelia)) { }
108

119
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+
});
1424
}
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;
2926
}
3027
}

0 commit comments

Comments
 (0)