mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
78 lines
2.6 KiB
TypeScript
78 lines
2.6 KiB
TypeScript
import angular from 'angular';
|
|
|
|
import { r2a } from '@/react-tools/react2angular';
|
|
import { CustomTemplatesVariablesDefinitionField } from '@/react/portainer/custom-templates/components/CustomTemplatesVariablesDefinitionField';
|
|
import { CustomTemplatesVariablesField } from '@/react/portainer/custom-templates/components/CustomTemplatesVariablesField';
|
|
import { withControlledInput } from '@/react-tools/withControlledInput';
|
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
|
import { withUIRouter } from '@/react-tools/withUIRouter';
|
|
import {
|
|
CommonFields,
|
|
validation as commonFieldsValidation,
|
|
} from '@/react/portainer/custom-templates/components/CommonFields';
|
|
import { PlatformField } from '@/react/portainer/custom-templates/components/PlatformSelector';
|
|
import { TemplateTypeSelector } from '@/react/portainer/custom-templates/components/TemplateTypeSelector';
|
|
import { withFormValidation } from '@/react-tools/withFormValidation';
|
|
import { AppTemplatesList } from '@/react/portainer/templates/app-templates/AppTemplatesList';
|
|
import { CustomTemplatesList } from '@/react/portainer/templates/custom-templates/ListView/CustomTemplatesList';
|
|
|
|
import { VariablesFieldAngular } from './variables-field';
|
|
|
|
export const ngModule = angular
|
|
.module('portainer.app.react.components.custom-templates', [])
|
|
.component(
|
|
'customTemplatesVariablesFieldReact',
|
|
r2a(withControlledInput(CustomTemplatesVariablesField), [
|
|
'value',
|
|
'onChange',
|
|
'definitions',
|
|
])
|
|
)
|
|
.component('customTemplatesVariablesField', VariablesFieldAngular)
|
|
.component(
|
|
'customTemplatesVariablesDefinitionField',
|
|
r2a(withControlledInput(CustomTemplatesVariablesDefinitionField), [
|
|
'onChange',
|
|
'value',
|
|
'errors',
|
|
'isVariablesNamesFromParent',
|
|
])
|
|
)
|
|
.component(
|
|
'appTemplatesList',
|
|
r2a(withUIRouter(withCurrentUser(AppTemplatesList)), [
|
|
'onSelect',
|
|
'templates',
|
|
'selectedId',
|
|
'disabledTypes',
|
|
'fixedCategories',
|
|
'hideDuplicate',
|
|
])
|
|
)
|
|
.component(
|
|
'customTemplatesList',
|
|
r2a(withUIRouter(withCurrentUser(CustomTemplatesList)), [
|
|
'onDelete',
|
|
'onSelect',
|
|
'templates',
|
|
'selectedId',
|
|
])
|
|
)
|
|
.component(
|
|
'customTemplatesPlatformSelector',
|
|
r2a(PlatformField, ['onChange', 'value'])
|
|
)
|
|
.component(
|
|
'customTemplatesTypeSelector',
|
|
r2a(TemplateTypeSelector, ['onChange', 'value'])
|
|
);
|
|
|
|
withFormValidation(
|
|
ngModule,
|
|
withControlledInput(CommonFields, { values: 'onChange' }),
|
|
'customTemplatesCommonFields',
|
|
[],
|
|
commonFieldsValidation
|
|
);
|
|
|
|
export const customTemplatesModule = ngModule.name;
|