|
@@ -1,5 +1,6 @@
|
|
|
-import React from 'react';
|
|
|
-import { Typography } from '@material-ui/core';
|
|
|
+import React, { useEffect, useState } from 'react';
|
|
|
+import { TextField, Typography } from '@material-ui/core';
|
|
|
+import axios from 'axios';
|
|
|
import Navbar from "../Navbar";
|
|
|
import SearchButton from "../Buttons/SearchButton";
|
|
|
import { useAuth0, withAuthenticationRequired } from "@auth0/auth0-react";
|
|
@@ -12,9 +13,61 @@ const useStyles = makeStyles({
|
|
|
margin: '6rem 2rem',
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+const domain = process.env.REACT_APP_AUTH0_DOMAIN;
|
|
|
+const serverURL = process.env.REACT_APP_SERVER_URL;
|
|
|
+
|
|
|
const Social = () => {
|
|
|
const classes = useStyles();
|
|
|
- const { user } = useAuth0();
|
|
|
+ const { user, getAccessTokenSilently } = useAuth0();
|
|
|
+
|
|
|
+ const [query, setQuery] = useState('');
|
|
|
+
|
|
|
+ const getUsers = () => {
|
|
|
+ axios.get(serverURL + '/users/all/')
|
|
|
+ .then(res => {
|
|
|
+ console.log('result', res);
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ console.log(err.message);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ useEffect(() => {
|
|
|
+ getUsers();
|
|
|
+ }, [query]);
|
|
|
+ /*
|
|
|
+ useEffect(() => {
|
|
|
+ const getUsersFromQuery = async () => {
|
|
|
+
|
|
|
+ try {
|
|
|
+ const accessToken = await getAccessTokenSilently({
|
|
|
+ audience: `https://${domain}/api/v2/`,
|
|
|
+ scope: "read:users",
|
|
|
+ });
|
|
|
+
|
|
|
+ const options = {
|
|
|
+ method: 'GET',
|
|
|
+ url: `https://${domain}/api/v2/users`,
|
|
|
+ params: {q: `name:"*${query}*"`, search_engine: 'v3'},
|
|
|
+ headers: {authorization: `Bearer ${accessToken}`}
|
|
|
+ };
|
|
|
+
|
|
|
+ axios.request(options).then(function (response) {
|
|
|
+ console.log('response from API Call', response.data);
|
|
|
+ }).catch(function (error) {
|
|
|
+ console.error('error2', error);
|
|
|
+ });
|
|
|
+
|
|
|
+ } catch (e) {
|
|
|
+ console.log('error1', e.message);
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ getUsersFromQuery().then(() => {
|
|
|
+ console.log('request complete.');
|
|
|
+ });
|
|
|
+ }, [query]);*/
|
|
|
|
|
|
return (
|
|
|
<>
|
|
@@ -22,6 +75,8 @@ const Social = () => {
|
|
|
<Typography variant="h1">
|
|
|
Social
|
|
|
</Typography>
|
|
|
+
|
|
|
+ <TextField value={query} name="query" onChange={e => setQuery(e.target.value)} label="Query" variant="outlined" autoFocus required />
|
|
|
</>
|
|
|
)
|
|
|
;
|