Skip to content

Commit 1c39487

Browse files
committed
Added contoso notes for the web
1 parent 59925b8 commit 1c39487

14 files changed

+12199
-0
lines changed

ContosoNotesWeb/.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

ContosoNotesWeb/README.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Getting Started with Create React App
2+
3+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4+
5+
## Available Scripts
6+
7+
In the project directory, you can run:
8+
9+
### `yarn start`
10+
11+
Runs the app in the development mode.\
12+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13+
14+
The page will reload if you make edits.\
15+
You will also see any lint errors in the console.
16+
17+
### `yarn test`
18+
19+
Launches the test runner in the interactive watch mode.\
20+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21+
22+
### `yarn build`
23+
24+
Builds the app for production to the `build` folder.\
25+
It correctly bundles React in production mode and optimizes the build for the best performance.
26+
27+
The build is minified and the filenames include the hashes.\
28+
Your app is ready to be deployed!
29+
30+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31+
32+
### `yarn eject`
33+
34+
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35+
36+
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37+
38+
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39+
40+
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41+
42+
## Learn More
43+
44+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45+
46+
To learn React, check out the [React documentation](https://reactjs.org/).

ContosoNotesWeb/package.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "contoso-notes",
3+
"version": "0.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"@microsoft/mgt-element": "^2.2.0-preview.9f2ad63",
7+
"@microsoft/mgt-msal2-provider": "^2.2.0-preview.9f2ad63",
8+
"@microsoft/mgt-react": "^2.2.0-preview.9f2ad63",
9+
"@testing-library/jest-dom": "^5.11.4",
10+
"@testing-library/react": "^11.1.0",
11+
"@testing-library/user-event": "^12.1.10",
12+
"@types/jest": "^26.0.15",
13+
"@types/node": "^12.0.0",
14+
"@types/react": "^17.0.0",
15+
"@types/react-dom": "^17.0.0",
16+
"react": "^17.0.2",
17+
"react-dom": "^17.0.2",
18+
"react-scripts": "4.0.3",
19+
"typescript": "^4.1.2",
20+
"web-vitals": "^1.0.1"
21+
},
22+
"scripts": {
23+
"start": "react-scripts start",
24+
"build": "react-scripts build",
25+
"test": "react-scripts test",
26+
"eject": "react-scripts eject"
27+
},
28+
"eslintConfig": {
29+
"extends": [
30+
"react-app",
31+
"react-app/jest"
32+
]
33+
},
34+
"browserslist": {
35+
"production": [
36+
">0.2%",
37+
"not dead",
38+
"not op_mini all"
39+
],
40+
"development": [
41+
"last 1 chrome version",
42+
"last 1 firefox version",
43+
"last 1 safari version"
44+
]
45+
}
46+
}

ContosoNotesWeb/public/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="%PUBLIC_URL%/logo.png" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="theme-color" content="#000000" />
8+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.png" />
9+
10+
<title>Contoso Notes</title>
11+
</head>
12+
<body>
13+
<noscript>You need to enable JavaScript to run this app.</noscript>
14+
<div id="root"></div>
15+
</body>
16+
</html>

ContosoNotesWeb/public/logo.png

31.5 KB
Loading

ContosoNotesWeb/public/robots.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

ContosoNotesWeb/src/App.css

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
header {
2+
height: 65px;
3+
box-shadow: rgb(0 0 0 / 5%) 0px 4px 12px 0px;
4+
display: flex;
5+
justify-content: center;
6+
}
7+
8+
.top-nav {
9+
height: 100%;
10+
display: flex;
11+
justify-content: center;
12+
width: 100%;
13+
max-width: 1192px;
14+
align-items: center;
15+
margin: 0 64px;
16+
}
17+
18+
.logo {
19+
flex: 1 0 auto;
20+
}
21+
22+
.logo img {
23+
max-height: 40px;
24+
width: auto;
25+
26+
}
27+
28+
.sync-status {
29+
font-size: 12px;
30+
font-weight: 400;
31+
opacity: 0.4;
32+
margin-right: 12px;
33+
}
34+
35+
mgt-login {
36+
flex: 0 0 auto;
37+
}
38+
39+
mgt-login mgt-person {
40+
--avatar-size: 32px;
41+
}
42+
43+
.content {
44+
overflow-wrap: break-word;
45+
word-break: break-word;
46+
font-weight: 400;
47+
}
48+
49+
.notes {
50+
display: flex;
51+
margin-top: 64px;
52+
justify-content: center;
53+
}
54+
55+
.note-title {
56+
margin-top: 1.25em;
57+
margin-bottom: -0.28em;
58+
}
59+
60+
.notes-container {
61+
width:100%;
62+
max-width: 680px;
63+
margin: 0 64px;
64+
}
65+
66+
.notes-item {
67+
line-height: 32px;
68+
margin-top: 1em;
69+
margin-bottom: 1em;
70+
font-size: 16px;
71+
}
72+
73+
.task-item {
74+
margin-top: -0.5em;
75+
margin-left: 0.5em;
76+
}

ContosoNotesWeb/src/App.tsx

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
import { useEffect, useState } from 'react';
2+
import './App.css';
3+
import { Login, MgtTemplateProps, Person } from '@microsoft/mgt-react';
4+
import { Providers } from '@microsoft/mgt-element';
5+
import { useIsSignedIn } from './mgt';
6+
7+
function App() {
8+
const [isSignedIn] = useIsSignedIn();
9+
10+
let content;
11+
12+
if (isSignedIn) {
13+
content = <Notes />;
14+
} else {
15+
content = <div>You need to be signed in to see notes!</div>
16+
}
17+
18+
return (
19+
<div className="App">
20+
<header>
21+
<div className="top-nav">
22+
<div className="logo">
23+
<img src="/logo.png" alt="logo"></img>
24+
</div>
25+
<div className="sync-status">
26+
synced
27+
</div>
28+
<Login >
29+
<LoginTemplate template="signed-in-button-content" />
30+
</Login>
31+
</div>
32+
</header>
33+
<section className="content">
34+
{content}
35+
</section>
36+
</div>
37+
);
38+
}
39+
40+
function LoginTemplate(props: MgtTemplateProps) {
41+
// return <Person personDetails={props.dataContext.personDetails} />;
42+
return <div>{props.dataContext.personDetails.givenName}</div>
43+
}
44+
45+
function Notes() {
46+
47+
const [isLoading, setIsLoading] = useState(true);
48+
49+
const [note, setNote] = useState<any>(null);
50+
51+
useEffect(() => {
52+
(async () => {
53+
const notesList = await getContentFromJsonFile('notesList');
54+
55+
if (notesList && notesList.Items && notesList.Items.length) {
56+
const firstNoteFileName = notesList.Items[0].NotePageId;
57+
const noteContent = await getContentFromJsonFile(firstNoteFileName);
58+
setNote(noteContent);
59+
console.log(noteContent);
60+
}
61+
62+
setIsLoading(false);
63+
})();
64+
}, []);
65+
66+
let content;
67+
68+
69+
if (isLoading) {
70+
content = <div>Loading</div>
71+
} else if (note) {
72+
content = <Note noteItems={note.NoteItems} title={note.PageTitle} />;
73+
} else {
74+
content = <div>No notes</div>
75+
}
76+
77+
return <div className="notes">
78+
{content}
79+
</div>;
80+
}
81+
82+
function Note(props: any) {
83+
84+
const {noteItems, title} = props;
85+
86+
return <div className="notes-container">
87+
<h1 className="note-title" contentEditable>
88+
{title}
89+
</h1>
90+
{noteItems.map((note: any, index: number) => (
91+
<NoteItem key={index} note={note} />
92+
))}
93+
</div>
94+
}
95+
96+
function NoteItem(props: any) {
97+
const { note } = props;
98+
99+
if (note.IsCompleted !== undefined) {
100+
return <TodoNoteItem note={note}/>
101+
}
102+
103+
return <div className="notes-item" contentEditable dangerouslySetInnerHTML={getHtmlFromText(note.Text)}></div>
104+
}
105+
106+
function TodoNoteItem(props: any) {
107+
const {note} = props;
108+
109+
const [state, setState] = useState(note);
110+
const [todoTask, setTodoTask] = useState(null);
111+
const [loading, setLoading] = useState(true);
112+
113+
useEffect(() => {
114+
if (note.TodoTaskId && note.TodoTaskListId) {
115+
(async () => {
116+
const task = await getTask(note.TodoTaskId, note.TodoTaskListId);
117+
if (task) {
118+
setTodoTask(task);
119+
setState({...state, IsCompleted: task.status === 'completed', Text: task.title})
120+
}
121+
setLoading(false);
122+
})();
123+
} else {
124+
setLoading(false);
125+
}
126+
}, []);
127+
128+
const onCompletedChanged = async (e: any) => {
129+
130+
const isCompleted = state.IsCompleted;
131+
setState({...state, IsCompleted: !isCompleted});
132+
133+
if (todoTask) {
134+
setLoading(true);
135+
const task = await Providers.client.api(`/me/todo/lists/${state.TodoTaskListId}/tasks/${state.TodoTaskId}`).patch({
136+
status: isCompleted ? 'notStarted' : 'completed'
137+
});
138+
console.log(task);
139+
setLoading(false);
140+
}
141+
}
142+
143+
144+
return <div className="notes-item task-item">
145+
<input disabled={loading} type="checkbox" checked={state.IsCompleted} onChange={onCompletedChanged} />
146+
<span contentEditable>{state.Text}</span>
147+
</div>
148+
}
149+
150+
const getContentFromJsonFile = async (fileName: string) => {
151+
try {
152+
let notesList = await Providers.client.api(`/me/drive/root:/Apps/ContosoNotes/${fileName}.json`).get();
153+
return await (await (await fetch(notesList['@microsoft.graph.downloadUrl']))).json();
154+
} catch (e) {
155+
return null;
156+
}
157+
}
158+
159+
const getTask = async (taskId: string, taskListId: string) => {
160+
try {
161+
let task = await Providers.client.api(`/me/todo/lists/${taskListId}/tasks/${taskId}`).get();
162+
return task;
163+
} catch (e) {
164+
return null;
165+
}
166+
}
167+
168+
const getHtmlFromText = (text: string) => {
169+
return {
170+
__html: text.replaceAll('\r', '<br />')
171+
};
172+
}
173+
174+
export default App;

0 commit comments

Comments
 (0)