Skip to content

gsuveti/react-social

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-social-share

Simple React components for social (Facebook, Twitter and Pinterest and more) buttons and counts.

Install

npm install react-social --save

Example

import { FacebookButton, FacebookCount } from "react-social";

class App {
  render {
    let url = "https://github.com";

    return (
      <FacebookButton url={url}>
        <FacebookCount url={url} />
        {" Share " + url}
      </FacebookButton>
    );
  }
}

Count (FacebookCount, TwitterCount, PinterestCount, VKontakteCount) API

Props

element

Change the element the component renders into, default is span.

url

The url you want to get the count of, default is window.location.

Methods

getCount()

Return the social count.

Button (FacebookButton, TwitterButton, PinterestButton, VKontakteButton) API

Props

element

Change the element the component renders into, default is button.

url

The url you want to share, default is window.location.

message (only TwitterButton and FacebookButton)

A message that's prepended before the url, works only with FacebookButton and TwitterButton.

media (required for Pinterest)

Url of an image, is required for PinterestButton and only works with PinterestButton.

Styles

There are no styles included, the components pass all their props down to their element like className and style so you can easily style them yourself.

Notice

When rendered server side all counts will be 0 since they depend on jsonp.

Contributors

  • Ola Holmström (@olahol)
  • Alexandr Sugak (@AlexSugak)
  • Jon Principe (@jprincipe)

MIT Licensed

About

Simple React components for social buttons (Facebook, Twitter and Pinterest) and social counts.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published