Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Google Drive: Created the skeleton for the google drive team #304

Merged
merged 3 commits into from
Sep 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions client/src/components/Apps/GoogleDrive/About/About.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import styles from './About.module.css'


function About () {

return(
<div className={styles.wrapper}>
This is the about page
</div>
)
}


export default About
3 changes: 3 additions & 0 deletions client/src/components/Apps/GoogleDrive/About/About.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.wrapper{
margin-top: 5px;
}
30 changes: 27 additions & 3 deletions client/src/components/Apps/GoogleDrive/GoogleDrive.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
import React from "react";
import React, {useState} from "react";
import styles from './GoogleDrive.module.css'
import Messages from './Messages/Messages'
import About from './About/About'

const GoogleDrive = () => {
return <div>This is the google drive page</div>;
const GoogleDrive = () => {

const [page, setPage] = useState('messages')

console.log(page)

return (
<div className={styles.container}>
<div className={styles.layer1}>

</div>

<div className={styles.layer2}>
<h3 className={page==='messages'? styles.markGreen: null} onClick={() => setPage('messages')}>Messages</h3>
<h3 className={page==='about'? styles.markGreen: null} onClick={() => setPage('about')}>About</h3>
</div>
<React.Fragment>
{page === 'messages'? <Messages />:null}
{page === 'about'? <About />:null}
</React.Fragment>


</div>);
};

export default GoogleDrive;
34 changes: 34 additions & 0 deletions client/src/components/Apps/GoogleDrive/GoogleDrive.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
.container{
height: 100%;
padding-top: 6%;
background-color: #f6f6f6
}

.container .layer1{
width: 100%;
height: 8.97%;
}

.container .layer2{
border: 1px solid #E7E7E7;
display: flex;
justify-content: flex-start;
align-items: center;
}


.container .layer2 h3{
height: 100%;

font-size: 14px;
text-align: center;
display: flex;
align-items: flex-end;
margin: 14px 14px 0 14px;
padding-bottom: 14px;
cursor: pointer;
}

.markGreen{
border-bottom: #0acf83 1px solid;
}
14 changes: 14 additions & 0 deletions client/src/components/Apps/GoogleDrive/Messages/Messages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import styles from './Messages.module.css'


function Messages (){

return(
<div className={styles.wrapper}>
This is the Messages page
</div>
)
}


export default Messages
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.wrapper{
width: 100%;
margin-top: 5px;
}