|
| 1 | +/*! |
| 2 | + Copyright 2018 Propel http://propel.site/. All rights reserved. |
| 3 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | + you may not use this file except in compliance with the License. |
| 5 | + You may obtain a copy of the License at |
| 6 | +
|
| 7 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | + Unless required by applicable law or agreed to in writing, software |
| 10 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | + See the License for the specific language governing permissions and |
| 13 | + limitations under the License. |
| 14 | + */ |
| 15 | + |
| 16 | +import { Component, h } from "preact"; |
| 17 | +import * as db from "./db"; |
| 18 | +import { pushState, Router } from "./router"; |
| 19 | +import * as types from "./types"; |
| 20 | +import { equal } from "./util"; |
| 21 | + |
| 22 | +import { ErrorPage } from "./components/error"; |
| 23 | +import { GlobalHeader } from "./components/header"; |
| 24 | +import { Loading } from "./components/loading"; |
| 25 | +import { UserMenu } from "./components/menu"; |
| 26 | +import { Notebook } from "./components/notebook"; |
| 27 | +import { Profile } from "./components/profile"; |
| 28 | +import { Recent } from "./components/recent"; |
| 29 | + |
| 30 | +interface BindProps { |
| 31 | + [key: string]: (props: any) => Promise<any>; |
| 32 | +} |
| 33 | + |
| 34 | +interface BindState { |
| 35 | + data: { [key: string]: string }; |
| 36 | + error: string; |
| 37 | +} |
| 38 | + |
| 39 | +function bind(C, bindProps: BindProps) { |
| 40 | + return class extends Component<any, BindState> { |
| 41 | + state = { data: null, error: null }; |
| 42 | + prevMatches = null; |
| 43 | + |
| 44 | + async loadData() { |
| 45 | + if (equal(this.props.matches, this.prevMatches)) return; |
| 46 | + this.prevMatches = this.props.matches; |
| 47 | + const data = {}; |
| 48 | + for (const key in bindProps) { |
| 49 | + if (!bindProps[key]) continue; |
| 50 | + try { |
| 51 | + data[key] = await bindProps[key](this.props); |
| 52 | + } catch (e) { |
| 53 | + this.setState({ data: null, error: e.message }); |
| 54 | + return; |
| 55 | + } |
| 56 | + } |
| 57 | + this.setState({ data, error: null }); |
| 58 | + } |
| 59 | + |
| 60 | + render() { |
| 61 | + this.loadData(); |
| 62 | + const { data, error } = this.state; |
| 63 | + if (error) return <ErrorPage message={error} />; |
| 64 | + if (!data) return <Loading />; |
| 65 | + return <C {...this.props} {...data} />; |
| 66 | + } |
| 67 | + }; |
| 68 | +} |
| 69 | + |
| 70 | +// An anonymous notebook doc for when users aren't logged in |
| 71 | +const anonDoc = { |
| 72 | + anonymous: true, |
| 73 | + cells: [], |
| 74 | + created: new Date(), |
| 75 | + owner: { |
| 76 | + displayName: "Anonymous", |
| 77 | + photoURL: "/static/img/anon_profile.png?", |
| 78 | + uid: "" |
| 79 | + }, |
| 80 | + title: "Anonymous Notebook", |
| 81 | + updated: new Date() |
| 82 | +}; |
| 83 | + |
| 84 | +// TODO Move these components to ./pages.tsx. |
| 85 | +// tslint:disable:variable-name |
| 86 | +async function onNewNotebookClicked() { |
| 87 | + const nbId = await db.active.create(); |
| 88 | + // Redirect to new notebook. |
| 89 | + pushState(`/notebook/${nbId}`); |
| 90 | +} |
| 91 | + |
| 92 | +async function onPreviewClicked(nbId: string) { |
| 93 | + // Redirect to notebook. |
| 94 | + pushState(`/notebook/${nbId}`); |
| 95 | +} |
| 96 | + |
| 97 | +export const RecentPage = bind(Recent, { |
| 98 | + mostRecent() { |
| 99 | + return db.active.queryLatest(); |
| 100 | + }, |
| 101 | + async onClick() { |
| 102 | + return (nbId: string) => onPreviewClicked(nbId); |
| 103 | + }, |
| 104 | + async onNewNotebookClicked() { |
| 105 | + return () => onNewNotebookClicked(); |
| 106 | + } |
| 107 | +}); |
| 108 | + |
| 109 | +export const ProfilePage = bind(Profile, { |
| 110 | + notebooks(props) { |
| 111 | + const uid = props.matches.userId; |
| 112 | + return db.active.queryProfile(uid, 100); |
| 113 | + }, |
| 114 | + async onClick() { |
| 115 | + return (nbId: string) => onPreviewClicked(nbId); |
| 116 | + }, |
| 117 | + async onNewNotebookClicked() { |
| 118 | + return () => onNewNotebookClicked(); |
| 119 | + } |
| 120 | +}); |
| 121 | + |
| 122 | +export const NotebookPage = bind(Notebook, { |
| 123 | + initialDoc(props) { |
| 124 | + const nbId = props.matches.nbId; |
| 125 | + return nbId === "anonymous" |
| 126 | + ? Promise.resolve(anonDoc) |
| 127 | + : db.active.getDoc(nbId); |
| 128 | + }, |
| 129 | + save(props) { |
| 130 | + const nbId = props.matches.nbId; |
| 131 | + const cb = async doc => { |
| 132 | + if (doc.anonymous) return; |
| 133 | + if (!props.userInfo) return; |
| 134 | + if (props.userInfo.uid !== doc.owner.uid) return; |
| 135 | + try { |
| 136 | + await db.active.updateDoc(nbId, doc); |
| 137 | + } catch (e) { |
| 138 | + // TODO |
| 139 | + console.log(e); |
| 140 | + } |
| 141 | + }; |
| 142 | + return Promise.resolve(cb); |
| 143 | + }, |
| 144 | + clone(props) { |
| 145 | + const cb = async doc => { |
| 146 | + const cloneId = await db.active.clone(doc); |
| 147 | + // Redirect to new notebook. |
| 148 | + pushState(`/notebook/${cloneId}`); |
| 149 | + }; |
| 150 | + return Promise.resolve(cb); |
| 151 | + } |
| 152 | +}); |
| 153 | +// tslint:enable:variable-name |
| 154 | + |
| 155 | +export interface AppState { |
| 156 | + loadingAuth: boolean; |
| 157 | + userInfo: types.UserInfo; |
| 158 | +} |
| 159 | + |
| 160 | +export class App extends Component<{}, AppState> { |
| 161 | + state = { |
| 162 | + loadingAuth: true, |
| 163 | + userInfo: null |
| 164 | + }; |
| 165 | + |
| 166 | + unsubscribe: db.UnsubscribeCb; |
| 167 | + componentWillMount() { |
| 168 | + this.unsubscribe = db.active.subscribeAuthChange(userInfo => { |
| 169 | + this.setState({ loadingAuth: false, userInfo }); |
| 170 | + }); |
| 171 | + } |
| 172 | + |
| 173 | + componentWillUnmount() { |
| 174 | + this.unsubscribe(); |
| 175 | + } |
| 176 | + |
| 177 | + render() { |
| 178 | + const { userInfo } = this.state; |
| 179 | + return ( |
| 180 | + <div class="notebook"> |
| 181 | + <GlobalHeader subtitle="Notebook" subtitleLink="/"> |
| 182 | + <UserMenu userInfo={userInfo} /> |
| 183 | + </GlobalHeader> |
| 184 | + <Router> |
| 185 | + <RecentPage path="/" userInfo={userInfo} /> |
| 186 | + <NotebookPage path="/notebook/:nbId" userInfo={userInfo} /> |
| 187 | + <ProfilePage path="/user/:userId" userInfo={userInfo} /> |
| 188 | + <ErrorPage message="The page you're looking for doesn't exist." /> |
| 189 | + </Router> |
| 190 | + </div> |
| 191 | + ); |
| 192 | + } |
| 193 | +} |
0 commit comments