You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react-tools/react2angular.tsx

82 lines
2.0 KiB

import ReactDOM from 'react-dom';
import { IComponentOptions, IController } from 'angular';
import { StrictMode } from 'react';
import _ from 'lodash';
function toProps(
propNames: string[],
controller: IController,
$q: ng.IQService
) {
return Object.fromEntries(
propNames.map((key) => {
const prop = controller[key];
if (typeof prop !== 'function') {
return [key, prop];
}
return [
key,
(...args: unknown[]) =>
$q((resolve) => resolve(controller[key](...args))),
];
})
);
}
type PropNames<T> = Exclude<keyof T, number | symbol>;
/**
* react2angular is used to bind a React component to an AngularJS component
* it used in an AngularJS module definition:
*
* `.component('componentName', react2angular(ComponentName, ['prop1', 'prop2']))`
*
* if the second parameter has any ts errors check that the component has the correct props
*/
export function react2angular<T, U extends PropNames<T>[]>(
Component: React.ComponentType<T>,
propNames: U & ([PropNames<T>] extends [U[number]] ? unknown : PropNames<T>)
): IComponentOptions & { name: string } {
const bindings = Object.fromEntries(propNames.map((key) => [key, '<']));
return {
bindings,
controller: Controller,
name: _.camelCase(Component.displayName || Component.name),
};
/* @ngInject */
function Controller(
this: IController,
$element: HTMLElement[],
$q: ng.IQService
) {
let isDestroyed = false;
const el = $element[0];
this.$onChanges = () => {
if (!isDestroyed) {
const props = toProps(propNames, this, $q);
ReactDOM.render(
<StrictMode>
{/* eslint-disable-next-line react/jsx-props-no-spreading */}
<Component {...(props as T)} />
</StrictMode>,
el
);
}
};
this.$onDestroy = () => {
if (!isDestroyed) {
isDestroyed = true;
ReactDOM.unmountComponentAtNode(el);
}
};
}
}
export const r2a = react2angular;