Code Monkey home page Code Monkey logo

Comments (3)

klendi avatar klendi commented on May 26, 2024

You just install it to your project and import it? I think it should work with next.js too. Then the examples are pretty straight forward. You just have to find a solution to make the bar global. You can use redux also https://github.com/klendi/react-movies this project uses react-top-loading-bar with redux. Its a pretty nice solution. :) If it doesn't work in next.js tell me

from react-top-loading-bar.

essovius avatar essovius commented on May 26, 2024

I've added the following code to the _app.js to make it global. Currently seems like it's working but sometimes it starts over by itself after page is loaded.

import App from 'next/app'
import React, { Component } from 'react'
import { ThemeProvider } from 'styled-components'
import GlobalStyles from '../styles/GlobalStyles'
import theme from '../styles/Theme'
import Router from 'next/router'
import LoadingBar from 'react-top-loading-bar'

Router.events.on('routeChangeStart', () => LoadingBar.ref.continuousStart())
Router.events.on('routeChangeComplete', () => LoadingBar.ref.complete())
Router.events.on('routeChangeError', () => LoadingBar.ref.complete())

export default class MyApp extends App {

  static async getInitialProps ({ Component, router, ctx }) {
    let pageProps = {}
    if (Component.getInitialProps) {
      pageProps = await Component.getInitialProps(ctx)
    }
    return { pageProps }
  }

  render () {
    const { Component, pageProps } = this.props  
    return (
      <ThemeProvider theme={theme}>
        <>
        <GlobalStyles />
        <LoadingBar
          height={3}
          color='#f11946'
          onRef={r => (LoadingBar.ref = r)}
        />
        <Component {...pageProps} />
        </>
      </ThemeProvider>
    )
  }
  
}

from react-top-loading-bar.

gerkim62 avatar gerkim62 commented on May 26, 2024

"use client";

import { useEffect, useRef, useState } from "react";
import Link, { LinkProps } from "next/link";
import LoadingBar, { LoadingBarRef } from "react-top-loading-bar";
import { usePathname } from "next/navigation";

interface CustomLinkProps
extends Omit<React.AnchorHTMLAttributes, keyof LinkProps>,
LinkProps {
loaderColor?: string;
}

const CustomLink: React.FC = ({
children,
loaderColor = "#007bff",
...rest
}) => {
const [wontNavigate, setWontNavigate] = useState(false);
const loadingBarRef = useRef(null);

const { href } = rest;
const pathname = usePathname();

if (!wontNavigate && (href === pathname || href.toString().startsWith("#"))) {
setWontNavigate(true);
}

useEffect(() => {
if (loadingBarRef.current) {
loadingBarRef.current.complete();
}
}, [pathname]);

const handleClick = () => {
if (loadingBarRef.current) {
loadingBarRef.current.continuousStart(); // No error now
if (wontNavigate) {
return loadingBarRef.current.complete();
}
setTimeout(() => {
loadingBarRef.current?.complete();
}, 5000);
}
};

return (
<>
<Link {...rest} onClick={handleClick}>
{children}


</>
);
};

export default CustomLink;

this might help you to use it with nextjs

from react-top-loading-bar.

Related Issues (20)

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.