Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
142
Issues
142
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-gargantext
Commits
349f7110
Commit
349f7110
authored
Jan 15, 2021
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bootstrap v4] styling for file upload
parent
8b43996a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
21 deletions
+30
-21
Upload.purs
...Gargantext/Components/Forest/Tree/Node/Action/Upload.purs
+30
-21
No files found.
src/Gargantext/Components/Forest/Tree/Node/Action/Upload.purs
View file @
349f7110
...
@@ -71,33 +71,42 @@ type UploadFile =
...
@@ -71,33 +71,42 @@ type UploadFile =
uploadFileView :: Record Props -> R.Element
uploadFileView :: Record Props -> R.Element
uploadFileView props = R.createElement uploadFileViewCpt props []
uploadFileView props = R.createElement uploadFileViewCpt props []
uploadFileViewCpt :: R.Component Props
uploadFileViewCpt = R.hooksComponentWithModule thisModule "uploadFileView" cpt
where
where
uploadFileViewCpt :: R.Component Props
uploadFileViewCpt = R.hooksComponentWithModule thisModule "uploadFileView" cpt
cpt {dispatch, id, nodeType} _ = do
cpt {dispatch, id, nodeType} _ = do
mFile :: R.State (Maybe UploadFile) <- R.useState' Nothing
mFile :: R.State (Maybe UploadFile) <- R.useState' Nothing
fileType@(_ /\ setFileType) <- R.useState' CSV
fileType@(_ /\ setFileType) <- R.useState' CSV
lang@( _chosenLang /\ setLang) <- R.useState' EN
lang@( _chosenLang /\ setLang) <- R.useState' EN
let bodies = [ H.div { className:"col-md-6 flex-space-around"}
let bodies =
[ H.input { type: "file"
[ R2.row
, placeholder: "Choose file"
[ H.div { className:"col-12 flex-space-around"}
, on: {change: onChangeContents mFile}
[ H.div { className: "form-group" }
}
[ H.input { type: "file"
]
, className: "form-control"
, H.div {className:"col-md-3 flex-space-around"}
, placeholder: "Choose file"
[ formChoiceSafe [ CSV
, on: {change: onChangeContents mFile}
, CSV_HAL
}
, WOS
]
, PresseRIS
]
, Arbitrary
]
] CSV setFileType
, R2.row
]
[ H.div {className:"col-6 flex-space-around"}
[ formChoiceSafe [ CSV
, H.div {className:"col-md-3 flex-space-around"}
, CSV_HAL
[ formChoiceSafe [EN, FR, No_extraction, Universal] EN setLang ]
, WOS
]
, PresseRIS
, Arbitrary
] CSV setFileType
]
]
, R2.row
[ H.div {className:"col-6 flex-space-around"}
[ formChoiceSafe [EN, FR, No_extraction, Universal] EN setLang ]
]
]
let footer = H.div {} [ uploadButton { dispatch
let footer = H.div {} [ uploadButton { dispatch
, fileType
, fileType
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment