Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
RIT_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박권수
2021-08-17 02:33:20 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e6137b29a48aa0950d1f002c6edb627825d60058
e6137b29
1 parent
f555b3fb
feat. login page
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
177 additions
and
16 deletions
web/src/api/api-manager.ts
web/src/api/client.ts
web/src/config/config.ts
web/src/views/login/LoginContainer.tsx
web/src/views/login/LoginPresenter.tsx
web/src/views/login/LoginStyled.tsx
web/src/views/main/MainContainer.tsx
web/src/views/main/MainPresenter.tsx
web/src/api/api-manager.ts
View file @
e6137b2
import
{
client
}
from
'./client'
;
import
{
RecoilState
}
from
'recoil'
;
export
default
{
getDoctorRegReqList
:
(
token
:
RecoilState
<
any
>
)
=>
{
return
client
.
get
(
'/manage/doctor'
,
{
headers
:
{
Authorization
:
token
,
},
});
},
getDoctorRegReqDetail
:
(
token
:
RecoilState
<
any
>
,
doctorId
:
string
)
=>
{
return
client
.
get
(
`/manage/doctor/
${
doctorId
}
`
,
{
headers
:
{
Authorization
:
token
,
},
});
},
acceotDoctorRegReq
:
(
token
:
RecoilState
<
any
>
,
Data
:
FormData
)
=>
{
return
client
.
post
(
'/manage/doctor/accept'
,
Data
,
{
headers
:
{
Authorization
:
token
,
},
});
},
rejectDoctorRegReq
:
(
token
:
RecoilState
<
any
>
,
Data
:
FormData
)
=>
{
return
client
.
post
(
'/manage/doctor/reject'
,
Data
,
{
headers
:
{
Authorization
:
token
,
},
});
},
};
\ No newline at end of file
...
...
web/src/api/client.ts
View file @
e6137b2
import
axios
,
{
AxiosInstance
}
from
'axios'
;
require
(
'dotenv'
).
config
();
const
{
BASE_URL
}
=
process
.
env
;
import
{
baseURL
}
from
'../config/config'
;
export
const
client
:
AxiosInstance
=
axios
.
create
({
baseURL
:
BASE_URL
,
baseURL
,
headers
:
{
'Content-Type'
:
'application/json'
,
'Access-Control-Allow-Origin'
:
'*'
,
...
...
@@ -20,6 +18,7 @@ client.interceptors.response.use(
return
response
;
},
function
(
error
)
{
console
.
log
(
error
);
return
error
;
}
);
...
...
web/src/config/config.ts
0 → 100644
View file @
e6137b2
export
const
baseURL
=
'http://localhost:4000/api'
;
\ No newline at end of file
web/src/views/login/LoginContainer.tsx
View file @
e6137b2
import React, { useState, useEffect } from 'react';
import { RouteComponentProps } from 'react-router-dom';
import { useRecoilState } from 'recoil';
import * as recoilUtil from '../../util/recoilUtil';
import LoginPresenter from './LoginPresenter';
import { authApi } from 'api';
import { authApi } from '../../api';
type LoginProps = RouteComponentProps
const LoginContainer = (props : LoginProps) => {
const [loginForm, setLoginForm] = useState({
userId : '',
password : '',
});
const [token, setToken] = useRecoilState(recoilUtil.token);
const onSetUserId = (e : React.ChangeEvent<HTMLInputElement>) => {
setLoginForm({
...loginForm,
userId : e.target.value,
});
};
const onSetPassword = (e : React.ChangeEvent<HTMLInputElement>) => {
setLoginForm({
...loginForm,
password : e.target.value,
});
};
const onLogin = async () => {
const data : FormData = new FormData();
data.append('userId', loginForm.userId);
data.append('password', loginForm.password);
try {
const result : any = await authApi.login(data);
if(result.token) {
setToken(result.token);
props.history.push('/');
}
} catch(e) {
console.log(e);
}
};
useEffect(() => {
console.log('loginPage');
}, []);
return (
<LoginPresenter
temp = {'hi'}
loginForm = {loginForm}
onSetUserId = {onSetUserId}
onSetPassword = {onSetPassword}
onLogin = {onLogin}
/>
)
};
...
...
web/src/views/login/LoginPresenter.tsx
View file @
e6137b2
...
...
@@ -3,13 +3,51 @@ import React from 'react';
import * as styled from './LoginStyled';
interface LoginProps {
temp : string;
loginForm : {
userId : string,
password : string,
};
onSetUserId : React.ChangeEventHandler<HTMLInputElement>;
onSetPassword : React.ChangeEventHandler<HTMLInputElement>;
onLogin : React.MouseEventHandler<HTMLButtonElement>;
}
const LoginPresenter = (props : LoginProps) => {
return (
<styled.Container>
This is Login Page {props.temp}
<styled.LoginWrapper>
<styled.LoginInputWrapper>
<styled.LoginEachInputWrapper>
<styled.LoginInputText
>
로그인 이메일
</styled.LoginInputText>
<styled.LoginInput
type = 'text'
value = {props.loginForm.userId}
onChange = {props.onSetUserId}
/>
</styled.LoginEachInputWrapper>
<styled.LoginEachInputWrapper>
<styled.LoginInputText>
비밀번호
</styled.LoginInputText>
<styled.LoginInput
type = 'password'
value = {props.loginForm.password}
onChange = {props.onSetPassword}
/>
</styled.LoginEachInputWrapper>
</styled.LoginInputWrapper>
<styled.LoginButtonWrapper>
<styled.LoginButton
onClick = {props.onLogin}
>
로그인
</styled.LoginButton>
</styled.LoginButtonWrapper>
</styled.LoginWrapper>
</styled.Container>
);
};
...
...
web/src/views/login/LoginStyled.tsx
View file @
e6137b2
import styled from 'styled-components';
export const Container = styled.div `
width : 1180px;
`;
export const LoginWrapper = styled.div `
width : 50%;
border : 1px solid;
display : flex;
flex-direction : column;
justify-content : center;
align-items : center;
padding : 20px 3px;
`;
export const LoginInputWrapper = styled.div `
margin : 10px 0;
width : 30%;
`;
export const LoginEachInputWrapper = styled.div `
display : flex;
flex-direction : column;
justify-content : center;
align-items : center;
`;
export const LoginInputText = styled.div `
margin : 5px 0;
text-align : center;
`;
export const LoginInput = styled.input `
border : 1px solid;
height : 30px;
width : 100%;
`;
export const LoginButtonWrapper = styled.div `
width: 30%;
display : flex;
flex-direction : row;
justify-content : center;
align-items : center;
`;
export const LoginButton = styled.button `
margin : 5px 0 5px 0;
`;
\ No newline at end of file
...
...
web/src/views/main/MainContainer.tsx
View file @
e6137b2
...
...
@@ -6,25 +6,25 @@ import MainPresenter from './MainPresenter';
import { useRecoilState, useRecoilValue } from 'recoil';
import * as recoilUtil from '../../util/recoilUtil';
import { doctorApi, managerApi, userApi, authApi } from 'api';
import { doctorApi, managerApi, userApi, authApi } from '
../../
api';
type MainProps = RouteComponentProps
const MainContainer = (props : MainProps) => {
const
[token, setToken] = useRecoilStat
e(recoilUtil.token);
const
token = useRecoilValu
e(recoilUtil.token);
const userType = useRecoilValue(recoilUtil.userType);
useEffect(() => {
if
(!token
) {
console.log('no Toke
n');
if
(!token || token.length
) {
props.history.push('/logi
n');
}
}, []);
return (
<MainPresenter
temp = {'hi'
}
userType = {userType
}
/>
);
};
...
...
web/src/views/main/MainPresenter.tsx
View file @
e6137b2
...
...
@@ -4,13 +4,13 @@ import * as styled from './MainStyled';
interface MainProps {
temp
: string;
userType
: string;
}
const MainPresenter = (props : MainProps) => {
return (
<styled.Container>
This is Main Page {props.
temp
}
This is Main Page {props.
userType
}
</styled.Container>
)
};
...
...
Please
register
or
login
to post a comment