Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-simple-share

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-simple-share

Simple iOS share UIActivityViewController for React Native

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-simple-share

Getting started

$ npm install react-native-simple-share --save

Mostly automatic installation

$ react-native link react-native-simple-share

Manual installation

iOS
  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-simple-share and add RNSimpleShare.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNSimpleShare.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<
Cocoapods
  1. Add the RNSimpleShare plugin dependency to your Podfile, pointing at the path where NPM installed it

    pod 'RNSimpleShare', :path => '../node_modules/react-native-simple-share'
    
  2. Run pod install

NOTE: The RNSimpleShare .podspec depends on the React pod, and so in order to ensure that it can correctly use the version of React Native that your app is built with, please make sure to define the React dependency in your app's Podfile as explained here.

Usage

import RNSimpleShare from 'react-native-simple-share';
Use RNSimpleShare simply by calling:
RNSimpleShare.share({
  title: 'This is my title',
  description: 'This is my description',
  url: 'http://google.com',
  imageUrl: 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png',
  imageBase64: 'Raw base64 encoded image data'
  image: 'Name of the image in the app bundle',
  file: 'Path to file you want to share',
  subject: 'This is my subject for email', 
  excludedActivityTypes: ['postToTwitter', 'print'];
  anchor: React.findNodeHandle(this.refs.share), // iPad only
});
Note:
  • Only provide one image type to the options argument. If multiple image types are provided, image will be used.
  • Anchor is optional and only applicable for iPad. Popup will be centered by default if anchor is not provided.
  • If you decide to add a subject, it will be used; however if you don't, RNSimpleShare will seek out your app name and use that as the subject.
ExcludedActivityTypes params
  'postToFacebook'
  'postToTwitter'
  'postToFlickr'   
  'postToVimeo'     
  'postToTencentWeibo' 
  'postToWeibo'        
  'postToPinterest'
  'message' 
  'airDrop'
  'mail'             
  'assignToContact'  
  'saveToCameraRoll'  
  'addToReadingList'
  'print'           
  'copyToPasteboard'
  'openInIBooks'

Note: postToPinterest is a custom one that is created in the implementation file

License

MIT License (MIT)

Copyright (c) 2017 Jason Noah Choi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 13 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc