Giter Site home page Giter Site logo

yaledevuni / comics-web-reader Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 1.0 132 KB

web based file reader( comics viewer )

Home Page: https://viewer.yesyeil.ca

License: MIT License

CSS 0.30% TypeScript 99.19% JavaScript 0.51%
comics-reader jszip nextjs reactjs webbased webpack zipfile

comics-web-reader's Introduction

๐Ÿ’ซ About Me:

I'm 4th year Com-Sci student in University of Victoria*^_^*.

Visit my portfolio website: www.yaledevworld.com

๐ŸŒ Socials:

LinkedIn

๐Ÿ’ป Tech Stack:

C Flutter TailwindCSS Python Java
HTML5 CSS3 TypeScript Django Next JS
React LINUX JavaScript Dart

๐Ÿ“Š GitHub Stats:



๐Ÿ† GitHub Trophies

๐Ÿ” Top Contributed Repo

โœ๏ธ Random Dev Quote


comics-web-reader's People

Contributors

joshyykim avatar yaledevuni avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

joshyykim

comics-web-reader's Issues

Add universal setting on the navigation bar

  • Add setting icon on the nav bar
  • Add setting page for universal setting
  • Add reversed page option in the setting

Look up local storage or link query to handle setting options to pass entire application

Rerendering cover images in main page when other states change

Proposed solution: Instead of using Blob in image src directly, use useEffect for Blob dependency.
Example:

  useEffect(() => {
    const fetchBook = async () => {
      const bookId = parseInt(searchParams.get("index") as string, 10);
      const fetchedBook = await db.books.get(bookId);
      setBook(fetchedBook as Book);
      // Create Blob URL once when the book is fetched
      const blobURL = URL.createObjectURL(
        new Blob([fetchedBook?.image as BlobPart], {
          type: "image/webp",
        })
      );
      setImageSrc(blobURL);
    };
    fetchBook();
  }, []);

File Info page

Before viewer page(ex. /info/viewer), set new page for config file info

V 0.3.1 upcomming features

  • File picker support not only zip but also image(jpeg, png, webp, and ect...)
  • File picker support Folder with images( ext. as above)
  • Filter library by keyword, or seriese.
  • Resume file's index

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.