-
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.
[DOP-17517] add HDFS CRUD Connection
- Loading branch information
1 parent
483ce1f
commit f981349
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
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,25 @@ | ||
import { TextField } from "react-admin"; | ||
|
||
const DBFileSourceParamsShow = () => { | ||
return ( | ||
<> | ||
<TextField | ||
source={"source_params.directory_path"} | ||
label={"Directory path"} | ||
name={"source_params.directory_path"} | ||
/> | ||
<TextField | ||
source={"source_params.file_format"} | ||
label={"File format"} | ||
name={"source_params.file_format"} | ||
/> | ||
<TextField | ||
source={"source_params.df_schema"} | ||
label={"DF Schema"} | ||
name={"source_params.df_schema"} | ||
/> | ||
</> | ||
); | ||
}; | ||
|
||
export default DBFileSourceParamsShow; |
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,25 @@ | ||
import { TextField } from "react-admin"; | ||
|
||
const DBFileTargetParamsShow = () => { | ||
return ( | ||
<> | ||
<TextField | ||
source={"target_params.directory_path"} | ||
label={"Directory path"} | ||
name={"target_params.directory_path"} | ||
/> | ||
<TextField | ||
source={"target_params.file_format"} | ||
label={"File format"} | ||
name={"target_params.file_format"} | ||
/> | ||
<TextField | ||
source={"target_params.df_schema"} | ||
label={"DF Schema"} | ||
name={"target_params.df_schema"} | ||
/> | ||
</> | ||
); | ||
}; | ||
|
||
export default DBFileTargetParamsShow; |
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