0.0.6 • Published 9 years ago

react-social-share v0.0.6

Weekly downloads
38
License
MIT
Repository
github
Last release
9 years ago

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

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago