]> Untitled Git - lemmy-ui.git/commitdiff
Some cleanup.
authorDessalines <tyhou13@gmx.com>
Wed, 9 Sep 2020 03:13:26 +0000 (22:13 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 9 Sep 2020 03:13:26 +0000 (22:13 -0500)
src/shared/components/app.tsx
src/shared/components/comment-form.tsx
src/shared/components/community-form.tsx
src/shared/components/footer.tsx
src/shared/components/login.tsx
src/shared/components/password_change.tsx
src/shared/components/post-listing.tsx
src/shared/components/post-listings.tsx
src/shared/components/private-message.tsx
src/shared/routes.ts

index 48cfd6a180c171cd1573df0d4560848d0517e04f..9a4d858b7d53bac2d8f8d93f9e7737f38e6dacbc 100644 (file)
@@ -38,7 +38,7 @@ export class App extends Component<AppProps, any> {
               </Switch>
               <Symbols />
             </div>
-            <Footer />
+            <Footer site={this.props.site} />
           </div>
         </Provider>
       </>
index dbd14dc76adc1ff82939d23f10714a2a60970331..79115116019fc6ea27096bb1d4b7a092ac3bc847 100644 (file)
@@ -1,7 +1,6 @@
 import { Component } from 'inferno';
 import { Link } from 'inferno-router';
 import { Subscription } from 'rxjs';
-import { retryWhen, delay, take } from 'rxjs/operators';
 import {
   CommentNode as CommentNodeI,
   CommentForm as CommentFormI,
@@ -9,7 +8,7 @@ import {
   UserOperation,
   CommentResponse,
 } from 'lemmy-js-client';
-import { capitalizeFirstLetter, wsJsonToRes } from '../utils';
+import { capitalizeFirstLetter, wsJsonToRes, wsSubscribe } from '../utils';
 import { WebSocketService, UserService } from '../services';
 import { i18n } from '../i18next';
 import { T } from 'inferno-i18next';
@@ -71,13 +70,8 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
       }
     }
 
-    this.subscription = WebSocketService.Instance.subject
-      .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
-      .subscribe(
-        msg => this.parseMessage(msg),
-        err => console.error(err),
-        () => console.log('complete')
-      );
+    this.parseMessage = this.parseMessage.bind(this);
+    this.subscription = wsSubscribe(this.parseMessage);
   }
 
   componentWillUnmount() {
index 301a9eb1ce3dbca4aa39d4e403aea5972086f75d..de7b6b2d78257a560aa6b9503bc36a788f74975e 100644 (file)
@@ -1,7 +1,6 @@
 import { Component, linkEvent } from 'inferno';
 import { Prompt } from 'inferno-router';
 import { Subscription } from 'rxjs';
-import { retryWhen, delay, take } from 'rxjs/operators';
 import {
   CommunityForm as CommunityFormI,
   UserOperation,
@@ -11,7 +10,13 @@ import {
   Community,
 } from 'lemmy-js-client';
 import { WebSocketService } from '../services';
-import { wsJsonToRes, capitalizeFirstLetter, toast, randomStr } from '../utils';
+import {
+  wsJsonToRes,
+  capitalizeFirstLetter,
+  toast,
+  randomStr,
+  wsSubscribe,
+} from '../utils';
 import { i18n } from '../i18next';
 
 import { MarkdownTextArea } from './markdown-textarea';
@@ -79,13 +84,8 @@ export class CommunityForm extends Component<
       };
     }
 
-    this.subscription = WebSocketService.Instance.subject
-      .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
-      .subscribe(
-        msg => this.parseMessage(msg),
-        err => console.error(err),
-        () => console.log('complete')
-      );
+    this.parseMessage = this.parseMessage.bind(this);
+    this.subscription = wsSubscribe(this.parseMessage);
   }
 
   componentDidUpdate() {
index d0ec8525af4fd332be502c10513d7c119ffeb2aa..41369a5147f74a9fdf568ad08e8203db327fa23a 100644 (file)
@@ -1,43 +1,18 @@
 import { Component } from 'inferno';
 import { Link } from 'inferno-router';
 import { i18n } from '../i18next';
-import { Subscription } from 'rxjs';
-import { retryWhen, delay, take } from 'rxjs/operators';
-import { WebSocketService } from '../services';
-import { repoUrl, wsJsonToRes, isBrowser } from '../utils';
-import {
-  UserOperation,
-  WebSocketJsonResponse,
-  GetSiteResponse,
-} from 'lemmy-js-client';
+import { repoUrl } from '../utils';
+import { GetSiteResponse } from 'lemmy-js-client';
 
-interface FooterState {
-  version: string;
+interface FooterProps {
+  site: GetSiteResponse;
 }
 
-export class Footer extends Component<any, FooterState> {
-  private wsSub: Subscription;
-  emptyState: FooterState = {
-    version: null,
-  };
+interface FooterState {}
+
+export class Footer extends Component<FooterProps, FooterState> {
   constructor(props: any, context: any) {
     super(props, context);
-
-    this.state = this.emptyState;
-
-    if (isBrowser()) {
-      this.wsSub = WebSocketService.Instance.subject
-        .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
-        .subscribe(
-          msg => this.parseMessage(msg),
-          err => console.error(err),
-          () => console.log('complete')
-        );
-    }
-  }
-
-  componentWillUnmount() {
-    this.wsSub.unsubscribe();
   }
 
   render() {
@@ -46,7 +21,7 @@ export class Footer extends Component<any, FooterState> {
         <div className="navbar-collapse">
           <ul class="navbar-nav ml-auto">
             <li class="nav-item">
-              <span class="navbar-text">{this.state.version}</span>
+              <span class="navbar-text">{this.props.site.version}</span>
             </li>
             <li className="nav-item">
               <Link className="nav-link" to="/modlog">
@@ -78,12 +53,4 @@ export class Footer extends Component<any, FooterState> {
       </nav>
     );
   }
-  parseMessage(msg: WebSocketJsonResponse) {
-    let res = wsJsonToRes(msg);
-
-    if (res.op == UserOperation.GetSite) {
-      let data = res.data as GetSiteResponse;
-      this.setState({ version: data.version });
-    }
-  }
 }
index caf8c9cfb48c9463f04d149b7f0700c07231a94e..b7c5355decb00a370520968570ad6dde7917a729 100644 (file)
@@ -1,7 +1,6 @@
 import { Component, linkEvent } from 'inferno';
 import { Helmet } from 'inferno-helmet';
 import { Subscription } from 'rxjs';
-import { retryWhen, delay, take } from 'rxjs/operators';
 import {
   LoginForm,
   RegisterForm,
@@ -14,7 +13,14 @@ import {
   Site,
 } from 'lemmy-js-client';
 import { WebSocketService, UserService } from '../services';
-import { wsJsonToRes, validEmail, toast } from '../utils';
+import {
+  wsJsonToRes,
+  validEmail,
+  toast,
+  wsSubscribe,
+  isBrowser,
+  setIsoData,
+} from '../utils';
 import { i18n } from '../i18next';
 
 interface State {
@@ -28,6 +34,7 @@ interface State {
 }
 
 export class Login extends Component<any, State> {
+  private isoData = setIsoData(this.context);
   private subscription: Subscription;
 
   emptyState: State = {
@@ -48,20 +55,7 @@ export class Login extends Component<any, State> {
     registerLoading: false,
     captcha: undefined,
     captchaPlaying: false,
-    site: {
-      id: undefined,
-      name: undefined,
-      creator_id: undefined,
-      published: undefined,
-      creator_name: undefined,
-      number_of_users: undefined,
-      number_of_posts: undefined,
-      number_of_comments: undefined,
-      number_of_communities: undefined,
-      enable_downvotes: undefined,
-      open_registration: undefined,
-      enable_nsfw: undefined,
-    },
+    site: this.isoData.site.site,
   };
 
   constructor(props: any, context: any) {
@@ -69,20 +63,18 @@ export class Login extends Component<any, State> {
 
     this.state = this.emptyState;
 
-    this.subscription = WebSocketService.Instance.subject
-      .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
-      .subscribe(
-        msg => this.parseMessage(msg),
-        err => console.error(err),
-        () => console.log('complete')
-      );
+    this.parseMessage = this.parseMessage.bind(this);
+    this.subscription = wsSubscribe(this.parseMessage);
 
-    WebSocketService.Instance.getSite();
-    WebSocketService.Instance.getCaptcha();
+    if (isBrowser()) {
+      WebSocketService.Instance.getCaptcha();
+    }
   }
 
   componentWillUnmount() {
-    this.subscription.unsubscribe();
+    if (isBrowser()) {
+      this.subscription.unsubscribe();
+    }
   }
 
   get documentTitle(): string {
index 527f21e045e463362746789269c16b9deeed1a3b..def7bb5228c3034780554a528256bb3b25454a7a 100644 (file)
@@ -1,17 +1,22 @@
 import { Component, linkEvent } from 'inferno';
 import { Helmet } from 'inferno-helmet';
 import { Subscription } from 'rxjs';
-import { retryWhen, delay, take } from 'rxjs/operators';
 import {
   UserOperation,
   LoginResponse,
   PasswordChangeForm,
   WebSocketJsonResponse,
-  GetSiteResponse,
   Site,
 } from 'lemmy-js-client';
 import { WebSocketService, UserService } from '../services';
-import { wsJsonToRes, capitalizeFirstLetter, toast } from '../utils';
+import {
+  wsJsonToRes,
+  capitalizeFirstLetter,
+  toast,
+  setIsoData,
+  isBrowser,
+  wsSubscribe,
+} from '../utils';
 import { i18n } from '../i18next';
 
 interface State {
@@ -21,6 +26,7 @@ interface State {
 }
 
 export class PasswordChange extends Component<any, State> {
+  private isoData = setIsoData(this.context);
   private subscription: Subscription;
 
   emptyState: State = {
@@ -30,7 +36,7 @@ export class PasswordChange extends Component<any, State> {
       password_verify: undefined,
     },
     loading: false,
-    site: undefined,
+    site: this.isoData.site.site,
   };
 
   constructor(props: any, context: any) {
@@ -38,26 +44,18 @@ export class PasswordChange extends Component<any, State> {
 
     this.state = this.emptyState;
 
-    this.subscription = WebSocketService.Instance.subject
-      .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
-      .subscribe(
-        msg => this.parseMessage(msg),
-        err => console.error(err),
-        () => console.log('complete')
-      );
-    WebSocketService.Instance.getSite();
+    this.parseMessage = this.parseMessage.bind(this);
+    this.subscription = wsSubscribe(this.parseMessage);
   }
 
   componentWillUnmount() {
-    this.subscription.unsubscribe();
+    if (isBrowser()) {
+      this.subscription.unsubscribe();
+    }
   }
 
   get documentTitle(): string {
-    if (this.state.site) {
-      return `${i18n.t('password_change')} - ${this.state.site.name}`;
-    } else {
-      return 'Lemmy';
-    }
+    return `${i18n.t('password_change')} - ${this.state.site.name}`;
   }
 
   render() {
@@ -153,10 +151,6 @@ export class PasswordChange extends Component<any, State> {
       this.setState(this.state);
       UserService.Instance.login(data);
       this.props.history.push('/');
-    } else if (res.op == UserOperation.GetSite) {
-      let data = res.data as GetSiteResponse;
-      this.state.site = data.site;
-      this.setState(this.state);
     }
   }
 }
index 93edfb74391f2b9dd0b02d1d99cf3e8492a9ad91..ade3740fbc89b315c35fec94caa2c72873668fd3 100644 (file)
@@ -62,7 +62,7 @@ interface PostListingState {
 
 interface PostListingProps {
   post: Post;
-  communities: Community[];
+  communities: Community[]; // TODO this should be an optional
   showCommunity?: boolean;
   showBody?: boolean;
   moderators?: CommunityUser[];
index 47aab75460ec4fe1995d50add17910face13bbe4..4f1f586f2e5ec02c5692b58e57e14ec206a8492e 100644 (file)
@@ -27,6 +27,7 @@ export class PostListings extends Component<PostListingsProps, any> {
           this.outer().map(post => (
             <>
               <PostListing
+                communities={[]}
                 post={post}
                 showCommunity={this.props.showCommunity}
                 enableDownvotes={this.props.enableDownvotes}
index 243d12e579eac09c1ff2691010af7aad17ee2fa7..18154f8e1f7dc192e68c787e8ca307a1e214476b 100644 (file)
@@ -1,12 +1,12 @@
 import { Component, linkEvent } from 'inferno';
-import { Link } from 'inferno-router';
 import {
   PrivateMessage as PrivateMessageI,
   DeletePrivateMessageForm,
   MarkPrivateMessageAsReadForm,
+  UserView,
 } from 'lemmy-js-client';
 import { WebSocketService, UserService } from '../services';
-import { mdToHtml, pictrsAvatarThumbnail, showAvatars, toast } from '../utils';
+import { mdToHtml, toast } from '../utils';
 import { MomentTime } from './moment-time';
 import { PrivateMessageForm } from './private-message-form';
 import { UserListing, UserOther } from './user-listing';
@@ -17,6 +17,7 @@ interface PrivateMessageState {
   showEdit: boolean;
   collapsed: boolean;
   viewSource: boolean;
+  recipient: UserView;
 }
 
 interface PrivateMessageProps {
@@ -32,6 +33,21 @@ export class PrivateMessage extends Component<
     showEdit: false,
     collapsed: false,
     viewSource: false,
+    recipient: {
+      id: this.props.privateMessage.recipient_id,
+      actor_id: this.props.privateMessage.recipient_actor_id,
+      name: this.props.privateMessage.recipient_name,
+      local: this.props.privateMessage.recipient_local,
+      avatar: this.props.privateMessage.recipient_avatar,
+      preferred_username: this.props.privateMessage
+        .recipient_preferred_username,
+      published: undefined,
+      number_of_posts: 0,
+      post_score: 0,
+      number_of_comments: 0,
+      comment_score: 0,
+      banned: false,
+    },
   };
 
   constructor(props: any, context: any) {
@@ -109,6 +125,7 @@ export class PrivateMessage extends Component<
           </ul>
           {this.state.showEdit && (
             <PrivateMessageForm
+              recipient={this.state.recipient}
               privateMessage={message}
               onEdit={this.handlePrivateMessageEdit}
               onCreate={this.handlePrivateMessageCreate}
@@ -215,9 +232,7 @@ export class PrivateMessage extends Component<
         </div>
         {this.state.showReply && (
           <PrivateMessageForm
-            params={{
-              recipient_id: this.props.privateMessage.creator_id,
-            }}
+            recipient={this.state.recipient}
             onCreate={this.handlePrivateMessageCreate}
           />
         )}
index f48560509527c078be27adb8a5f4c538c78ce9df..4178fa1243abd53dad05772411d1f8cc478af97f 100644 (file)
@@ -33,7 +33,10 @@ export const routes: IRoutePropsWithFetch[] = [
     component: Main,
     fetchInitialData: (auth, path) => Main.fetchInitialData(auth, path),
   },
-  { path: `/login`, component: Login },
+  {
+    path: `/login`,
+    component: Login,
+  },
   {
     path: `/create_post`,
     component: CreatePost,