/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 { getDatabaseDocumentationLinks } from 'src/views/CRUD/hooks'; import { EditHeaderTitle, EditHeaderSubtitle, StyledFormHeader, StyledStickyHeader, } from './styles'; import { DatabaseForm, DatabaseObject } from '../types'; const supersetTextDocs = getDatabaseDocumentationLinks(); export const DOCUMENTATION_LINK = supersetTextDocs ? supersetTextDocs.support : 'https://superset.apache.org/docs/databases/installing-database-drivers'; const irregularDocumentationLinks = { postgresql: 'https://superset.apache.org/docs/databases/postgres', mssql: 'https://superset.apache.org/docs/databases/sql-server', }; const documentationLink = (engine: string | undefined) => { if (!engine) return null; if (supersetTextDocs) { // override doc link for superset_txt yml return supersetTextDocs[engine] || supersetTextDocs.default; } if (!irregularDocumentationLinks[engine]) { return `https://superset.apache.org/docs/databases/${engine}`; } return irregularDocumentationLinks[engine]; }; const ModalHeader = ({ isLoading, isEditMode, useSqlAlchemyForm, hasConnectedDb, db, dbName, dbModel, editNewDb, }: { isLoading: boolean; isEditMode: boolean; useSqlAlchemyForm: boolean; hasConnectedDb: boolean; db: Partial | null; dbName: string; dbModel: DatabaseForm; editNewDb?: boolean; }) => { const isEditHeader = ( {db?.backend} {dbName} ); const useSqlAlchemyFormHeader = (

STEP 2 OF 2

Enter Primary Credentials

Need help? Learn how to connect your database{' '} here .

); const hasConnectedDbHeader = (

STEP 3 OF 3

Your database was successfully connected! Here are some optional settings for your database

Need help? Learn more about{' '} connecting to {dbModel.name}.

); const hasDbHeader = (

STEP 2 OF 3

Enter the required {dbModel.name} credentials

Need help? Learn more about{' '} connecting to {dbModel.name}.

); const noDbHeader = (

STEP 1 OF 3

Select a database to connect

); if (isLoading) return <>; if (isEditMode) { return isEditHeader; } if (useSqlAlchemyForm) { return useSqlAlchemyFormHeader; } if (hasConnectedDb && !editNewDb) { return hasConnectedDbHeader; } if (db || editNewDb) { return hasDbHeader; } return noDbHeader; }; export default ModalHeader;