GithubHelp home page GithubHelp logo

hyfen / epubjs-react-native Goto Github PK

View Code? Open in Web Editor NEW

This project forked from victorsoares96/epubjs-react-native

0.0 0.0 0.0 2.85 MB

ePub.js Reader for React Native

License: MIT License

Shell 0.03% JavaScript 0.22% Ruby 0.19% C++ 1.00% C 0.01% Objective-C 0.06% Java 2.26% TypeScript 95.47% Objective-C++ 0.53% Swift 0.01% Makefile 0.22%

epubjs-react-native's Introduction

epubjs-react-native

A digital book reader in .opf .epub format for react native using epub.js library inside a webview.

Installation

npm install @epubjs-react-native/core
yarn add @epubjs-react-native/core

follow these steps below based on the type of project you want to apply this library:

Bare Installation

npm install @epubjs-react-native/file-system react-native-fs react-native-webview react-native-gesture-handler
yarn add @epubjs-react-native/file-system react-native-fs react-native-webview react-native-gesture-handler

Expo Installation

expo install @epubjs-react-native/expo-file-system react-native-fs react-native-webview react-native-gesture-handler

If you develop for iOS use this command for install CocoaPods deps (if you use an expo managed project you don't need this)

In your ios project folder run:

npx pod install

Usage

import * as React from 'react';

import { SafeAreaView, useWindowDimensions } from 'react-native';
import { Reader, ReaderProvider } from '@epubjs-react-native/core';
// import { useFileSystem } from '@epubjs-react-native/file-system'; // for Bare React Native project
// import { useFileSystem } from '@epubjs-react-native/expo-file-system'; // for Expo project

export default function App() {
  const { width, height } = useWindowDimensions();
  return (
    <SafeAreaView>
      <ReaderProvider>
        <Reader
          src="https://s3.amazonaws.com/moby-dick/OPS/package.opf"
          width={width}
          height={height}
          fileSystem={useFileSystem}
        />
      </ReaderProvider>
    </SafeAreaView>
  );
}

Reader Params

Param Type Description
src string Can be a base64, epub, opf. Required.
width number The width of the ePub Rendition. Required.
height number The height of the ePub Rendition. Required.
fileSystem function A function that returns a FileSystem object. Required.
initialLocation ePubCfi Can be an ePubCfi or chapter url. Optional.
enableSwipe boolean Enable swipe actions. Default is true.
onSwipeLeft function Called when swipe left gesture is detected. Optional.
onSwipeRight function Called when swipe right gesture is detected. Optional.
renderLoadingFileComponent JSX.Element Render when the book is loading. Optional.
renderOpeningBookComponent JSX.Element Appears when the book is been rendering. Optional.
onStarted function Called once the book loads is started. Optional.
onReady function Called once book has been displayed. Optional.
onDisplayError function Called once book has not been displayed. Optional.
onRendered function Emit that a section has been rendered. Optional.
onResized function Called when occurred a page change. Optional.
onLocationChange function Called when occurred a page change. Optional.
onSearch function Called once when the book has been searched. Optional.
onLocationsReady function Called once the locations has been generated. Optional.
onSelected function Called once a text selection has occurred. Optional.
onMarkPressed function Called when marked text is pressed. Optional.
onOrientationChange function Called when screen orientation change is detected. Optional.
onPress function Called when the book was pressed. Optional.
onDoublePress function Called when the book was double pressed. Optional.
onBeginning function Called when the book is on the homepage. Optional.
onFinish function Called when the book is on the final page. Optional.
onLayout function Called when book layout is change. Optional.
defaultTheme object Theme object. Optional.

Hooks

useReader

useReader() is a customized hook that will return all Book states and the methods that will help you. Make sure you use it within the ReaderProvider

const { changeFontSize, goToLocation, ... } = useReader();
Methods
Method Receives Description
changeFontSize size Change font size of all elements in the book. Can be a px, pt or percent.
changeFontFamily font Change font family of all elements in the book
goToLocation cfi Go to specific location in the book
getLocations Get the total locations of the book
goPrevious Go to previous page in the book
goNext Go to next page in the book
search query Search for a specific text in the book
changeTheme theme Change active theme
getCurrentLocation Returns the current location of the book
addMark Add mark a specific cfi in the book
removeMark Remove mark a specific cfi in the book
States
  • theme: A object containing theme.
  • key: Works like a unique id for book.
  • atStart: Indicates if you are at the beginning of the book.
  • atEnd: Indicates if you are at the end of the book.
  • currentLocation: The current location of the book.
  • totalLocations: The total number of locations.
  • progress: The progress of the book.
  • isLoading: Indicates if the book is loading.
  • searchResults: Search results.

Examples

You can see the examples in these repositories:

Did you like this project? Consider sponsoring the development of this project to keep it alive! ❤️

License

MIT

epubjs-react-native's People

Contributors

devlipe avatar natesanyo avatar renovate[bot] avatar victorsoares96 avatar

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.