Giter Site home page Giter Site logo

Comments (8)

mahsanr44 avatar mahsanr44 commented on June 19, 2024

I have tested by using use client and it's working fine on the Client Side but I want it to be useful on the Server Side too.

from react-spinners.

davidhu2000 avatar davidhu2000 commented on June 19, 2024

i'll need to spent some time looking into how to handle the new server component paradigm. I think it's probably not working because the animation are created outside of the component

https://github.com/davidhu2000/react-spinners/blob/main/src/ClimbingBoxLoader.tsx#L7-L21

so maybe that code isn't executed after the code is sent to the client

from react-spinners.

mahsanr44 avatar mahsanr44 commented on June 19, 2024

Yeah, you're right, this could be the one of reasons.
Take your time and fix it.
Thanks

from react-spinners.

milindgoel15 avatar milindgoel15 commented on June 19, 2024

client-side animation stuff cannot be rendered on the server. They need to be marked as client component to work. Its not something that's fixable imo.

from react-spinners.

JDuqn avatar JDuqn commented on June 19, 2024

For now I just force all my loaders to be client components with a fallback for server side :

"use client"

import React, { useEffect, useState } from "react"
import { ClipLoader } from "react-spinners"

export const Loader = ({ size }: { size: number }) => {
  const [isClient, setIsClient] = useState(false)

  useEffect(() => {
    setIsClient(true)
  }, [])

  return (
    <React.Fragment>
      {isClient ? (
        <ClipLoader ... />
      ) : (
        <ServerSideSpinner ... />
      )}
    </React.Fragment>
  )
}

ServerSideSpinner is a regular spinner animated with tailwind.

Not sure this is a good approach, but it might help someone.

from react-spinners.

milindgoel15 avatar milindgoel15 commented on June 19, 2024

Don't do this, make a separate file, add "use client" tag on top, import the spinner and immediately export it as const or default (,ur choice) and import this spinner in your pages.

from react-spinners.

davidhu2000 avatar davidhu2000 commented on June 19, 2024

i haven't had time to work on this recently, but one potential approach would be add use client on top of each loader, and add a setState call for each animation. This ensures it will run on the client.

const [animation] = useState(createAnimation(...))

a quick test locally does seem to work, just need to update it all. Maybe hack on it in a coming weekend.

i thought maybe using next dynamic could do it, but the create Aniamtion still doesn't run on the client

const Loader = dynamic(() => import("react-spinners/ClimbingBoxLoader"), { ssr: false });

from react-spinners.

JDuqn avatar JDuqn commented on June 19, 2024
const [animation] = useState(createAnimation(...))

This will execute createAnimation on every render uselessly, I would advise using a callback

const [animation] = useState(() => createAnimation(...))

from react-spinners.

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.