Coder Social home page Coder Social logo

Comments (2)

rolandin avatar rolandin commented on June 27, 2024 1

Same here, I think the component needs a prop that takes a callback that runs when the user did share succefully, at least. Idelly handle success, error and finally. As it is right now there is no way to know if the user ever shared or not to update the data base counter that displays a badge on top of the icon the developer wraps with the button:

import { TwitterShareButton } from "react-share";
import { MyTwitterXIcon } from "../my-Icons-Path";

// this is a handle that would run and update your db counter once the user actually shares
const handleShareClick = ('TwitterShared') => { .... }

// then in your render
// Right now you can do pass the handler and trigger it on click, but user might never share cancelling
<div onClick={() => handleShareClick('TwitterShared')}>
  // this is the component with the `url` prop, and `useClass` optional
  <TwitterShareButton
    url={isDevelopment ? 'https://www.google.com/' : url}
    className='relative'
    callback={ } // Developers need to pass the handler here so it runs on success
  >
    { /* this is your own Icon you can do to match your styles, now an X */ }
    <MyTwitterXIcon className="cursor-pointer hover:opacity-100" />
      { /* You can condition here the render of a badge that display the count you are storing on your db */ }
      <RenderIf isTrue={articleViewsAndShares?.TwitterShared}>
        {/* this is the badge */}
        <div className='h-4 w-auto flex justify-center items-center bg-white shadow border border-1 border-gray-200 p-1 rounded-full absolute -bottom-1 -right-2 text-gray-500 text-xxs'>
          {TwitterShared.count}
        </div>
      </RenderIf>
   </TwitterShareButton>
</div>

from react-share.

quyphan97 avatar quyphan97 commented on June 27, 2024

Yes, thank you very much, I used the FB sdk to catch the share event.

const handleShare = () => {
  window.FB.ui(
        {
          display: "popup",
          method: "share",
          href: process.env.REACT_APP_LINK_SHARE || window.location.href,
        },
        function (response: any) {
          if (response) {
           // shared success
          } else {
            // not share
          }
        }
      );
    }
  }
  <div onClick={() => handleShare()}>share</div>

from react-share.

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.