-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3931a3c
commit 9423ada
Showing
51 changed files
with
312 additions
and
281 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
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
2 changes: 1 addition & 1 deletion
2
web-app/client/src/components/DatasetItem/FilePropertiesModal/FilePropertiesModal.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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './TabsLayout'; | ||
export { default } from './TabsLayout'; |
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
52 changes: 26 additions & 26 deletions
52
web-app/client/src/graphql/operations/queries/getDatasetsInfo.ts
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 |
---|---|---|
@@ -1,32 +1,32 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export const GET_DATASETS_INFO = gql` | ||
query getDatasetsInfo($props: DatasetsQueryProps!) { | ||
datasets(props: $props) { | ||
total | ||
data { | ||
fileID | ||
originalFileName | ||
fileFormat { | ||
inputFormat | ||
tidColumnIndex | ||
itemColumnIndex | ||
hasTid | ||
} | ||
fileSize | ||
createdAt | ||
isBuiltIn | ||
hasHeader | ||
delimiter | ||
fileName | ||
supportedPrimitives | ||
rowsCount | ||
countOfColumns | ||
numberOfUses | ||
user { | ||
fullName | ||
} | ||
} | ||
query getDatasetsInfo($props: DatasetsQueryProps!) { | ||
datasets(props: $props) { | ||
total | ||
data { | ||
fileID | ||
originalFileName | ||
fileFormat { | ||
inputFormat | ||
tidColumnIndex | ||
itemColumnIndex | ||
hasTid | ||
} | ||
fileSize | ||
createdAt | ||
isBuiltIn | ||
hasHeader | ||
delimiter | ||
fileName | ||
supportedPrimitives | ||
rowsCount | ||
countOfColumns | ||
numberOfUses | ||
user { | ||
fullName | ||
} | ||
} | ||
} | ||
} | ||
`; |
60 changes: 30 additions & 30 deletions
60
web-app/client/src/graphql/operations/queries/getTasksInfo.ts
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 |
---|---|---|
@@ -1,38 +1,38 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export const GET_TASKS_INFO = gql` | ||
query getTasksInfo($props: TasksQueryProps!) { | ||
tasksInfo(props: $props) { | ||
total | ||
data { | ||
taskID | ||
state { | ||
... on TaskState { | ||
user { | ||
fullName | ||
} | ||
processStatus | ||
phaseName | ||
currentPhase | ||
progress | ||
maxPhase | ||
isExecuted | ||
elapsedTime | ||
createdAt | ||
} | ||
} | ||
query getTasksInfo($props: TasksQueryProps!) { | ||
tasksInfo(props: $props) { | ||
total | ||
data { | ||
taskID | ||
state { | ||
... on TaskState { | ||
user { | ||
fullName | ||
} | ||
processStatus | ||
phaseName | ||
currentPhase | ||
progress | ||
maxPhase | ||
isExecuted | ||
elapsedTime | ||
createdAt | ||
} | ||
} | ||
data { | ||
baseConfig { | ||
algorithmName | ||
type | ||
} | ||
} | ||
data { | ||
baseConfig { | ||
algorithmName | ||
type | ||
} | ||
} | ||
dataset { | ||
originalFileName | ||
} | ||
} | ||
dataset { | ||
originalFileName | ||
} | ||
} | ||
} | ||
} | ||
`; |
26 changes: 13 additions & 13 deletions
26
web-app/client/src/graphql/operations/queries/getUsersInfo.ts
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export const GET_USERS_INFO = gql` | ||
query getUsersInfo($props: UsersQueryProps!) { | ||
users(props: $props) { | ||
total | ||
data { | ||
userID | ||
createdAt | ||
fullName | ||
country | ||
companyOrAffiliation | ||
occupation | ||
} | ||
} | ||
query getUsersInfo($props: UsersQueryProps!) { | ||
users(props: $props) { | ||
total | ||
data { | ||
userID | ||
createdAt | ||
fullName | ||
country | ||
companyOrAffiliation | ||
occupation | ||
} | ||
} | ||
} | ||
`; |
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
Oops, something went wrong.