2021-11-09 01:37:16 -06:00
|
|
|
import coreModule from 'app/angular/core_module';
|
2019-02-05 10:04:48 -06:00
|
|
|
import { provideTheme } from 'app/core/utils/ConfigProvider';
|
2017-10-17 03:51:42 -05:00
|
|
|
|
2017-12-21 01:39:31 -06:00
|
|
|
export function react2AngularDirective(name: string, component: any, options: any) {
|
2017-12-19 09:06:54 -06:00
|
|
|
coreModule.directive(name, [
|
2017-12-20 05:33:33 -06:00
|
|
|
'reactDirective',
|
2021-01-20 00:59:48 -06:00
|
|
|
(reactDirective) => {
|
2019-02-05 10:04:48 -06:00
|
|
|
return reactDirective(provideTheme(component), options);
|
2017-12-20 05:33:33 -06:00
|
|
|
},
|
2017-12-19 09:06:54 -06:00
|
|
|
]);
|
2017-10-17 03:51:42 -05:00
|
|
|
}
|