├── .gitignore ├── .npmignore ├── README.md ├── RNCalendar ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── index.ios.js ├── ios │ ├── RNCalendar.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── RNCalendar.xcscheme │ ├── RNCalendar │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── RNCalendarTests │ │ ├── Info.plist │ │ └── RNCalendarTests.m └── package.json ├── index.js ├── package.json ├── screenshot.png └── style.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | npm-debug.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | RNCalendar 2 | node_modules 3 | .idea 4 | npm-debug.log 5 | screenshot.png 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | rn-calendars 2 | --- 3 | 4 | [![NPM version][npm-image]][npm-url] 5 | [![npm download][download-image]][download-url] 6 | 7 | [npm-image]: http://img.shields.io/npm/v/rn-calendars.svg?style=flat-square 8 | [npm-url]: http://npmjs.org/package/rn-calendars 9 | [download-image]: https://img.shields.io/npm/dm/rn-calendars.svg?style=flat-square 10 | [download-url]: https://npmjs.org/package/rn-calendars 11 | 12 | An extensible calendar component for react-native. 13 | 14 | ## Install 15 | 16 | ``` 17 | npm i rn-calendars --save 18 | ``` 19 | 20 | ## Usage 21 | 22 | ```js 23 | var React = require('react-native'); 24 | var Calendar = require('rn-calendars'); 25 | 26 | module.exports = React.createClass({ 27 | render () { 28 | return (); 29 | } 30 | }); 31 | ``` 32 | 33 | ## Props 34 | 35 | Property | Description | Type | Default | note 36 | ----------|-------------|------|---------|------ 37 | startDate | the date of first shown month. | string | new Date() | 38 | headings | headings of the calendar | array | `['S', 'M', 'T', 'W', 'T', 'F', 'S']` | 39 | renderDay | customize render function of days in the calendar. | func | just render the date | 40 | selectDay | do something after choose one day | func | `console.log(date)` | works only when the `renderDay` function is not customized. 41 | scrollEnabled | could scroll the calendar or not | bool | false | 42 | 43 | ## Example 44 | 45 | View [RNCalendar](RNCalendar). 46 | 47 | ### ScreenShot 48 | 49 | 50 | 51 | ## Acknowledgement 52 | 53 | Thanks to [react-native-calendar](https://github.com/christopherdro/react-native-calendar). 54 | 55 | ## License 56 | 57 | The MIT License 58 | -------------------------------------------------------------------------------- /RNCalendar/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | # We fork some components by platform. 4 | .*/*.web.js 5 | .*/*.android.js 6 | 7 | # Some modules have their own node_modules with overlap 8 | .*/node_modules/node-haste/.* 9 | 10 | # Ignore react-tools where there are overlaps, but don't ignore anything that 11 | # react-native relies on 12 | .*/node_modules/react-tools/src/React.js 13 | .*/node_modules/react-tools/src/renderers/shared/event/EventPropagators.js 14 | .*/node_modules/react-tools/src/renderers/shared/event/eventPlugins/ResponderEventPlugin.js 15 | .*/node_modules/react-tools/src/shared/vendor/core/ExecutionEnvironment.js 16 | 17 | # Ignore commoner tests 18 | .*/node_modules/commoner/test/.* 19 | 20 | # See https://github.com/facebook/flow/issues/442 21 | .*/react-tools/node_modules/commoner/lib/reader.js 22 | 23 | # Ignore jest 24 | .*/node_modules/jest-cli/.* 25 | 26 | # Ignore Website 27 | .*/website/.* 28 | 29 | [include] 30 | 31 | [libs] 32 | node_modules/react-native/Libraries/react-native/react-native-interface.js 33 | 34 | [options] 35 | module.system=haste 36 | 37 | munge_underscores=true 38 | 39 | module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub' 40 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.png$' -> 'RelativeImageStub' 41 | 42 | suppress_type=$FlowIssue 43 | suppress_type=$FlowFixMe 44 | suppress_type=$FixMe 45 | 46 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-7]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 47 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-7]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+ 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 49 | 50 | [version] 51 | 0.17.0 52 | -------------------------------------------------------------------------------- /RNCalendar/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | .idea 28 | .gradle 29 | local.properties 30 | 31 | # node.js 32 | # 33 | node_modules/ 34 | npm-debug.log 35 | android 36 | 37 | index.android.js 38 | main.jsbundle 39 | fakedata.js 40 | Calendar.js 41 | style.js 42 | -------------------------------------------------------------------------------- /RNCalendar/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /RNCalendar/index.ios.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var React = require('react-native'); 4 | var moment = require('moment'); 5 | var Calendar = require('rn-calendars'); 6 | 7 | var { 8 | AppRegistry, 9 | StyleSheet, 10 | Text, 11 | View, 12 | TouchableOpacity 13 | } = React; 14 | 15 | var RNCalendar = React.createClass({ 16 | render: function() { 17 | return ( 18 | 19 | { 24 | console.log('Day: ', day); 25 | }} 26 | /> 27 | 28 | ); 29 | } 30 | }); 31 | 32 | var styles = StyleSheet.create({ 33 | container: { 34 | flex: 1, 35 | paddingTop: 20 36 | } 37 | }); 38 | 39 | AppRegistry.registerComponent('RNCalendar', () => RNCalendar); 40 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 47; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* RNCalendarTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNCalendarTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 25 | /* End PBXBuildFile section */ 26 | 27 | /* Begin PBXContainerItemProxy section */ 28 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 31 | proxyType = 2; 32 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 33 | remoteInfo = RCTActionSheet; 34 | }; 35 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 36 | isa = PBXContainerItemProxy; 37 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 38 | proxyType = 2; 39 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 40 | remoteInfo = RCTGeolocation; 41 | }; 42 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 43 | isa = PBXContainerItemProxy; 44 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 45 | proxyType = 2; 46 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 47 | remoteInfo = RCTImage; 48 | }; 49 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 50 | isa = PBXContainerItemProxy; 51 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 52 | proxyType = 2; 53 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 54 | remoteInfo = RCTNetwork; 55 | }; 56 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 57 | isa = PBXContainerItemProxy; 58 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 59 | proxyType = 2; 60 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 61 | remoteInfo = RCTVibration; 62 | }; 63 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 64 | isa = PBXContainerItemProxy; 65 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 66 | proxyType = 1; 67 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 68 | remoteInfo = RNCalendar; 69 | }; 70 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 71 | isa = PBXContainerItemProxy; 72 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 73 | proxyType = 2; 74 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 75 | remoteInfo = RCTSettings; 76 | }; 77 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 78 | isa = PBXContainerItemProxy; 79 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 80 | proxyType = 2; 81 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 82 | remoteInfo = RCTWebSocket; 83 | }; 84 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 85 | isa = PBXContainerItemProxy; 86 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 87 | proxyType = 2; 88 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 89 | remoteInfo = React; 90 | }; 91 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 92 | isa = PBXContainerItemProxy; 93 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 94 | proxyType = 2; 95 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 96 | remoteInfo = RCTLinking; 97 | }; 98 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 99 | isa = PBXContainerItemProxy; 100 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 101 | proxyType = 2; 102 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 103 | remoteInfo = RCTText; 104 | }; 105 | /* End PBXContainerItemProxy section */ 106 | 107 | /* Begin PBXFileReference section */ 108 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 109 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 110 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 111 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 112 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 113 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 114 | 00E356EE1AD99517003FC87E /* RNCalendarTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNCalendarTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 115 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 116 | 00E356F21AD99517003FC87E /* RNCalendarTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNCalendarTests.m; sourceTree = ""; }; 117 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 118 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 119 | 13B07F961A680F5B00A75B9A /* RNCalendar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNCalendar.app; sourceTree = BUILT_PRODUCTS_DIR; }; 120 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNCalendar/AppDelegate.h; sourceTree = ""; }; 121 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = RNCalendar/AppDelegate.m; sourceTree = ""; }; 122 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 123 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNCalendar/Images.xcassets; sourceTree = ""; }; 124 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNCalendar/Info.plist; sourceTree = ""; }; 125 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNCalendar/main.m; sourceTree = ""; }; 126 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 127 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 128 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 129 | /* End PBXFileReference section */ 130 | 131 | /* Begin PBXFrameworksBuildPhase section */ 132 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 133 | isa = PBXFrameworksBuildPhase; 134 | buildActionMask = 2147483647; 135 | files = ( 136 | ); 137 | runOnlyForDeploymentPostprocessing = 0; 138 | }; 139 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 140 | isa = PBXFrameworksBuildPhase; 141 | buildActionMask = 2147483647; 142 | files = ( 143 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 144 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 145 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 146 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 147 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 148 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 149 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 150 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 151 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 152 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 153 | ); 154 | runOnlyForDeploymentPostprocessing = 0; 155 | }; 156 | /* End PBXFrameworksBuildPhase section */ 157 | 158 | /* Begin PBXGroup section */ 159 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 163 | ); 164 | name = Products; 165 | sourceTree = ""; 166 | }; 167 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 168 | isa = PBXGroup; 169 | children = ( 170 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 171 | ); 172 | name = Products; 173 | sourceTree = ""; 174 | }; 175 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 179 | ); 180 | name = Products; 181 | sourceTree = ""; 182 | }; 183 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 187 | ); 188 | name = Products; 189 | sourceTree = ""; 190 | }; 191 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 192 | isa = PBXGroup; 193 | children = ( 194 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 195 | ); 196 | name = Products; 197 | sourceTree = ""; 198 | }; 199 | 00E356EF1AD99517003FC87E /* RNCalendarTests */ = { 200 | isa = PBXGroup; 201 | children = ( 202 | 00E356F21AD99517003FC87E /* RNCalendarTests.m */, 203 | 00E356F01AD99517003FC87E /* Supporting Files */, 204 | ); 205 | path = RNCalendarTests; 206 | sourceTree = ""; 207 | }; 208 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 209 | isa = PBXGroup; 210 | children = ( 211 | 00E356F11AD99517003FC87E /* Info.plist */, 212 | ); 213 | name = "Supporting Files"; 214 | sourceTree = ""; 215 | }; 216 | 139105B71AF99BAD00B5F7CC /* Products */ = { 217 | isa = PBXGroup; 218 | children = ( 219 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 220 | ); 221 | name = Products; 222 | sourceTree = ""; 223 | }; 224 | 139FDEE71B06529A00C62182 /* Products */ = { 225 | isa = PBXGroup; 226 | children = ( 227 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 228 | ); 229 | name = Products; 230 | sourceTree = ""; 231 | }; 232 | 13B07FAE1A68108700A75B9A /* RNCalendar */ = { 233 | isa = PBXGroup; 234 | children = ( 235 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 236 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 237 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 238 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 239 | 13B07FB61A68108700A75B9A /* Info.plist */, 240 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 241 | 13B07FB71A68108700A75B9A /* main.m */, 242 | ); 243 | name = RNCalendar; 244 | sourceTree = ""; 245 | }; 246 | 146834001AC3E56700842450 /* Products */ = { 247 | isa = PBXGroup; 248 | children = ( 249 | 146834041AC3E56700842450 /* libReact.a */, 250 | ); 251 | name = Products; 252 | sourceTree = ""; 253 | }; 254 | 78C398B11ACF4ADC00677621 /* Products */ = { 255 | isa = PBXGroup; 256 | children = ( 257 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 258 | ); 259 | name = Products; 260 | sourceTree = ""; 261 | }; 262 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 263 | isa = PBXGroup; 264 | children = ( 265 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 266 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 267 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 268 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 269 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 270 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 271 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 272 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 273 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 274 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 275 | ); 276 | name = Libraries; 277 | sourceTree = ""; 278 | }; 279 | 832341B11AAA6A8300B99B32 /* Products */ = { 280 | isa = PBXGroup; 281 | children = ( 282 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 283 | ); 284 | name = Products; 285 | sourceTree = ""; 286 | }; 287 | 83CBB9F61A601CBA00E9B192 = { 288 | isa = PBXGroup; 289 | children = ( 290 | 13B07FAE1A68108700A75B9A /* RNCalendar */, 291 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 292 | 00E356EF1AD99517003FC87E /* RNCalendarTests */, 293 | 83CBBA001A601CBA00E9B192 /* Products */, 294 | ); 295 | indentWidth = 2; 296 | sourceTree = ""; 297 | tabWidth = 2; 298 | }; 299 | 83CBBA001A601CBA00E9B192 /* Products */ = { 300 | isa = PBXGroup; 301 | children = ( 302 | 13B07F961A680F5B00A75B9A /* RNCalendar.app */, 303 | 00E356EE1AD99517003FC87E /* RNCalendarTests.xctest */, 304 | ); 305 | name = Products; 306 | sourceTree = ""; 307 | }; 308 | /* End PBXGroup section */ 309 | 310 | /* Begin PBXNativeTarget section */ 311 | 00E356ED1AD99517003FC87E /* RNCalendarTests */ = { 312 | isa = PBXNativeTarget; 313 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNCalendarTests" */; 314 | buildPhases = ( 315 | 00E356EA1AD99517003FC87E /* Sources */, 316 | 00E356EB1AD99517003FC87E /* Frameworks */, 317 | 00E356EC1AD99517003FC87E /* Resources */, 318 | ); 319 | buildRules = ( 320 | ); 321 | dependencies = ( 322 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 323 | ); 324 | name = RNCalendarTests; 325 | productName = RNCalendarTests; 326 | productReference = 00E356EE1AD99517003FC87E /* RNCalendarTests.xctest */; 327 | productType = "com.apple.product-type.bundle.unit-test"; 328 | }; 329 | 13B07F861A680F5B00A75B9A /* RNCalendar */ = { 330 | isa = PBXNativeTarget; 331 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNCalendar" */; 332 | buildPhases = ( 333 | 13B07F871A680F5B00A75B9A /* Sources */, 334 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 335 | 13B07F8E1A680F5B00A75B9A /* Resources */, 336 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 337 | ); 338 | buildRules = ( 339 | ); 340 | dependencies = ( 341 | ); 342 | name = RNCalendar; 343 | productName = "Hello World"; 344 | productReference = 13B07F961A680F5B00A75B9A /* RNCalendar.app */; 345 | productType = "com.apple.product-type.application"; 346 | }; 347 | /* End PBXNativeTarget section */ 348 | 349 | /* Begin PBXProject section */ 350 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 351 | isa = PBXProject; 352 | attributes = { 353 | LastUpgradeCheck = 0710; 354 | ORGANIZATIONNAME = Facebook; 355 | TargetAttributes = { 356 | 00E356ED1AD99517003FC87E = { 357 | CreatedOnToolsVersion = 6.2; 358 | TestTargetID = 13B07F861A680F5B00A75B9A; 359 | }; 360 | }; 361 | }; 362 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNCalendar" */; 363 | compatibilityVersion = "Xcode 6.3"; 364 | developmentRegion = English; 365 | hasScannedForEncodings = 0; 366 | knownRegions = ( 367 | en, 368 | Base, 369 | ); 370 | mainGroup = 83CBB9F61A601CBA00E9B192; 371 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 372 | projectDirPath = ""; 373 | projectReferences = ( 374 | { 375 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 376 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 377 | }, 378 | { 379 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 380 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 381 | }, 382 | { 383 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 384 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 385 | }, 386 | { 387 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 388 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 389 | }, 390 | { 391 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 392 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 393 | }, 394 | { 395 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 396 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 397 | }, 398 | { 399 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 400 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 401 | }, 402 | { 403 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 404 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 405 | }, 406 | { 407 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 408 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 409 | }, 410 | { 411 | ProductGroup = 146834001AC3E56700842450 /* Products */; 412 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 413 | }, 414 | ); 415 | projectRoot = ""; 416 | targets = ( 417 | 13B07F861A680F5B00A75B9A /* RNCalendar */, 418 | 00E356ED1AD99517003FC87E /* RNCalendarTests */, 419 | ); 420 | }; 421 | /* End PBXProject section */ 422 | 423 | /* Begin PBXReferenceProxy section */ 424 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 425 | isa = PBXReferenceProxy; 426 | fileType = archive.ar; 427 | path = libRCTActionSheet.a; 428 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 429 | sourceTree = BUILT_PRODUCTS_DIR; 430 | }; 431 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 432 | isa = PBXReferenceProxy; 433 | fileType = archive.ar; 434 | path = libRCTGeolocation.a; 435 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 436 | sourceTree = BUILT_PRODUCTS_DIR; 437 | }; 438 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 439 | isa = PBXReferenceProxy; 440 | fileType = archive.ar; 441 | path = libRCTImage.a; 442 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 443 | sourceTree = BUILT_PRODUCTS_DIR; 444 | }; 445 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 446 | isa = PBXReferenceProxy; 447 | fileType = archive.ar; 448 | path = libRCTNetwork.a; 449 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 450 | sourceTree = BUILT_PRODUCTS_DIR; 451 | }; 452 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 453 | isa = PBXReferenceProxy; 454 | fileType = archive.ar; 455 | path = libRCTVibration.a; 456 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 457 | sourceTree = BUILT_PRODUCTS_DIR; 458 | }; 459 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 460 | isa = PBXReferenceProxy; 461 | fileType = archive.ar; 462 | path = libRCTSettings.a; 463 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 464 | sourceTree = BUILT_PRODUCTS_DIR; 465 | }; 466 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 467 | isa = PBXReferenceProxy; 468 | fileType = archive.ar; 469 | path = libRCTWebSocket.a; 470 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 471 | sourceTree = BUILT_PRODUCTS_DIR; 472 | }; 473 | 146834041AC3E56700842450 /* libReact.a */ = { 474 | isa = PBXReferenceProxy; 475 | fileType = archive.ar; 476 | path = libReact.a; 477 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 478 | sourceTree = BUILT_PRODUCTS_DIR; 479 | }; 480 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 481 | isa = PBXReferenceProxy; 482 | fileType = archive.ar; 483 | path = libRCTLinking.a; 484 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 485 | sourceTree = BUILT_PRODUCTS_DIR; 486 | }; 487 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 488 | isa = PBXReferenceProxy; 489 | fileType = archive.ar; 490 | path = libRCTText.a; 491 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 492 | sourceTree = BUILT_PRODUCTS_DIR; 493 | }; 494 | /* End PBXReferenceProxy section */ 495 | 496 | /* Begin PBXResourcesBuildPhase section */ 497 | 00E356EC1AD99517003FC87E /* Resources */ = { 498 | isa = PBXResourcesBuildPhase; 499 | buildActionMask = 2147483647; 500 | files = ( 501 | ); 502 | runOnlyForDeploymentPostprocessing = 0; 503 | }; 504 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 505 | isa = PBXResourcesBuildPhase; 506 | buildActionMask = 2147483647; 507 | files = ( 508 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 509 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 510 | ); 511 | runOnlyForDeploymentPostprocessing = 0; 512 | }; 513 | /* End PBXResourcesBuildPhase section */ 514 | 515 | /* Begin PBXShellScriptBuildPhase section */ 516 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 517 | isa = PBXShellScriptBuildPhase; 518 | buildActionMask = 2147483647; 519 | files = ( 520 | ); 521 | inputPaths = ( 522 | ); 523 | name = "Bundle React Native code and images"; 524 | outputPaths = ( 525 | ); 526 | runOnlyForDeploymentPostprocessing = 0; 527 | shellPath = /bin/sh; 528 | shellScript = "../node_modules/react-native/packager/react-native-xcode.sh"; 529 | }; 530 | /* End PBXShellScriptBuildPhase section */ 531 | 532 | /* Begin PBXSourcesBuildPhase section */ 533 | 00E356EA1AD99517003FC87E /* Sources */ = { 534 | isa = PBXSourcesBuildPhase; 535 | buildActionMask = 2147483647; 536 | files = ( 537 | 00E356F31AD99517003FC87E /* RNCalendarTests.m in Sources */, 538 | ); 539 | runOnlyForDeploymentPostprocessing = 0; 540 | }; 541 | 13B07F871A680F5B00A75B9A /* Sources */ = { 542 | isa = PBXSourcesBuildPhase; 543 | buildActionMask = 2147483647; 544 | files = ( 545 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 546 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 547 | ); 548 | runOnlyForDeploymentPostprocessing = 0; 549 | }; 550 | /* End PBXSourcesBuildPhase section */ 551 | 552 | /* Begin PBXTargetDependency section */ 553 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 554 | isa = PBXTargetDependency; 555 | target = 13B07F861A680F5B00A75B9A /* RNCalendar */; 556 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 557 | }; 558 | /* End PBXTargetDependency section */ 559 | 560 | /* Begin PBXVariantGroup section */ 561 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 562 | isa = PBXVariantGroup; 563 | children = ( 564 | 13B07FB21A68108700A75B9A /* Base */, 565 | ); 566 | name = LaunchScreen.xib; 567 | path = RNCalendar; 568 | sourceTree = ""; 569 | }; 570 | /* End PBXVariantGroup section */ 571 | 572 | /* Begin XCBuildConfiguration section */ 573 | 00E356F61AD99517003FC87E /* Debug */ = { 574 | isa = XCBuildConfiguration; 575 | buildSettings = { 576 | BUNDLE_LOADER = "$(TEST_HOST)"; 577 | FRAMEWORK_SEARCH_PATHS = ( 578 | "$(SDKROOT)/Developer/Library/Frameworks", 579 | "$(inherited)", 580 | ); 581 | GCC_PREPROCESSOR_DEFINITIONS = ( 582 | "DEBUG=1", 583 | "$(inherited)", 584 | ); 585 | INFOPLIST_FILE = RNCalendarTests/Info.plist; 586 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 587 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 588 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 589 | PRODUCT_NAME = "$(TARGET_NAME)"; 590 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNCalendar.app/RNCalendar"; 591 | }; 592 | name = Debug; 593 | }; 594 | 00E356F71AD99517003FC87E /* Release */ = { 595 | isa = XCBuildConfiguration; 596 | buildSettings = { 597 | BUNDLE_LOADER = "$(TEST_HOST)"; 598 | COPY_PHASE_STRIP = NO; 599 | FRAMEWORK_SEARCH_PATHS = ( 600 | "$(SDKROOT)/Developer/Library/Frameworks", 601 | "$(inherited)", 602 | ); 603 | INFOPLIST_FILE = RNCalendarTests/Info.plist; 604 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 605 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 606 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 607 | PRODUCT_NAME = "$(TARGET_NAME)"; 608 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNCalendar.app/RNCalendar"; 609 | }; 610 | name = Release; 611 | }; 612 | 13B07F941A680F5B00A75B9A /* Debug */ = { 613 | isa = XCBuildConfiguration; 614 | buildSettings = { 615 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 616 | DEAD_CODE_STRIPPING = NO; 617 | HEADER_SEARCH_PATHS = ( 618 | "$(inherited)", 619 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 620 | "$(SRCROOT)/../node_modules/react-native/React/**", 621 | ); 622 | INFOPLIST_FILE = RNCalendar/Info.plist; 623 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 624 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 625 | OTHER_LDFLAGS = "-ObjC"; 626 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 627 | PRODUCT_NAME = RNCalendar; 628 | }; 629 | name = Debug; 630 | }; 631 | 13B07F951A680F5B00A75B9A /* Release */ = { 632 | isa = XCBuildConfiguration; 633 | buildSettings = { 634 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 635 | HEADER_SEARCH_PATHS = ( 636 | "$(inherited)", 637 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 638 | "$(SRCROOT)/../node_modules/react-native/React/**", 639 | ); 640 | INFOPLIST_FILE = RNCalendar/Info.plist; 641 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 642 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 643 | OTHER_LDFLAGS = "-ObjC"; 644 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 645 | PRODUCT_NAME = RNCalendar; 646 | }; 647 | name = Release; 648 | }; 649 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 650 | isa = XCBuildConfiguration; 651 | buildSettings = { 652 | ALWAYS_SEARCH_USER_PATHS = NO; 653 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 654 | CLANG_CXX_LIBRARY = "libc++"; 655 | CLANG_ENABLE_MODULES = YES; 656 | CLANG_ENABLE_OBJC_ARC = YES; 657 | CLANG_WARN_BOOL_CONVERSION = YES; 658 | CLANG_WARN_CONSTANT_CONVERSION = YES; 659 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 660 | CLANG_WARN_EMPTY_BODY = YES; 661 | CLANG_WARN_ENUM_CONVERSION = YES; 662 | CLANG_WARN_INT_CONVERSION = YES; 663 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 664 | CLANG_WARN_UNREACHABLE_CODE = YES; 665 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 666 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 667 | COPY_PHASE_STRIP = NO; 668 | ENABLE_STRICT_OBJC_MSGSEND = YES; 669 | ENABLE_TESTABILITY = YES; 670 | GCC_C_LANGUAGE_STANDARD = gnu99; 671 | GCC_DYNAMIC_NO_PIC = NO; 672 | GCC_OPTIMIZATION_LEVEL = 0; 673 | GCC_PREPROCESSOR_DEFINITIONS = ( 674 | "DEBUG=1", 675 | "$(inherited)", 676 | ); 677 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 678 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 679 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 680 | GCC_WARN_UNDECLARED_SELECTOR = YES; 681 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 682 | GCC_WARN_UNUSED_FUNCTION = YES; 683 | GCC_WARN_UNUSED_VARIABLE = YES; 684 | HEADER_SEARCH_PATHS = ( 685 | "$(inherited)", 686 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 687 | "$(SRCROOT)/../node_modules/react-native/React/**", 688 | ); 689 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 690 | MTL_ENABLE_DEBUG_INFO = YES; 691 | ONLY_ACTIVE_ARCH = YES; 692 | SDKROOT = iphoneos; 693 | }; 694 | name = Debug; 695 | }; 696 | 83CBBA211A601CBA00E9B192 /* Release */ = { 697 | isa = XCBuildConfiguration; 698 | buildSettings = { 699 | ALWAYS_SEARCH_USER_PATHS = NO; 700 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 701 | CLANG_CXX_LIBRARY = "libc++"; 702 | CLANG_ENABLE_MODULES = YES; 703 | CLANG_ENABLE_OBJC_ARC = YES; 704 | CLANG_WARN_BOOL_CONVERSION = YES; 705 | CLANG_WARN_CONSTANT_CONVERSION = YES; 706 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 707 | CLANG_WARN_EMPTY_BODY = YES; 708 | CLANG_WARN_ENUM_CONVERSION = YES; 709 | CLANG_WARN_INT_CONVERSION = YES; 710 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 711 | CLANG_WARN_UNREACHABLE_CODE = YES; 712 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 713 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 714 | COPY_PHASE_STRIP = YES; 715 | ENABLE_NS_ASSERTIONS = NO; 716 | ENABLE_STRICT_OBJC_MSGSEND = YES; 717 | GCC_C_LANGUAGE_STANDARD = gnu99; 718 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 719 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 720 | GCC_WARN_UNDECLARED_SELECTOR = YES; 721 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 722 | GCC_WARN_UNUSED_FUNCTION = YES; 723 | GCC_WARN_UNUSED_VARIABLE = YES; 724 | HEADER_SEARCH_PATHS = ( 725 | "$(inherited)", 726 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 727 | "$(SRCROOT)/../node_modules/react-native/React/**", 728 | ); 729 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 730 | MTL_ENABLE_DEBUG_INFO = NO; 731 | SDKROOT = iphoneos; 732 | VALIDATE_PRODUCT = YES; 733 | }; 734 | name = Release; 735 | }; 736 | /* End XCBuildConfiguration section */ 737 | 738 | /* Begin XCConfigurationList section */ 739 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNCalendarTests" */ = { 740 | isa = XCConfigurationList; 741 | buildConfigurations = ( 742 | 00E356F61AD99517003FC87E /* Debug */, 743 | 00E356F71AD99517003FC87E /* Release */, 744 | ); 745 | defaultConfigurationIsVisible = 0; 746 | defaultConfigurationName = Release; 747 | }; 748 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNCalendar" */ = { 749 | isa = XCConfigurationList; 750 | buildConfigurations = ( 751 | 13B07F941A680F5B00A75B9A /* Debug */, 752 | 13B07F951A680F5B00A75B9A /* Release */, 753 | ); 754 | defaultConfigurationIsVisible = 0; 755 | defaultConfigurationName = Release; 756 | }; 757 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNCalendar" */ = { 758 | isa = XCConfigurationList; 759 | buildConfigurations = ( 760 | 83CBBA201A601CBA00E9B192 /* Debug */, 761 | 83CBBA211A601CBA00E9B192 /* Release */, 762 | ); 763 | defaultConfigurationIsVisible = 0; 764 | defaultConfigurationName = Release; 765 | }; 766 | /* End XCConfigurationList section */ 767 | }; 768 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 769 | } 770 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar.xcodeproj/xcshareddata/xcschemes/RNCalendar.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import "RCTRootView.h" 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | NSURL *jsCodeLocation; 19 | 20 | /** 21 | * Loading JavaScript code - uncomment the one you want. 22 | * 23 | * OPTION 1 24 | * Load from development server. Start the server from the repository root: 25 | * 26 | * $ npm start 27 | * 28 | * To run on device, change `localhost` to the IP address of your computer 29 | * (you can get this by typing `ifconfig` into the terminal and selecting the 30 | * `inet` value under `en0:`) and make sure your computer and iOS device are 31 | * on the same Wi-Fi network. 32 | */ 33 | 34 | jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"]; 35 | 36 | /** 37 | * OPTION 2 38 | * Load from pre-bundled file on disk. The static bundle is automatically 39 | * generated by "Bundle React Native code and images" build step. 40 | */ 41 | 42 | // jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 43 | 44 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 45 | moduleName:@"RNCalendar" 46 | initialProperties:nil 47 | launchOptions:launchOptions]; 48 | 49 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 50 | UIViewController *rootViewController = [[UIViewController alloc] init]; 51 | rootViewController.view = rootView; 52 | self.window.rootViewController = rootViewController; 53 | [self.window makeKeyAndVisible]; 54 | return YES; 55 | } 56 | 57 | @end 58 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | NSAppTransportSecurity 26 | 27 | NSAllowsArbitraryLoads 28 | 29 | 30 | NSLocationWhenInUseUsageDescription 31 | 32 | UILaunchStoryboardName 33 | LaunchScreen 34 | UIRequiredDeviceCapabilities 35 | 36 | armv7 37 | 38 | UISupportedInterfaceOrientations 39 | 40 | UIInterfaceOrientationPortrait 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | UIViewControllerBasedStatusBarAppearance 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendar/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendarTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /RNCalendar/ios/RNCalendarTests/RNCalendarTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import "RCTLog.h" 14 | #import "RCTRootView.h" 15 | 16 | #define TIMEOUT_SECONDS 240 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface RNCalendarTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation RNCalendarTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /RNCalendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNCalendar", 3 | "version": "0.0.1", 4 | "scripts": { 5 | "start": "react-native start" 6 | }, 7 | "dependencies": { 8 | "moment": "^2.10.6", 9 | "react-native": "^0.14.2", 10 | "rn-calendars": "^0.1.3" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // Module dependencies 4 | let React = require('react-native'); 5 | let moment = require('moment'); 6 | let PropTypes = React.PropTypes; 7 | 8 | let styles = require('./style'); 9 | 10 | let { 11 | Dimensions, 12 | View, 13 | Text, 14 | ScrollView, 15 | TouchableOpacity 16 | } = React; 17 | 18 | let ROW = 7; 19 | let COLUMN = 7; 20 | let VIEW_INDEX = 2; 21 | let DEVICE_WIDTH = Dimensions.get('window').width; 22 | 23 | let EmptyDay = React.createClass({ 24 | render () { 25 | return ( 26 | 27 | ); 28 | } 29 | }); 30 | 31 | let Day = React.createClass({ 32 | getDefaultProps () { 33 | return { 34 | date: moment().format('YYYY-MM-DD'), 35 | isSelected: false, 36 | onSelected: function (date) { 37 | console.log(moment(date).format('YYYY-MM-DD')); 38 | } 39 | } 40 | }, 41 | 42 | render () { 43 | let customStyle = this.props.isSelected === true ? { backgroundColor: '#007AFF'} : null; 44 | let dayStyle = this.props.isSelected === true ? { color: 'white' } : null; 45 | 46 | return ( 47 | this.props.onSelected(this.props.date)}> 49 | {this.props.isToday ? 50 | Today: 51 | {moment(this.props.date).date()} 52 | } 53 | 54 | ); 55 | } 56 | }); 57 | 58 | module.exports = React.createClass({ 59 | 60 | propTypes: { 61 | scrollEnabled: PropTypes.bool, 62 | startDate: PropTypes.string, 63 | headings: PropTypes.array, 64 | renderDay: PropTypes.func, 65 | selectDay: PropTypes.func, 66 | locale: PropTypes.string 67 | }, 68 | 69 | getDefaultProps () { 70 | return { 71 | scrollEnabled: false, 72 | selectedDay: moment().format('YYYY-MM-DD'), 73 | headings: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], 74 | locale: 'en', 75 | selectDay (day) { 76 | console.log(moment(day).format('YYYY-MM-DD')); 77 | } 78 | } 79 | }, 80 | 81 | getInitialState () { 82 | return { 83 | selectedDate: this.props.startDate, 84 | currentDate: moment(this.props.startDate).format('YYYY-MM-DD'), 85 | calendarDate: this.getInitialStack() 86 | } 87 | }, 88 | 89 | componentWillMount () { 90 | this.renderedMonths = []; 91 | }, 92 | 93 | componentDidMount () { 94 | this._scrollToItem(VIEW_INDEX); 95 | }, 96 | 97 | getInitialStack () { 98 | var initialStack = []; 99 | 100 | if (this.props.scrollEnabled) { 101 | initialStack.push(moment(this.props.startDate).subtract(2, 'month').format()); 102 | initialStack.push(moment(this.props.startDate).subtract(1, 'month').format()); 103 | initialStack.push(moment(this.props.startDate).format()); 104 | initialStack.push(moment(this.props.startDate).add(1, 'month').format()); 105 | initialStack.push(moment(this.props.startDate).add(2, 'month').format()); 106 | } else { 107 | initialStack.push(moment(this.props.startDate).format()); 108 | } 109 | 110 | return initialStack; 111 | }, 112 | 113 | render () { 114 | return ( 115 | 116 | {this._renderHeader()} 117 | {this._renderHeading()} 118 | {this.props.scrollEnabled ? 119 | this._scrollEnded(event)}> 129 | {this.state.calendarDate.map((date)=>this._renderMonth(date))} 130 | : 131 | 132 | {this.state.calendarDate.map((date)=>this._renderMonth(date))} 133 | 134 | } 135 | 136 | ); 137 | }, 138 | 139 | _renderHeader () { 140 | return ( 141 | 142 | 143 | 144 | 145 | 146 | {this.props.locale === 'zh-cn' ? 147 | moment(this.state.currentDate).format('YYYY年MM月') : 148 | moment(this.state.currentDate).format('MMM YYYY') 149 | } 150 | 151 | 152 | 153 | 154 | 155 | ); 156 | }, 157 | 158 | _renderHeading () { 159 | return ( 160 | 161 | {this.props.headings.map((heading, index)=> 162 | {heading} 163 | )} 164 | 165 | ); 166 | }, 167 | 168 | _renderMonth (date) { 169 | // current month 170 | if (moment(this.state.currentDate).isSame(date, 'month')) { 171 | return this._renderMonthView(date); 172 | } else { 173 | let renderedMonth = null; 174 | 175 | for (let i = 0; i < this.renderedMonths.length; i++) { 176 | if (moment(this.renderedMonths[i][0]).isSame(date, 'month')) { 177 | renderedMonth = this.renderedMonths[i][1]; 178 | } 179 | } 180 | 181 | if (!renderedMonth) { renderedMonth = this._renderMonthView(date); } 182 | 183 | return renderedMonth; 184 | } 185 | }, 186 | 187 | _renderMonthView (date) { 188 | let dayStart = moment(date).startOf('month').format(); 189 | let daysInMonth = moment(dayStart).daysInMonth(); 190 | let dayStartOffset = moment(dayStart).get('day'); 191 | let dayNum = 0; 192 | let preFiller = 0; 193 | let weeks = []; 194 | 195 | for (let row = 0; row < ROW; row++) { 196 | let days = []; 197 | for (let column = 0; column < COLUMN; column++) { 198 | if (preFiller < dayStartOffset) { 199 | days.push(); 200 | } else { 201 | // Days in month 202 | if (dayNum < daysInMonth) { 203 | let newDay = moment(dayStart).set('date', dayNum + 1); 204 | let isToday = moment().isSame(newDay, 'month') && moment().isSame(newDay, 'day'); 205 | 206 | if (this.props.renderDay) { 207 | days.push(this.props.renderDay(newDay, isToday)); 208 | } else { 209 | days.push(this._renderDefaultDay(newDay, isToday)); 210 | } 211 | 212 | dayNum++; 213 | } 214 | } 215 | preFiller++; 216 | } 217 | 218 | if(days.length > 0 && days.length < 7) { 219 | for (var x = days.length; x < 7; x++) { 220 | days.push(); 221 | } 222 | } 223 | 224 | if (days.length !== 0) { 225 | weeks.push({days}); 226 | } 227 | } 228 | 229 | let renderedMonthView = {weeks}; 230 | this.renderedMonths.push([date, renderedMonthView]); 231 | return renderedMonthView; 232 | 233 | }, 234 | 235 | _renderDefaultDay (newDay, isToday) { 236 | let newDayFormatted = moment(newDay).format('YYYY-MM-DD'); 237 | let isSelected = moment(this.state.selectedDate).format('YYYY-MM-DD') === newDayFormatted; 238 | 239 | return ( 240 | { 245 | this.setState({ 246 | selectedDate: newDayFormatted 247 | }); 248 | 249 | this.props.selectDay(newDayFormatted); 250 | }} /> 251 | ); 252 | }, 253 | 254 | _onPrev () { 255 | this._onPrependMonth(); 256 | this._scrollToItem(VIEW_INDEX); 257 | }, 258 | 259 | _onNext () { 260 | this._onAppendMonth(); 261 | this._scrollToItem(VIEW_INDEX); 262 | }, 263 | 264 | _onPrependMonth () { 265 | var calendarDates = this.state.calendarDate; 266 | calendarDates.unshift(moment(calendarDates[0]).subtract(1, 'month').format()); 267 | calendarDates.pop(); 268 | this.setState({ 269 | calendarDate: calendarDates, 270 | currentDate: calendarDates[this.props.scrollEnabled ? VIEW_INDEX : 0] 271 | }); 272 | }, 273 | 274 | _onAppendMonth () { 275 | var calendarDates = this.state.calendarDate; 276 | calendarDates.push(moment(calendarDates[calendarDates.length - 1]).add(1, 'month').format()); 277 | calendarDates.shift(); 278 | this.setState({ 279 | calendarDate: calendarDates, 280 | currentDate: calendarDates[this.props.scrollEnabled ? VIEW_INDEX : 0] 281 | }); 282 | }, 283 | 284 | _scrollToItem (itemIndex) { 285 | var scrollToX = itemIndex * DEVICE_WIDTH; 286 | if (this.props.scrollEnabled) { 287 | this.refs.calendar.scrollWithoutAnimationTo(0, scrollToX); 288 | } 289 | }, 290 | 291 | _scrollEnded (evt) { 292 | var position = evt.nativeEvent.contentOffset.x; 293 | var currentPage = position / DEVICE_WIDTH; 294 | 295 | if (currentPage < VIEW_INDEX) { 296 | this._onPrependMonth(); 297 | this._scrollToItem(VIEW_INDEX); 298 | } else if (currentPage > VIEW_INDEX) { 299 | this._onAppendMonth(); 300 | this._scrollToItem(VIEW_INDEX); 301 | } else { 302 | return false; 303 | } 304 | } 305 | 306 | }); 307 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rn-calendars", 3 | "version": "0.1.3", 4 | "description": "An extensible calendar component for react-native", 5 | "keywords": [ 6 | "react-native", 7 | "calendar", 8 | "react-component", 9 | "ios" 10 | ], 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/RNComponents/rn-calendars" 14 | }, 15 | "author": { 16 | "name": "Fantasy Shao", 17 | "email": "fantasyshao@icloud.com", 18 | "url": "http://fantasy.codes" 19 | }, 20 | "license": "MIT", 21 | "dependencies": { 22 | "moment": "^2.10.6" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RNComponents/rn-calendars/34afefba26cb3888680a39923db9542db8d33274/screenshot.png -------------------------------------------------------------------------------- /style.js: -------------------------------------------------------------------------------- 1 | var React = require('react-native'); 2 | 3 | module.exports = React.StyleSheet.create({ 4 | container: { 5 | backgroundColor: 'white' 6 | }, 7 | 8 | header: { 9 | flex: 1, 10 | height: 36, 11 | paddingHorizontal: 50, 12 | flexDirection: 'row', 13 | alignItems: 'center', 14 | backgroundColor: 'rgb(237, 237, 237)' 15 | }, 16 | 17 | nav: { 18 | width: 24, 19 | height: 24, 20 | borderRadius: 12, 21 | backgroundColor: 'white', 22 | alignItems: 'center', 23 | justifyContent: 'center' 24 | }, 25 | 26 | arrow: { 27 | borderLeftWidth: 2, 28 | borderTopWidth: 2, 29 | width: 10, 30 | height: 10, 31 | borderColor: 'rgb(188,193,199)' 32 | }, 33 | 34 | left: { 35 | transform: [ 36 | { 37 | rotate: '-45deg' 38 | } 39 | ] 40 | }, 41 | 42 | right: { 43 | transform: [ 44 | { 45 | rotate: '135deg' 46 | } 47 | ] 48 | }, 49 | 50 | title: { 51 | flex: 1, 52 | textAlign: 'center', 53 | fontSize: 14 54 | }, 55 | 56 | heading: { 57 | flexDirection: 'row', 58 | backgroundColor: 'rgb(162, 172, 181)' 59 | }, 60 | 61 | headingUnit: { 62 | flex: 1, 63 | textAlign: 'center', 64 | paddingVertical: 5, 65 | color: 'white' 66 | }, 67 | 68 | weekWrapper: { 69 | flexDirection: 'row' 70 | }, 71 | 72 | dayWrapper: { 73 | flex: 1, 74 | paddingVertical: 10, 75 | alignItems: 'center', 76 | justifyContent: 'center' 77 | }, 78 | 79 | day: { 80 | textAlign: 'center' 81 | } 82 | 83 | }); 84 | --------------------------------------------------------------------------------