-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from Inist-CNRS/feat/description
Update and add a new description
- Loading branch information
Showing
6 changed files
with
80 additions
and
18 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
31 changes: 31 additions & 0 deletions
31
tdm-fe/src/app/components/layout/WebServicesDescription.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,31 @@ | ||
import '~/app/components/layout/scss/WebServicesDescription.scss'; | ||
import Container from '@mui/material/Container'; | ||
|
||
const WebServicesDescription = () => { | ||
return ( | ||
<div id="ws-description"> | ||
<Container className="text"> | ||
<p>Par exemple :</p> | ||
<ul> | ||
<li> | ||
chargez vos données au format CSV : VosData.csv (dans le cas de corpus ISTEX on pourra | ||
utiliser le fichier compressé fourni par ISTEX), | ||
</li> | ||
<li> | ||
choisissez le convertisseur adapté au csv (« Transformation d'un fichier CSV en | ||
fichier ») (Dans le cas de corpus ISTEX on pourra utiliser « Transformation | ||
d'un fichier ISTEX (format tar.gz) en fichier corpus »), | ||
</li> | ||
<li>dans la liste déroulante, sélectionnez le nom de la colonne que vous voulez traiter,</li> | ||
<li>puis sélectionnez le web service que vous voulez exécuter,</li> | ||
<li> | ||
et enfin remplissez votre adresse mail, vous recevrez un message au lancement du service et à la | ||
fin du traitement avec un lien de téléchargement des résultats. | ||
</li> | ||
</ul> | ||
</Container> | ||
</div> | ||
); | ||
}; | ||
|
||
export default WebServicesDescription; |
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
18 changes: 18 additions & 0 deletions
18
tdm-fe/src/app/components/layout/scss/WebServicesDescription.scss
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,18 @@ | ||
@import "../../../scss/colors"; | ||
|
||
#ws-description { | ||
max-width: 1000px; | ||
padding-bottom: 40px; | ||
margin-right: auto; | ||
margin-left: auto; | ||
font-size: .85em; | ||
text-align: justify; | ||
|
||
p { | ||
padding: 0; | ||
|
||
li { | ||
margin-top: 2px; | ||
} | ||
} | ||
} |
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