ajout de la nouvelle ci 👷
continuous-integration/drone/push Build is failing Details

pull/90/head
Pierre Ferreira 1 year ago
parent 6aad28e3f4
commit d1e47d994e

@ -0,0 +1,32 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
image: node:20 #voir pour changer la version ?
commands:
- cd cryptide_project
- npm install --legacy-peer-deps
- CI=false npm run build
- name: sonar-analyses
image: node:20
commands:
- cd ./cryptide_project
- npm install --legacy-peer-deps
- npm run test
- ls ./test/coverage
- sonar-scanner -Dsonar.projectKey=Learnihon -Dsonar.sources=. -Dsonar.host.url=$${PLUGIN_SONAR_HOST}
-Dsonar.login=$${PLUGIN_SONAR_TOKEN} -Dsonar.javascript.lcov.reportPaths=./test/coverage/lcov.info
-Dsonar.exclusions=**/lcov-report/**
secrets: [ SECRET_SONAR_LOGIN_CRYPTIDE ]
settings:
sonar_host: https://codefirst.iut.uca.fr/sonar/
sonar_token:
from_secret: SECRET_SONAR_LOGIN_CRYPTIDE
when:
event:
- push
- push_request

@ -66,12 +66,32 @@ const MyGraphComponent: React.FC<MyGraphComponentProps> = ({onNodeClick, handleS
}
}
//* fonction qui reinitialise le graphe
const resGraph = () => { //? comment accéder au nework ??
const savedGraphStateString = localStorage.getItem('graphState');
if (savedGraphStateString !== null) {
const savedGraphState = JSON.parse(savedGraphStateString);
//network.setData(savedGraphState);
} else {
// La clé 'graphState' n'existe pas dans le localStorage, prenez une action en conséquence.
console.log("ayoooooo");
}
};
useEffect(() => {
if (personNetwork == null){
return
}
const graph = GraphCreator.CreateGraph(personNetwork)
let n = graph.nodesPerson;
let e = graph.edges;
const graphState = { n, e };
// Sauvegarder l'état dans localStorage
localStorage.setItem('graphState', JSON.stringify(graphState));
const container = document.getElementById('graph-container');
if (!container) {
console.error("Container not found");
@ -269,6 +289,9 @@ const MyGraphComponent: React.FC<MyGraphComponentProps> = ({onNodeClick, handleS
return (
<>
<div id="graph-container"/>
<button onClick={resGraph}>
reinitialisation
</button>
</>
);

Loading…
Cancel
Save