|
| 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