From 76a7a52c32f9eaa9bc67d18e2cfe4f706f5b28ec Mon Sep 17 00:00:00 2001 From: lucas-science Date: Sat, 17 Apr 2021 17:43:19 +0200 Subject: [PATCH] modif proxy --- src/application2.jsx | 4 ++-- src/barre-amis-gauche.jsx | 2 +- src/barre-gauche.jsx | 2 +- src/components/chat.jsx | 6 +++--- src/components/friend_nom.jsx | 4 ++-- "src/components/param\303\250tre.jsx" | 2 +- src/components/statistique.jsx | 4 ++-- src/friends-liste.jsx | 4 ++-- src/login.jsx | 2 +- src/signup.jsx | 2 +- src/withAuth.jsx | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/application2.jsx b/src/application2.jsx index 29cd2c5..25ee413 100644 --- a/src/application2.jsx +++ b/src/application2.jsx @@ -36,7 +36,7 @@ export default class Application2 extends Component { event.preventDefault(); console.log("state envois demande amis : ",this.state) // requête POST - fetch('http://localhost:4000/app/newfriend', { + fetch('https://ichatt.herokuapp.com/app/newfriend', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', @@ -60,7 +60,7 @@ export default class Application2 extends Component { }) } componentDidMount(){ - fetch('http://localhost:4000/app/friendlist', { + fetch('https://ichatt.herokuapp.com/app/friendlist', { method: 'GET', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/barre-amis-gauche.jsx b/src/barre-amis-gauche.jsx index dbc3990..b11c928 100644 --- a/src/barre-amis-gauche.jsx +++ b/src/barre-amis-gauche.jsx @@ -17,7 +17,7 @@ export default class barregaucheamis extends Component { componentDidMount(){ - fetch('http://localhost:4000/app/friendlist', { + fetch('https://ichatt.herokuapp.com/app/friendlist', { method: 'GET', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/barre-gauche.jsx b/src/barre-gauche.jsx index 44d4ff9..5c11bbd 100644 --- a/src/barre-gauche.jsx +++ b/src/barre-gauche.jsx @@ -18,7 +18,7 @@ export default class barregauche extends Component { }; } componentDidMount(){ - fetch('http://localhost:4000/app/friendlist', { + fetch('https://ichatt.herokuapp.com/app/friendlist', { method: 'GET', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/components/chat.jsx b/src/components/chat.jsx index 5353f67..ab5834f 100644 --- a/src/components/chat.jsx +++ b/src/components/chat.jsx @@ -5,7 +5,7 @@ import FriendNom from './friend_nom' -const socket = io('http://localhost:4000'); +const socket = io('https://ichatt.herokuapp.com/'); export default class Chat extends Component { // création du state "message" constructor(props) { @@ -35,7 +35,7 @@ export default class Chat extends Component { componentDidMount(){ this.setState({friendid:this.props.valeur}) this.setState({user_nom:this.props.nom}) - fetch('http://localhost:4000/app/getgroupechatlist', { + fetch('https://ichatt.herokuapp.com/app/getgroupechatlist', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', @@ -60,7 +60,7 @@ export default class Chat extends Component { componentDidUpdate(){ if(this.state.friendid !== this.props.valeur){ this.setState({friendid:this.props.valeur}) - fetch('http://localhost:4000/app/getgroupechatlist', { + fetch('https://ichatt.herokuapp.com/app/getgroupechatlist', { method: 'POST', credentials: 'include', body: JSON.stringify({ diff --git a/src/components/friend_nom.jsx b/src/components/friend_nom.jsx index 488a496..b178ab7 100644 --- a/src/components/friend_nom.jsx +++ b/src/components/friend_nom.jsx @@ -10,7 +10,7 @@ export default class friend_nom extends Component { }; } componentDidMount(){ - fetch('http://localhost:4000/app/getFriendName', { + fetch('https://ichatt.herokuapp.com/app/getFriendName', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', @@ -30,7 +30,7 @@ export default class friend_nom extends Component { } componentDidUpdate(){ if(this.state.id != this.props.id){ - fetch('http://localhost:4000/app/getFriendName', { + fetch('https://ichatt.herokuapp.com/app/getFriendName', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git "a/src/components/param\303\250tre.jsx" "b/src/components/param\303\250tre.jsx" index 702f4b8..7d3a50c 100644 --- "a/src/components/param\303\250tre.jsx" +++ "b/src/components/param\303\250tre.jsx" @@ -26,7 +26,7 @@ export default class parametre extends Component { onSubmit = async (event)=>{ event.preventDefault(); console.log(this.state) - const test = await fetch('http://localhost:4000/app/changeName', { + const test = await fetch('https://ichatt.herokuapp.com/app/changeName', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/components/statistique.jsx b/src/components/statistique.jsx index ecd13fc..bbbcbe2 100644 --- a/src/components/statistique.jsx +++ b/src/components/statistique.jsx @@ -15,7 +15,7 @@ export default class StatWithFriend extends Component { }; } componentDidMount(){ - fetch('http://localhost:4000/app/statByUser', { + fetch('https://ichatt.herokuapp.com/app/statByUser', { method: 'GET', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', @@ -29,7 +29,7 @@ export default class StatWithFriend extends Component { this.setState({statistique_amis:response}) console.log("statistique : ",this.state.statistique_amis) }) - fetch('http://localhost:4000/app/friendlist', { + fetch('https://ichatt.herokuapp.com/app/friendlist', { method: 'GET', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/friends-liste.jsx b/src/friends-liste.jsx index 3087aee..0ea4905 100644 --- a/src/friends-liste.jsx +++ b/src/friends-liste.jsx @@ -37,7 +37,7 @@ export default class friendsliste extends Component { event.preventDefault(); console.log("state envois demande amis : ",this.state) // requête POST - fetch('http://localhost:4000/app/newfriend', { + fetch('https://ichatt.herokuapp.com/app/newfriend', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', @@ -64,7 +64,7 @@ export default class friendsliste extends Component { this.setState({message:""}); } componentDidMount(){ - fetch('http://localhost:4000/app/friendlist', { + fetch('https://ichatt.herokuapp.com/app/friendlist', { method: 'GET', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/login.jsx b/src/login.jsx index fc7fd7c..0b559c4 100644 --- a/src/login.jsx +++ b/src/login.jsx @@ -26,7 +26,7 @@ export default class login extends Component { onSubmit = (event) => { event.preventDefault(); console.log("state login : ",this.state) - fetch('http://localhost:4000/authentification/signin', { + fetch('https://ichatt.herokuapp.com/authentification/signin', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/signup.jsx b/src/signup.jsx index 61a361c..9faaf91 100644 --- a/src/signup.jsx +++ b/src/signup.jsx @@ -27,7 +27,7 @@ export default class signup extends Component { event.preventDefault(); console.log("state signup : ",this.state); - fetch('http://localhost:4000/authentification/signup', { + fetch('https://ichatt.herokuapp.com/authentification/signup', { method: 'POST', // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', diff --git a/src/withAuth.jsx b/src/withAuth.jsx index d03f027..e911cb0 100644 --- a/src/withAuth.jsx +++ b/src/withAuth.jsx @@ -14,7 +14,7 @@ export default function withAuth(ComponentToProtect) { // fait une requête POST au chemin "http://localhost:4000/auth" pour vérifier si les cookie sont valide componentDidMount() { - fetch('http://localhost:4000/auth',{ + fetch('https://ichatt.herokuapp.com/auth',{ // credentials : include permet d'intégrer les cookie avec la requête credentials: 'include', method: 'POST'