]> Untitled Git - lemmy-ui.git/commitdiff
Making front end work w/ pictrs v2. Fixes #57
authorDessalines <tyhou13@gmx.com>
Wed, 14 Oct 2020 19:36:37 +0000 (14:36 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 14 Oct 2020 19:36:37 +0000 (14:36 -0500)
src/assets/css/main.css
src/shared/components/banner-icon-header.tsx
src/shared/components/community-link.tsx
src/shared/components/navbar.tsx
src/shared/components/pictrs-image.tsx [new file with mode: 0644]
src/shared/components/post-listing.tsx
src/shared/components/user-listing.tsx
src/shared/utils.ts

index e2892669060d7c65f06cd91de7459389c7761836..c86e8ecff2e27c0c3f8ff3ace4d8143c63b9907e 100644 (file)
@@ -297,6 +297,10 @@ br.big {
   margin-top: -60px;
 }
 
+.img-icon {
+  width: 2rem; height: 2rem;
+}
+
 .tribute-container ul {
   margin: 0;
   margin-top: 2px;
index 8c0eedb39a93461581880745f2630d92163efc3e..cb84eb2f968350517404e4e3eccebfd1484ac695 100644 (file)
@@ -1,4 +1,5 @@
 import { Component } from 'inferno';
+import { PictrsImage } from './pictrs-image';
 
 interface BannerIconHeaderProps {
   banner?: string;
@@ -13,15 +14,12 @@ export class BannerIconHeader extends Component<BannerIconHeaderProps, any> {
   render() {
     return (
       <div class="position-relative mb-2">
-        {this.props.banner && (
-          <img src={this.props.banner} class="banner img-fluid" />
-        )}
+        {this.props.banner && <PictrsImage src={this.props.banner} />}
         {this.props.icon && (
-          <img
+          <PictrsImage
             src={this.props.icon}
-            className={`ml-2 mb-0 ${
-              this.props.banner ? 'avatar-pushup' : ''
-            } rounded-circle avatar-overlay`}
+            iconOverlay
+            pushup={!!this.props.banner}
           />
         )}
       </div>
index 003f61e14464b357b97500ef40315a453ed50f7b..db69f441d674a2d8ce791d8c2f4bf731a133b7e6 100644 (file)
@@ -1,7 +1,8 @@
 import { Component } from 'inferno';
 import { Link } from 'inferno-router';
 import { Community } from 'lemmy-js-client';
-import { hostname, pictrsAvatarThumbnail, showAvatars } from '../utils';
+import { hostname, showAvatars } from '../utils';
+import { PictrsImage } from './pictrs-image';
 
 interface CommunityOther {
   name: string;
@@ -47,11 +48,7 @@ export class CommunityLink extends Component<CommunityLinkProps, any> {
         to={link}
       >
         {!this.props.hideAvatar && community.icon && showAvatars() && (
-          <img
-            style="width: 2rem; height: 2rem;"
-            src={pictrsAvatarThumbnail(community.icon)}
-            class="rounded-circle mr-2"
-          />
+          <PictrsImage src={community.icon} icon />
         )}
         <span>{displayName}</span>
       </Link>
index e3c27bd6f827ce351af084eff705d95821f0a29e..04dae46012451d28863744694993f9d91589888f 100644 (file)
@@ -20,7 +20,6 @@ import {
 } from 'lemmy-js-client';
 import {
   wsJsonToRes,
-  pictrsAvatarThumbnail,
   showAvatars,
   fetchLimit,
   toast,
@@ -32,6 +31,7 @@ import {
   wsSubscribe,
 } from '../utils';
 import { i18n } from '../i18next';
+import { PictrsImage } from './pictrs-image';
 
 interface NavbarProps {
   site: GetSiteResponse;
@@ -190,12 +190,7 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
               to="/"
             >
               {this.props.site.site.icon && showAvatars() && (
-                <img
-                  src={pictrsAvatarThumbnail(this.props.site.site.icon)}
-                  height="32"
-                  width="32"
-                  class="rounded-circle mr-2"
-                />
+                <PictrsImage src={this.props.site.site.icon} icon />
               )}
               {this.props.site.site.name}
             </Link>
@@ -345,12 +340,7 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
                     >
                       <span>
                         {user.avatar && showAvatars() && (
-                          <img
-                            src={pictrsAvatarThumbnail(user.avatar)}
-                            height="32"
-                            width="32"
-                            class="rounded-circle mr-2"
-                          />
+                          <PictrsImage src={user.avatar} icon />
                         )}
                         {user.preferred_username
                           ? user.preferred_username
diff --git a/src/shared/components/pictrs-image.tsx b/src/shared/components/pictrs-image.tsx
new file mode 100644 (file)
index 0000000..471a0b7
--- /dev/null
@@ -0,0 +1,66 @@
+import { Component } from 'inferno';
+
+const iconThumbnailSize = 96;
+const thumbnailSize = 256;
+
+interface PictrsImageProps {
+  src: string;
+  icon?: boolean;
+  thumbnail?: boolean;
+  nsfw?: boolean;
+  iconOverlay?: boolean;
+  pushup?: boolean;
+}
+
+export class PictrsImage extends Component<PictrsImageProps, any> {
+  constructor(props: any, context: any) {
+    super(props, context);
+  }
+
+  render() {
+    return (
+      <picture>
+        <source srcSet={this.src('webp')} type="image/webp" />
+        <source srcSet={this.src('jpg')} type="image/jpeg" />
+        <img
+          src={this.src('jpg')}
+          className={`img-fluid 
+        ${this.props.thumbnail ? 'thumbnail rounded ' : 'img-expanded '} 
+        ${this.props.thumbnail && this.props.nsfw && 'img-blur '}
+        ${this.props.icon && 'rounded-circle img-icon mr-2 '}
+        ${this.props.iconOverlay && 'ml-2 mb-0 rounded-circle avatar-overlay '}
+        ${this.props.pushup && 'avatar-pushup '}
+        `}
+        />
+      </picture>
+    );
+  }
+
+  src(format: string): string {
+    // sample url:
+    // http://localhost:8535/pictrs/image/file.png?thumbnail=256&format=jpg
+
+    let split = this.props.src.split('/pictrs/image/');
+
+    // If theres not multiple, then its not a pictrs image
+    if (split.length == 1) {
+      return this.props.src;
+    }
+
+    let host = split[0];
+    let path = split[1];
+
+    let params = { format };
+
+    if (this.props.thumbnail) {
+      params['thumbnail'] = thumbnailSize;
+    } else if (this.props.icon) {
+      params['thumbnail'] = iconThumbnailSize;
+    }
+
+    let paramsStr = `?${new URLSearchParams(params).toString()}`;
+    let out = `${host}/pictrs/image/${path}${paramsStr}`;
+
+    return out;
+  }
+}
index 52c40d4de9177c88329c07c90214dbf366788461..6545b2a57f142b9cc60112f1f9d698a1c15a498b 100644 (file)
@@ -24,6 +24,7 @@ import { PostForm } from './post-form';
 import { IFramelyCard } from './iframely-card';
 import { UserListing } from './user-listing';
 import { CommunityLink } from './community-link';
+import { PictrsImage } from './pictrs-image';
 import {
   md,
   mdToHtml,
@@ -32,7 +33,6 @@ import {
   isImage,
   isVideo,
   getUnixTime,
-  pictrsImage,
   setupTippy,
   hostname,
   previewLines,
@@ -164,27 +164,26 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
   imgThumb(src: string) {
     let post = this.props.post;
     return (
-      <img
-        className={`img-fluid thumbnail rounded ${
-          post.nsfw || post.community_nsfw ? 'img-blur' : ''
-        }`}
+      <PictrsImage
         src={src}
+        thumbnail
+        nsfw={post.nsfw || post.community_nsfw}
       />
     );
   }
 
-  getImage(thumbnail: boolean = false) {
+  getImageSrc(): string {
     let post = this.props.post;
     if (isImage(post.url)) {
       if (post.url.includes('pictrs')) {
-        return pictrsImage(post.url, thumbnail);
+        return post.url;
       } else if (post.thumbnail_url) {
-        return pictrsImage(post.thumbnail_url, thumbnail);
+        return post.thumbnail_url;
       } else {
         return post.url;
       }
     } else if (post.thumbnail_url) {
-      return pictrsImage(post.thumbnail_url, thumbnail);
+      return post.thumbnail_url;
     } else {
       return null;
     }
@@ -200,7 +199,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
           data-tippy-content={i18n.t('expand_here')}
           onClick={linkEvent(this, this.handleImageExpandClick)}
         >
-          {this.imgThumb(this.getImage(true))}
+          {this.imgThumb(this.getImageSrc())}
           <svg class="icon mini-overlay">
             <use xlinkHref="#icon-image"></use>
           </svg>
@@ -215,7 +214,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
           rel="noopener"
           title={post.url}
         >
-          {this.imgThumb(this.getImage(true))}
+          {this.imgThumb(this.getImageSrc())}
           <svg class="icon mini-overlay">
             <use xlinkHref="#icon-external-link"></use>
           </svg>
@@ -442,7 +441,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
                     class="pointer"
                     onClick={linkEvent(this, this.handleImageExpandClick)}
                   >
-                    <img class="img-fluid img-expanded" src={this.getImage()} />
+                    <PictrsImage src={this.getImageSrc()} />
                   </span>
                 </div>
               </span>
index fd296faddce8a2b019a830ed0c8769810404b3a9..1b97dbb25078552f7834827af8f6f0fb3990ca05 100644 (file)
@@ -1,13 +1,9 @@
 import { Component } from 'inferno';
 import { Link } from 'inferno-router';
 import { UserView } from 'lemmy-js-client';
-import {
-  pictrsAvatarThumbnail,
-  showAvatars,
-  hostname,
-  isCakeDay,
-} from '../utils';
+import { showAvatars, hostname, isCakeDay } from '../utils';
 import { CakeDay } from './cake-day';
+import { PictrsImage } from './pictrs-image';
 
 export interface UserOther {
   name: string;
@@ -59,11 +55,7 @@ export class UserListing extends Component<UserListingProps, any> {
           to={link}
         >
           {!this.props.hideAvatar && user.avatar && showAvatars() && (
-            <img
-              style="width: 2rem; height: 2rem;"
-              src={pictrsAvatarThumbnail(user.avatar)}
-              class="rounded-circle mr-2"
-            />
+            <PictrsImage src={user.avatar} icon />
           )}
           <span>{displayName}</span>
         </Link>
index 5b14f0db9111f96cfb94e956b9a098cf986a43f5..9bc9b230a4219fe664a07e2c5738159e28d8427b 100644 (file)
@@ -491,15 +491,6 @@ export function objectFlip(obj: any) {
   return ret;
 }
 
-export function pictrsAvatarThumbnail(src: string): string {
-  // sample url: http://localhost:8535/pictrs/image/thumbnail256/gs7xuu.jpg
-  let split = src.split('/pictrs/image');
-  let out = `${split[0]}/pictrs/image/${
-    canUseWebP() ? 'webp/' : ''
-  }thumbnail96${split[1]}`;
-  return out;
-}
-
 export function showAvatars(): boolean {
   return (
     (UserService.Instance.user && UserService.Instance.user.show_avatars) ||
@@ -520,23 +511,6 @@ export function isCakeDay(published: string): boolean {
   );
 }
 
-// Converts to image thumbnail
-export function pictrsImage(hash: string, thumbnail: boolean = false): string {
-  let root = `/pictrs/image`;
-
-  // Necessary for other servers / domains
-  if (hash.includes('pictrs')) {
-    let split = hash.split('/pictrs/image/');
-    root = `${split[0]}/pictrs/image`;
-    hash = split[1];
-  }
-
-  let out = `${root}/${canUseWebP() ? 'webp/' : ''}${
-    thumbnail ? 'thumbnail256/' : ''
-  }${hash}`;
-  return out;
-}
-
 export function isCommentType(
   item: Comment | PrivateMessage | Post
 ): item is Comment {
@@ -1090,23 +1064,6 @@ export function hostname(url: string): string {
   return cUrl.port ? `${cUrl.hostname}:${cUrl.port}` : `${cUrl.hostname}`;
 }
 
-function canUseWebP() {
-  // TODO pictshare might have a webp conversion bug, try disabling this
-  return false;
-
-  // var elem = document.createElement('canvas');
-  // if (!!(elem.getContext && elem.getContext('2d'))) {
-  //   var testString = !(window.mozInnerScreenX == null) ? 'png' : 'webp';
-  //   // was able or not to get WebP representation
-  //   return (
-  //     elem.toDataURL('image/webp').startsWith('data:image/' + testString)
-  //   );
-  // }
-
-  // // very old browser like IE 8, canvas not supported
-  // return false;
-}
-
 export function validTitle(title?: string): boolean {
   // Initial title is null, minimum length is taken care of by textarea's minLength={3}
   if (title === null || title.length < 3) return true;