From 02274caa49cb71a5f1922bed4e0cb4576ba8490c Mon Sep 17 00:00:00 2001 From: blam Date: Wed, 22 Dec 2021 01:25:33 +0100 Subject: [PATCH] chore: moving out the host field into another component Signed-off-by: blam Signed-off-by: blam --- .../components/fields/RepoUrlPicker/host.tsx | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 plugins/scaffolder/src/components/fields/RepoUrlPicker/host.tsx diff --git a/plugins/scaffolder/src/components/fields/RepoUrlPicker/host.tsx b/plugins/scaffolder/src/components/fields/RepoUrlPicker/host.tsx new file mode 100644 index 0000000000..4d841d8665 --- /dev/null +++ b/plugins/scaffolder/src/components/fields/RepoUrlPicker/host.tsx @@ -0,0 +1,73 @@ +/* + * Copyright 2021 The Backstage Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import React from 'react'; +import { + Progress, + Select, + SelectedItems, + SelectItem, +} from '@backstage/core-components'; +import FormControl from '@material-ui/core/FormControl'; +import FormHelperText from '@material-ui/core/FormHelperText'; +import Input from '@material-ui/core/Input'; +import InputLabel from '@material-ui/core/InputLabel'; + +export const RepoUrlPickerHost = ({ + host, + organization, + hosts, + onChange, + rawErrors, +}) => { + return ( + <> + 0 && !host} + > + + The name of the organization + + )} + + ); +};