123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * 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 { SqlTypes } from 'app/globalConstants'
- import { SourceProperty } from './components/types'
- export { SourceResetConnectionProperties } from './components/types'
- export type SourceType = 'csv' | 'jdbc'
- export interface ISourceSimple {
- id: number
- name: string
- }
- export interface ISourceBase extends ISourceSimple {
- type: SourceType
- description: string
- projectId: number
- }
- export interface ISourceRaw extends ISourceBase {
- config: string
- }
- export interface ISource extends ISourceBase {
- config: {
- username: string
- password: string
- url: string
- properties: SourceProperty[]
- ext?: boolean
- version?: string
- }
- }
- export interface ISourceFormValues extends ISourceBase {
- datasourceInfo: string[]
- config: {
- username: string
- password: string
- url: string
- properties: SourceProperty[]
- }
- }
- export type IDatabase = string
- export interface ITable {
- name: string
- type: 'TABLE' | 'VIEW'
- }
- export interface IColumn {
- name: string
- type: SqlTypes
- }
- export interface ISourceDatabases {
- databases: IDatabase[]
- sourceId: number
- }
- export interface IMapSourceDatabases {
- [sourceId: number]: IDatabase[]
- }
- export interface IDatabaseTables {
- tables: ITable[]
- dbName: IDatabase
- sourceId: number
- }
- export interface IMapDatabaseTables {
- [mapKey: string]: IDatabaseTables
- }
- export interface ITableColumns {
- columns: IColumn[]
- primaryKeys: string[]
- tableName: string
- sourceId: number
- dbName: string
- }
- export interface IMapTableColumns {
- [mapKey: string]: ITableColumns
- }
- export interface ISchema {
- mapDatabases: IMapSourceDatabases
- mapTables: IMapDatabaseTables
- mapColumns: IMapTableColumns
- }
- export interface ICSVMetaInfo {
- sourceId: number
- tableName: string
- mode: number
- primaryKeys: string
- indexKeys: string
- file: File
- }
- export interface ISourceState {
- sources: ISourceBase[]
- listLoading: boolean
- formLoading: boolean
- testLoading: boolean
- resetLoading: boolean
- datasourcesInfo: IDatasourceInfo[]
- }
- export interface IDatasourceInfo {
- name: string
- prefix: string
- versions: string[]
- }
|