forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: DBC UI Snowflake Form (apache#16856)
* update snowflake spec for dyanmic form * feat(snowflake): Snowflake dynamic form (apache#16861) * snowflake frontend * snowflake frontend * refactor(DB Connections): Build Snowflake Dynamic Form (apache#16875) * moved all non-BasicParameters into own field * refactored DB Connection Form made ValidatedInput * quick fix * fixed ValidatedInputField (apache#16934) * add logic to check for required fields (apache#17022) * fix * fix linting * remove host * Update EncryptedField.tsx Co-authored-by: AAfghahi <[email protected]>
- Loading branch information
1 parent
1ac5a4a
commit 488da32
Showing
8 changed files
with
863 additions
and
602 deletions.
There are no files selected for viewing
599 changes: 0 additions & 599 deletions
599
superset-frontend/src/views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm.tsx
This file was deleted.
Oops, something went wrong.
207 changes: 207 additions & 0 deletions
207
...nd/src/views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,207 @@ | ||
/** | ||
* 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 { SupersetTheme, t } from '@superset-ui/core'; | ||
import { Switch } from 'src/common/components'; | ||
import InfoTooltip from 'src/components/InfoTooltip'; | ||
import ValidatedInput from 'src/components/Form/LabeledErrorBoundInput'; | ||
import { FieldPropTypes } from '.'; | ||
import { toggleStyle, infoTooltip } from '../styles'; | ||
|
||
export const hostField = ({ | ||
required, | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
}: FieldPropTypes) => ( | ||
<ValidatedInput | ||
id="host" | ||
name="host" | ||
value={db?.parameters?.host} | ||
required={required} | ||
hasTooltip | ||
tooltipText={t( | ||
'This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).', | ||
)} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.host} | ||
placeholder="e.g. 127.0.0.1" | ||
className="form-group-w-50" | ||
label="Host" | ||
onChange={changeMethods.onParametersChange} | ||
/> | ||
); | ||
export const portField = ({ | ||
required, | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
}: FieldPropTypes) => ( | ||
<> | ||
<ValidatedInput | ||
id="port" | ||
name="port" | ||
type="number" | ||
required={required} | ||
value={db?.parameters?.port as number} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.port} | ||
placeholder="e.g. 5432" | ||
className="form-group-w-50" | ||
label="Port" | ||
onChange={changeMethods.onParametersChange} | ||
/> | ||
</> | ||
); | ||
export const databaseField = ({ | ||
required, | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
}: FieldPropTypes) => ( | ||
<ValidatedInput | ||
id="database" | ||
name="database" | ||
required={required} | ||
value={db?.parameters?.database} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.database} | ||
placeholder="e.g. world_population" | ||
label="Database name" | ||
onChange={changeMethods.onParametersChange} | ||
helpText={t('Copy the name of the database you are trying to connect to.')} | ||
/> | ||
); | ||
export const usernameField = ({ | ||
required, | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
}: FieldPropTypes) => ( | ||
<ValidatedInput | ||
id="username" | ||
name="username" | ||
required={required} | ||
value={db?.parameters?.username} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.username} | ||
placeholder="e.g. Analytics" | ||
label="Username" | ||
onChange={changeMethods.onParametersChange} | ||
/> | ||
); | ||
export const passwordField = ({ | ||
required, | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
isEditMode, | ||
}: FieldPropTypes) => ( | ||
<ValidatedInput | ||
id="password" | ||
name="password" | ||
required={required} | ||
type={isEditMode && 'password'} | ||
value={db?.parameters?.password} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.password} | ||
placeholder="e.g. ********" | ||
label="Password" | ||
onChange={changeMethods.onParametersChange} | ||
/> | ||
); | ||
export const displayField = ({ | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
}: FieldPropTypes) => ( | ||
<> | ||
<ValidatedInput | ||
id="database_name" | ||
name="database_name" | ||
required | ||
value={db?.database_name} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.database_name} | ||
placeholder="" | ||
label={t('Display Name')} | ||
onChange={changeMethods.onChange} | ||
helpText={t( | ||
'Pick a nickname for this database to display as in Superset.', | ||
)} | ||
/> | ||
</> | ||
); | ||
|
||
export const queryField = ({ | ||
required, | ||
changeMethods, | ||
getValidation, | ||
validationErrors, | ||
db, | ||
}: FieldPropTypes) => ( | ||
<ValidatedInput | ||
id="query_input" | ||
name="query_input" | ||
required={required} | ||
value={db?.query_input || ''} | ||
validationMethods={{ onBlur: getValidation }} | ||
errorMessage={validationErrors?.query} | ||
placeholder="e.g. param1=value1¶m2=value2" | ||
label="Additional Parameters" | ||
onChange={changeMethods.onQueryChange} | ||
helpText={t('Add additional custom parameters')} | ||
/> | ||
); | ||
|
||
export const forceSSLField = ({ | ||
isEditMode, | ||
changeMethods, | ||
db, | ||
sslForced, | ||
}: FieldPropTypes) => ( | ||
<div css={(theme: SupersetTheme) => infoTooltip(theme)}> | ||
<Switch | ||
disabled={sslForced && !isEditMode} | ||
checked={db?.parameters?.encryption || sslForced} | ||
onChange={changed => { | ||
changeMethods.onParametersChange({ | ||
target: { | ||
type: 'toggle', | ||
name: 'encryption', | ||
checked: true, | ||
value: changed, | ||
}, | ||
}); | ||
}} | ||
/> | ||
<span css={toggleStyle}>SSL</span> | ||
<InfoTooltip | ||
tooltip={t('SSL Mode "require" will be used.')} | ||
placement="right" | ||
viewBox="0 -5 24 24" | ||
/> | ||
</div> | ||
); |
Oops, something went wrong.