Showing preview only (873K chars total). Download the full file or copy to clipboard to get everything.
Repository: fbsamples/f8app
Branch: main
Commit: 119f062943c9
Files: 331
Total size: 800.1 KB
Directory structure:
gitextract_xjzujt5k/
├── .babelrc
├── .buckconfig
├── .circleci/
│ └── config.yml
├── .eslintignore
├── .eslintrc
├── .flowconfig
├── .gitattributes
├── .gitignore
├── .watchmanconfig
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── __mocks__/
│ └── react-native.js
├── android/
│ ├── app/
│ │ ├── BUCK
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src/
│ │ ├── debug/
│ │ │ └── res/
│ │ │ └── values/
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── main/
│ │ ├── AndroidManifest.xml
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── facebook/
│ │ │ └── f8/
│ │ │ ├── MainActivity.java
│ │ │ └── MainApplication.java
│ │ └── res/
│ │ └── values/
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── build.gradle
│ ├── gradle/
│ │ └── wrapper/
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── keystores/
│ │ ├── BUCK
│ │ └── debug.keystore.properties
│ └── settings.gradle
├── app.json
├── docker-compose.yml
├── index.android.js
├── index.ios.js
├── ios/
│ ├── F82017/
│ │ ├── AppDelegate.h
│ │ ├── AppDelegate.m
│ │ ├── Base.lproj/
│ │ │ └── LaunchScreen.xib
│ │ ├── F82017.entitlements
│ │ ├── Images.xcassets/
│ │ │ └── AppIcon.appiconset/
│ │ │ └── Contents.json
│ │ ├── Info.plist
│ │ └── main.m
│ ├── F82017-tvOS/
│ │ └── Info.plist
│ ├── F82017-tvOSTests/
│ │ └── Info.plist
│ ├── F82017.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── F82017-tvOS.xcscheme
│ │ └── F82017.xcscheme
│ └── F82017Tests/
│ ├── F82017Tests.m
│ └── Info.plist
├── js/
│ ├── F8Analytics.js
│ ├── F8App.js
│ ├── F8Navigator.js
│ ├── FacebookSDK.js
│ ├── Playground.js
│ ├── PushNotificationsController.js
│ ├── actions/
│ │ ├── config.js
│ │ ├── filter.js
│ │ ├── index.js
│ │ ├── installation.js
│ │ ├── login.js
│ │ ├── navigation.js
│ │ ├── notifications.js
│ │ ├── parse.js
│ │ ├── schedule.js
│ │ ├── surveys.js
│ │ ├── test.js
│ │ ├── types.js
│ │ └── video.js
│ ├── common/
│ │ ├── ActionsOverlay.js
│ │ ├── Carousel.js
│ │ ├── F8ActionSheet.js
│ │ ├── F8BackgroundRepeat.js
│ │ ├── F8Button.js
│ │ ├── F8Colors.js
│ │ ├── F8DrawerLayout.js
│ │ ├── F8Fonts.js
│ │ ├── F8Header.js
│ │ ├── F8Linking.js
│ │ ├── F8Modal.js
│ │ ├── F8PageControl.js
│ │ ├── F8ScrollingHeader.js
│ │ ├── F8SegmentedControl.js
│ │ ├── F8StyleSheet.js
│ │ ├── F8Text.js
│ │ ├── F8TimelineBackground.js
│ │ ├── F8TimelineSegment.js
│ │ ├── F8Toast.js
│ │ ├── F8Tooltip.js
│ │ ├── F8Touchable.js
│ │ ├── F8WebView.js
│ │ ├── Hitbox.js
│ │ ├── ItemsWithSeparator.js
│ │ ├── LaunchScreen.js
│ │ ├── ListContainer.js
│ │ ├── LoginButton.js
│ │ ├── MapView.js
│ │ ├── MessengerChatHead.js
│ │ ├── MessengerModal.js
│ │ ├── ParallaxBackground.js
│ │ ├── PlayButton.js
│ │ ├── ProfilePicture.js
│ │ ├── PureListView.js
│ │ ├── ViewPager.js
│ │ ├── __tests__/
│ │ │ └── convertTimes-test.js
│ │ └── convertTimes.js
│ ├── env.js
│ ├── filter/
│ │ ├── FilterScreen.android.js
│ │ ├── FilterScreen.ios.js
│ │ ├── FriendsList.js
│ │ ├── Header.js
│ │ ├── Section.js
│ │ ├── TopicItem.js
│ │ └── topicIcons.js
│ ├── flow-lib.js
│ ├── login/
│ │ ├── LoginModal.js
│ │ └── LoginScreen.js
│ ├── rating/
│ │ ├── Header.js
│ │ ├── RadioButtons.js
│ │ ├── RatingQuestion.js
│ │ ├── RatingScreen.js
│ │ ├── StarRating.js
│ │ ├── StarRatings.js
│ │ └── WrittenResponse.js
│ ├── reducers/
│ │ ├── __mocks__/
│ │ │ └── parse.js
│ │ ├── __tests__/
│ │ │ ├── maps-test.js
│ │ │ ├── notifications-test.js
│ │ │ └── schedule-test.js
│ │ ├── config.js
│ │ ├── createParseReducer.js
│ │ ├── faqs.js
│ │ ├── friendsSchedules.js
│ │ ├── index.js
│ │ ├── maps.js
│ │ ├── navigation.js
│ │ ├── notifications.js
│ │ ├── pages.js
│ │ ├── policies.js
│ │ ├── schedule.js
│ │ ├── scheduleFilter.js
│ │ ├── scheduleTopics.js
│ │ ├── sessions.js
│ │ ├── surveys.js
│ │ ├── testEventDates.js
│ │ ├── user.js
│ │ ├── videoFilter.js
│ │ ├── videoTopics.js
│ │ └── videos.js
│ ├── relay-environment.js
│ ├── setup.js
│ ├── store/
│ │ ├── analytics.js
│ │ ├── array.js
│ │ ├── compatibility.js
│ │ ├── configureStore.js
│ │ ├── promise.js
│ │ └── track.js
│ ├── tabs/
│ │ ├── F8TabsView.js
│ │ ├── MenuItem.js
│ │ ├── demos/
│ │ │ ├── DemosCarousel.js
│ │ │ ├── F8DemoDetails.js
│ │ │ ├── F8DemosView.js
│ │ │ └── __generated__/
│ │ │ └── F8DemosViewQuery.graphql.js
│ │ ├── info/
│ │ │ ├── AboutLocation.js
│ │ │ ├── CommonQuestions.js
│ │ │ ├── DirectionsLink.js
│ │ │ ├── F8AboutView.js
│ │ │ ├── F8InfoView.js
│ │ │ ├── LinksList.js
│ │ │ ├── Section.js
│ │ │ └── WiFiDetails.js
│ │ ├── maps/
│ │ │ ├── F8MapView.js
│ │ │ ├── F8VenueMap.js
│ │ │ └── ZoomableImage.js
│ │ ├── notifications/
│ │ │ ├── F8NotificationsView.js
│ │ │ ├── NotificationCell.js
│ │ │ ├── PushNUXModal.js
│ │ │ ├── RateSessionsCell.js
│ │ │ ├── allNotifications.js
│ │ │ ├── findSessionByURI.js
│ │ │ └── unseenNotificationsCount.js
│ │ ├── schedule/
│ │ │ ├── AddToScheduleButton.js
│ │ │ ├── EmptySchedule.js
│ │ │ ├── F8FriendGoing.js
│ │ │ ├── F8GanttGrid.js
│ │ │ ├── F8GanttNowMarker.js
│ │ │ ├── F8GanttRow.js
│ │ │ ├── F8ScheduleGantt.js
│ │ │ ├── F8SessionCell.js
│ │ │ ├── F8SessionDetails.js
│ │ │ ├── F8SpeakerProfile.js
│ │ │ ├── FilterHeader.js
│ │ │ ├── FriendCell.js
│ │ │ ├── FriendsListView.js
│ │ │ ├── FriendsScheduleView.js
│ │ │ ├── FriendsUsingApp.js
│ │ │ ├── GeneralScheduleView.js
│ │ │ ├── HideCompleted.js
│ │ │ ├── InviteFriendsButton.js
│ │ │ ├── MyScheduleView.js
│ │ │ ├── PrivacyIcon.js
│ │ │ ├── ProfileButton.js
│ │ │ ├── ScheduleListView.js
│ │ │ ├── SessionsCarousel.js
│ │ │ ├── SessionsSectionHeader.js
│ │ │ ├── SharingSettingsCommon.js
│ │ │ ├── SharingSettingsModal.js
│ │ │ ├── SharingSettingsScreen.js
│ │ │ ├── __tests__/
│ │ │ │ ├── formatDuration-test.js
│ │ │ │ └── formatTime-test.js
│ │ │ ├── filterSessions.js
│ │ │ ├── formatDuration.js
│ │ │ ├── formatTime.js
│ │ │ └── groupSessions.js
│ │ └── videos/
│ │ ├── F8EmptyVideosView.js
│ │ ├── F8VideoThumb.js
│ │ ├── F8VideoView.js
│ │ ├── F8VideosView.js
│ │ └── filterVideos.js
│ └── video/
│ ├── F8VideoPlayer.js
│ ├── VideoControls.js
│ └── VideoLoader.js
├── package.json
├── scripts/
│ ├── generate-graphql-schema.js
│ ├── open-ios-project.js
│ ├── optimize-images.sh
│ ├── pre-push-checks.sh
│ └── run-android-app.sh
└── server/
├── .gitignore
├── graphql/
│ ├── .babelrc
│ ├── Dockerfile
│ ├── package.json
│ └── src/
│ ├── index.js
│ └── schema/
│ ├── __generated__/
│ │ └── schema.graphql
│ ├── demo.js
│ ├── index.js
│ ├── node.js
│ ├── query.js
│ └── typeRegistry.js
├── mongorestore/
│ ├── Dockerfile
│ └── data/
│ ├── Agenda.bson
│ ├── Agenda.metadata.json
│ ├── Attendance.bson
│ ├── Attendance.metadata.json
│ ├── Demo.bson
│ ├── Demo.metadata.json
│ ├── FAQ.bson
│ ├── FAQ.metadata.json
│ ├── Maps.bson
│ ├── Maps.metadata.json
│ ├── MeetupSponsors.bson
│ ├── MeetupSponsors.metadata.json
│ ├── Meetups.bson
│ ├── Meetups.metadata.json
│ ├── Notification.bson
│ ├── Notification.metadata.json
│ ├── Page.bson
│ ├── Page.metadata.json
│ ├── PendingNotifications.bson
│ ├── PendingNotifications.metadata.json
│ ├── Policy.bson
│ ├── Policy.metadata.json
│ ├── Speakers.bson
│ ├── Speakers.metadata.json
│ ├── Survey.bson
│ ├── Survey.metadata.json
│ ├── SurveyQuestions.bson
│ ├── SurveyQuestions.metadata.json
│ ├── SurveyResult.bson
│ ├── SurveyResult.metadata.json
│ ├── UTestAgenda.bson
│ ├── UTestAgenda.metadata.json
│ ├── UnmaskedAgenda.bson
│ ├── UnmaskedAgenda.metadata.json
│ ├── Video.bson
│ ├── Video.metadata.json
│ ├── _Audience.bson
│ ├── _Audience.metadata.json
│ ├── _Cardinality.bson
│ ├── _Cardinality.metadata.json
│ ├── _EventDimension.bson
│ ├── _EventDimension.metadata.json
│ ├── _GlobalConfig.bson
│ ├── _GlobalConfig.metadata.json
│ ├── _Installation.bson
│ ├── _Installation.metadata.json
│ ├── _JobStatus.bson
│ ├── _JobStatus.metadata.json
│ ├── _Join:mySchedule:_User.bson
│ ├── _Join:mySchedule:_User.metadata.json
│ ├── _PushStatus.bson
│ ├── _PushStatus.metadata.json
│ ├── _QueryToolQuery.bson
│ ├── _QueryToolQuery.metadata.json
│ ├── _Role.bson
│ ├── _Role.metadata.json
│ ├── _SCHEMA.bson
│ ├── _SCHEMA.metadata.json
│ ├── _Session.bson
│ ├── _Session.metadata.json
│ ├── _User.bson
│ ├── _User.metadata.json
│ ├── _dummy.bson
│ ├── _dummy.metadata.json
│ ├── objectlabs-system.bson
│ └── objectlabs-system.metadata.json
├── parse-dashboard/
│ ├── Dockerfile
│ └── config.json
└── parse-server/
├── .babelrc
├── Dockerfile
├── cloud/
│ ├── auth.js
│ ├── functions/
│ │ ├── agenda.js
│ │ ├── friends.js
│ │ ├── index.js
│ │ ├── meetups.js
│ │ ├── messengerbot.js
│ │ ├── notifications.js
│ │ ├── surveyexports.js
│ │ ├── surveys.js
│ │ └── tests.js
│ ├── index.js
│ ├── jobs/
│ │ ├── index.js
│ │ ├── installationSync.js
│ │ ├── unmaskAgenda.js
│ │ ├── unmaskDemos.js
│ │ └── updateVideoSources.js
│ └── triggers/
│ ├── index.js
│ ├── pushChannels.js
│ └── videos.js
├── config.json
└── package.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .babelrc
================================================
{
"plugins": ["relay"],
"presets": ["react-native"]
}
================================================
FILE: .buckconfig
================================================
[android]
target = Google Inc.:Google APIs:23
[maven_repositories]
central = https://repo1.maven.org/maven2
================================================
FILE: .circleci/config.yml
================================================
version: 2
jobs:
build:
working_directory: ~/f8app
docker:
- image: circleci/node:7.10
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn lint
- run: yarn flow
- run: yarn test
android:
working_directory: ~/f8app
docker:
- image: circleci/android:api-27-node8-alpha
steps:
- checkout
- run: yarn install
- run: cd android && ./gradlew assembleDebug
workflows:
version: 2
build_and_test:
jobs:
- build
- android
================================================
FILE: .eslintignore
================================================
**/node_modules/**
================================================
FILE: .eslintrc
================================================
{
"parser": "babel-eslint",
"ecmaFeatures": {
"jsx": true
},
"env": {
"es6": true,
"jasmine": true,
},
"plugins": [
"react",
"prettier",
],
// Map from global var to bool specifying if it can be redefined
"globals": {
"__DEV__": true,
"__dirname": false,
"__fbBatchedBridgeConfig": false,
"alert": false,
"cancelAnimationFrame": false,
"cancelIdleCallback": false,
"clearImmediate": true,
"clearInterval": false,
"clearTimeout": false,
"console": false,
"document": false,
"escape": false,
"Event": false,
"EventTarget": false,
"exports": false,
"fetch": false,
"FormData": false,
"global": false,
"jest": false,
"Map": true,
"module": false,
"navigator": false,
"process": false,
"Promise": true,
"requestAnimationFrame": true,
"requestIdleCallback": true,
"require": false,
"Set": true,
"setImmediate": true,
"setInterval": false,
"setTimeout": false,
"window": false,
"XMLHttpRequest": false,
"pit": false,
// Flow global types.
"ReactComponent": false,
"ReactClass": false,
"ReactElement": false,
"ReactPropsCheckType": false,
"ReactPropsChainableTypeChecker": false,
"ReactPropTypes": false,
"SyntheticEvent": false,
"$Either": false,
"$All": false,
"$ArrayBufferView": false,
"$Tuple": false,
"$Supertype": false,
"$Subtype": false,
"$Shape": false,
"$Diff": false,
"$Keys": false,
"$Enum": false,
"$Exports": false,
"$FlowIssue": false,
"$FlowFixMe": false,
"$FixMe": false
},
"rules": {
"comma-dangle": 0, // disallow trailing commas in object literals
"no-cond-assign": 1, // disallow assignment in conditional expressions
"no-console": 0, // disallow use of console (off by default in the node environment)
"no-const-assign": 2, // disallow assignment to const-declared variables
"no-constant-condition": 0, // disallow use of constant expressions in conditions
"no-control-regex": 1, // disallow control characters in regular expressions
"no-debugger": 1, // disallow use of debugger
"no-dupe-keys": 1, // disallow duplicate keys when creating object literals
"no-empty": 0, // disallow empty statements
"no-ex-assign": 1, // disallow assigning to the exception in a catch block
"no-extra-boolean-cast": 1, // disallow double-negation boolean casts in a boolean context
"no-extra-parens": 0, // disallow unnecessary parentheses (off by default)
"no-extra-semi": 1, // disallow unnecessary semicolons
"no-func-assign": 1, // disallow overwriting functions written as function declarations
"no-inner-declarations": 0, // disallow function or variable declarations in nested blocks
"no-invalid-regexp": 1, // disallow invalid regular expression strings in the RegExp constructor
"no-negated-in-lhs": 1, // disallow negation of the left operand of an in expression
"no-obj-calls": 1, // disallow the use of object properties of the global object (Math and JSON) as functions
"no-regex-spaces": 1, // disallow multiple spaces in a regular expression literal
"no-reserved-keys": 0, // disallow reserved words being used as object literal keys (off by default)
"no-sparse-arrays": 1, // disallow sparse arrays
"no-unreachable": 1, // disallow unreachable statements after a return, throw, continue, or break statement
"use-isnan": 1, // disallow comparisons with the value NaN
"valid-jsdoc": 0, // Ensure JSDoc comments are valid (off by default)
"valid-typeof": 1, // Ensure that the results of typeof are compared against a valid string
"no-var": 1, // discouraging the use of var and encouraging the use of const or let instead
// Best Practices
// These are rules designed to prevent you from making mistakes. They either prescribe a better way of doing something or help you avoid footguns.
"block-scoped-var": 0, // treat var statements as if they were block scoped (off by default)
"complexity": 0, // specify the maximum cyclomatic complexity allowed in a program (off by default)
"consistent-return": 0, // require return statements to either always or never specify values
"curly": 1, // specify curly brace conventions for all control statements
"default-case": 0, // require default case in switch statements (off by default)
"dot-notation": 1, // encourages use of dot notation whenever possible
"eqeqeq": [1, "allow-null"], // require the use of === and !==
"guard-for-in": 0, // make sure for-in loops have an if statement (off by default)
"no-alert": 1, // disallow the use of alert, confirm, and prompt
"no-caller": 1, // disallow use of arguments.caller or arguments.callee
"no-div-regex": 1, // disallow division operators explicitly at beginning of regular expression (off by default)
"no-else-return": 0, // disallow else after a return in an if (off by default)
"no-eq-null": 0, // disallow comparisons to null without a type-checking operator (off by default)
"no-eval": 1, // disallow use of eval()
"no-extend-native": 1, // disallow adding to native types
"no-extra-bind": 1, // disallow unnecessary function binding
"no-fallthrough": 1, // disallow fallthrough of case statements
"no-floating-decimal": 1, // disallow the use of leading or trailing decimal points in numeric literals (off by default)
"no-implied-eval": 1, // disallow use of eval()-like methods
"no-labels": 1, // disallow use of labeled statements
"no-iterator": 1, // disallow usage of __iterator__ property
"no-lone-blocks": 1, // disallow unnecessary nested blocks
"no-loop-func": 0, // disallow creation of functions within loops
"no-multi-str": 0, // disallow use of multiline strings
"no-native-reassign": 0, // disallow reassignments of native objects
"no-new": 1, // disallow use of new operator when not part of the assignment or comparison
"no-new-func": 1, // disallow use of new operator for Function object
"no-new-wrappers": 1, // disallows creating new instances of String,Number, and Boolean
"no-octal": 1, // disallow use of octal literals
"no-octal-escape": 1, // disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
"no-proto": 1, // disallow usage of __proto__ property
"no-redeclare": 0, // disallow declaring the same variable more then once
"no-return-assign": 1, // disallow use of assignment in return statement
"no-script-url": 1, // disallow use of javascript: urls.
"no-self-compare": 1, // disallow comparisons where both sides are exactly the same (off by default)
"no-sequences": 1, // disallow use of comma operator
"no-unused-expressions": 0, // disallow usage of expressions in statement position
"no-void": 1, // disallow use of void operator (off by default)
"no-warning-comments": 0, // disallow usage of configurable warning terms in comments": 1, // e.g. TODO or FIXME (off by default)
"no-with": 1, // disallow use of the with statement
"radix": 1, // require use of the second argument for parseInt() (off by default)
"semi-spacing": 1, // require a space after a semi-colon
"vars-on-top": 0, // requires to declare all vars on top of their containing scope (off by default)
"wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default)
"yoda": 1, // require or disallow Yoda conditions
// Variables
// These rules have to do with variable declarations.
"no-catch-shadow": 1, // disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment)
"no-delete-var": 1, // disallow deletion of variables
"no-label-var": 1, // disallow labels that share a name with a variable
"no-shadow": 1, // disallow declaration of variables already declared in the outer scope
"no-shadow-restricted-names": 1, // disallow shadowing of names such as arguments
"no-undef": 2, // disallow use of undeclared variables unless mentioned in a /*global */ block
"no-undefined": 0, // disallow use of undefined variable (off by default)
"no-undef-init": 1, // disallow use of undefined when initializing variables
"no-unused-vars": [1, {"vars": "all", "args": "none"}], // disallow declaration of variables that are not used in the code
"no-use-before-define": 0, // disallow use of variables before they are defined
// Node.js
// These rules are specific to JavaScript running on Node.js.
"handle-callback-err": 1, // enforces error handling in callbacks (off by default) (on by default in the node environment)
"no-mixed-requires": 1, // disallow mixing regular variable and require declarations (off by default) (on by default in the node environment)
"no-new-require": 1, // disallow use of new operator with the require function (off by default) (on by default in the node environment)
"no-path-concat": 1, // disallow string concatenation with __dirname and __filename (off by default) (on by default in the node environment)
"no-process-exit": 0, // disallow process.exit() (on by default in the node environment)
"no-restricted-modules": 1, // restrict usage of specified node modules (off by default)
"no-sync": 0, // disallow use of synchronous methods (off by default)
// Stylistic Issues
// These rules are purely matters of style and are quite subjective.
"key-spacing": 0,
"keyword-spacing": 1, // enforce spacing before and after keywords
"jsx-quotes": [1, "prefer-double"],
"comma-spacing": 0,
"no-multi-spaces": 0,
"brace-style": 0, // enforce one true brace style (off by default)
"camelcase": 0, // require camel case names
"consistent-this": [1, "self"], // enforces consistent naming when capturing the current execution context (off by default)
"eol-last": 1, // enforce newline at the end of file, with no multiple empty lines
"func-names": 0, // require function expressions to have a name (off by default)
"func-style": 0, // enforces use of function declarations or expressions (off by default)
"new-cap": 0, // require a capital letter for constructors
"new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments
"no-nested-ternary": 0, // disallow nested ternary expressions (off by default)
"no-array-constructor": 1, // disallow use of the Array constructor
"no-lonely-if": 0, // disallow if as the only statement in an else block (off by default)
"no-new-object": 1, // disallow use of the Object constructor
"no-spaced-func": 1, // disallow space between function identifier and application
"no-ternary": 0, // disallow the use of ternary operators (off by default)
"no-trailing-spaces": 1, // disallow trailing whitespace at the end of lines
"no-underscore-dangle": 0, // disallow dangling underscores in identifiers
"no-mixed-spaces-and-tabs": 1, // disallow mixed spaces and tabs for indentation
"quotes": [1, "double", "avoid-escape"], // specify whether double or single quotes should be used
"quote-props": 0, // require quotes around object literal property names (off by default)
"semi": 1, // require or disallow use of semicolons instead of ASI
"sort-vars": 0, // sort variables within the same declaration block (off by default)
"space-in-brackets": 0, // require or disallow spaces inside brackets (off by default)
"space-in-parens": 0, // require or disallow spaces inside parentheses (off by default)
"space-infix-ops": 1, // require spaces around operators
"space-unary-ops": [1, { "words": true, "nonwords": false }], // require or disallow spaces before/after unary operators (words on by default, nonwords off by default)
"max-nested-callbacks": 0, // specify the maximum depth callbacks can be nested (off by default)
"one-var": 0, // allow just one var statement per function (off by default)
"wrap-regex": 0, // require regex literals to be wrapped in parentheses (off by default)
// Legacy
// The following rules are included for compatibility with JSHint and JSLint. While the names of the rules may not match up with the JSHint/JSLint counterpart, the functionality is the same.
"max-depth": 0, // specify the maximum depth that blocks can be nested (off by default)
"max-len": 0, // specify the maximum length of a line in your program (off by default)
"max-params": 0, // limits the number of parameters that can be used in the function declaration. (off by default)
"max-statements": 0, // specify the maximum number of statement allowed in a function (off by default)
"no-bitwise": 1, // disallow use of bitwise operators (off by default)
"no-plusplus": 0, // disallow use of unary operators, ++ and -- (off by default)
// React Plugin
// The following rules are made available via `eslint-plugin-react`.
"react/display-name": 0,
"react/jsx-boolean-value": 0,
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 1,
"react/jsx-sort-props": 0,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-multi-comp": 0,
"react/no-string-refs": 1,
"react/no-unknown-property": 0,
"react/prop-types": 0,
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 1,
"react/wrap-multilines": 0,
// Prettier Plugin
// The following rules are made available via `eslint-plugin-prettier`.
"prettier/prettier": "error",
}
}
================================================
FILE: .flowconfig
================================================
[ignore]
; We fork some components by platform
.*/*[.]android.js
; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/
; Ignore unexpected extra "@providesModule"
.*/node_modules/.*/node_modules/fbjs/.*
; Ignore unrelated errors in node_modules
.*/react-native/Libraries/.*
.*/react-native/lib/.*
.*/babel-plugin-relay/lib/.*
.*/react-relay/lib/.*
.*/relay-compiler/lib/.*
.*/relay-runtime/lib/.*
.*/graphql/.*
.*/react-native-keyboard-aware-scroll-view/.*
.*/react-native-linear-gradient/.*
.*/react-native-deprecated-custom-components/src/flattenStyle.js
[include]
[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow/
flow/
js/flow-lib.js
[options]
emoji=true
module.system=haste
experimental.strict_type_args=true
munge_underscores=true
module.name_mapper.extension='\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-8]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-8]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
unsafe.enable_getters_and_setters=true
[version]
^0.42.0
================================================
FILE: .gitattributes
================================================
*.pbxproj -text
================================================
FILE: .gitignore
================================================
# OSX
#
.DS_Store
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace
# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
# node.js
#
node_modules/
npm-debug.log
yarn-error.log
package-lock.json
# BUCK
buck-out/
\.buckd/
*.keystore
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
================================================
FILE: .watchmanconfig
================================================
{}
================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Code of Conduct
Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read [the full text](https://code.facebook.com/codeofconduct) so that you can understand what actions will and will not be tolerated.
================================================
FILE: CONTRIBUTING.md
================================================
# Contributing to F8 App
We want to make contributing to this project as easy and transparent as
possible.
## Code of Conduct
The code of conduct is described in [`CODE_OF_CONDUCT.md`](/CODE_OF_CONDUCT.md)
## Get involved
There are many ways to contribute to this project, and many of them do not involve writing any code. Here's a few ideas to get started:
* Go through the [Getting Started](http://makeitopen.com/docs/en/1-A1-local-setup.html) guide to insall and use the app. Does everything work as expected? If not, we're always looking for improvements. Let us know by [opening an issue](https://github.com/fbsamples/f8app/issues).
* Look through the [open issues](https://github.com/fbsamples/f8app/issues). Provide workarounds, ask for clarification, or suggest labels.
* If you find an issue you would like to fix, add a comment stating your intent to tackle it. Then open a pull request with your changes. Issues tagged as [_good first issue_](https://github.com/fbsamples/f8app/labels/good%20first%20issue) are a good place to get started.
## Pull Request Workflow
_Before_ submitting a pull request, please make sure the following is done…
1. Fork the repo and create your branch from `master`. A guide on how to fork a repository: https://help.github.com/articles/fork-a-repo/
Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type:
```sh
git clone https://github.com/<your_username>/f8app
cd f8app
git checkout -b my_branch
```
Note: Replace `<your_username>` with your GitHub username
2. Follow the [setup instructions](http://makeitopen.com/docs/en/1-A1-local-setup.html) to run the app and test your changes.
3. If you haven't already, complete the Contributor License Agreement ("CLA").
After opening your pull request, ensure all tests pass on Circle CI. Pull requests that break tests are unlikely to be merged. If a test fails and you believe it is unrelated to your change, leave a comment on the pull request explaining why.
## Contributor License Agreement ("CLA")
In order to accept your pull request, we need you to submit a CLA. You only need
to do this once to work on any of Facebook's open source projects.
Complete your CLA here: <https://code.facebook.com/cla>
## Issues
We use GitHub issues to track public bugs. Please ensure your description is
clear and has sufficient instructions to be able to reproduce the issue.
### Security Bugs
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
disclosure of security bugs. In those cases, please go through the process
outlined on that page and do not file a public issue.
## Code Conventions
* ES6 syntax when possible.
* Use [Flow types](http://flowtype.org/).
* Avd abbr wrds.
## License
By contributing to this repo, you agree that your contributions will be licensed
under its license.
================================================
FILE: LICENSE
================================================
Copyright 2016 Facebook, Inc.
You are hereby granted a non-exclusive, worldwide, royalty-free license to
use, copy, modify, and distribute this software in source code or binary
form for use in connection with the web services and APIs provided by
Facebook.
As with any software that integrates with the Facebook platform, your use
of this software is subject to the Facebook Developer Principles and
Policies [http://developers.facebook.com/policy/]. This copyright 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
================================================
FILE: README.md
================================================
# F8 App 2017
This is the entire source code of the official [F8](https://fbf8.com/) app of 2017, available on [Google Play](https://play.google.com/store/apps/details?id=com.facebook.f8) and the [App Store](https://itunes.apple.com/us/app/f8/id853467066).
<img src=".github/screenshot-app@2x.png" width="800">
## How We Build It
We've created a series of tutorials at http://makeitopen.com/ that explain how we built the app, and that dive into how we used React Native, Redux, Relay, GraphQL, and more.
Check out how to set the app up for local development [here](http://makeitopen.com/docs/en/1-A1-local-setup.html)!
================================================
FILE: __mocks__/react-native.js
================================================
import rn from "react-native";
jest.mock("Linking", () => {
return {
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
openURL: jest.fn(),
canOpenURL: jest.fn(),
getInitialURL: jest.fn()
};
});
jest.mock("PushNotificationIOS", () => ({
addEventListener: jest.fn(),
requestPermissions: jest.fn()
}));
module.exports = rn;
================================================
FILE: android/app/BUCK
================================================
import re
# To learn about Buck see [Docs](https://buckbuild.com/).
# To run your application with Buck:
# - install Buck
# - `npm start` - to start the packager
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
#
lib_deps = []
for jarfile in glob(['libs/*.jar']):
name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile)
lib_deps.append(':' + name)
prebuilt_jar(
name = name,
binary_jar = jarfile,
)
for aarfile in glob(['libs/*.aar']):
name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile)
lib_deps.append(':' + name)
android_prebuilt_aar(
name = name,
aar = aarfile,
)
android_library(
name = 'all-libs',
exported_deps = lib_deps
)
android_library(
name = 'app-code',
srcs = glob([
'src/main/java/**/*.java',
]),
deps = [
':all-libs',
':build_config',
':res',
],
)
android_build_config(
name = 'build_config',
package = 'com.f82017',
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'com.f82017',
)
android_binary(
name = 'app',
package_type = 'debug',
manifest = 'src/main/AndroidManifest.xml',
keystore = '//android/keystores:debug',
deps = [
':app-code',
],
)
================================================
FILE: android/app/build.gradle
================================================
apply plugin: "com.android.application"
import com.android.build.OutputFile
/**
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
* and bundleReleaseJsAndAssets).
* These basically call `react-native bundle` with the correct arguments during the Android build
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* `apply from: "../../node_modules/react-native/react.gradle"` line.
*
* project.ext.react = [
* // the name of the generated asset file containing your JS bundle
* bundleAssetName: "index.android.bundle",
*
* // the entry file for bundle generation
* entryFile: "index.android.js",
*
* // whether to bundle JS and assets in debug mode
* bundleInDebug: false,
*
* // whether to bundle JS and assets in release mode
* bundleInRelease: true,
*
* // whether to bundle JS and assets in another build variant (if configured).
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
* // The configuration property can be in the following formats
* // 'bundleIn${productFlavor}${buildType}'
* // 'bundleIn${buildType}'
* // bundleInFreeDebug: true,
* // bundleInPaidRelease: true,
* // bundleInBeta: true,
*
* // the root of your project, i.e. where "package.json" lives
* root: "../../",
*
* // where to put the JS bundle asset in debug mode
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
*
* // where to put the JS bundle asset in release mode
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in debug mode
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in release mode
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
*
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // for example, you might want to remove it from here.
* inputExcludes: ["android/**", "ios/**"],
*
* // override which node gets called and with what additional arguments
* nodeExecutableAndArgs: ["node"]
*
* // supply additional arguments to the packager
* extraPackagerArgs: []
* ]
*/
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.facebook.f8"
minSdkVersion 16
targetSdkVersion 23
versionCode 10000410
versionName "4.0.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
signingConfigs {
release {
storeFile file(F8_RELEASE_STORE_FILE)
storePassword F8_RELEASE_STORE_PASSWORD
keyAlias F8_RELEASE_KEY_ALIAS
keyPassword F8_RELEASE_KEY_PASSWORD
}
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86"
}
}
buildTypes {
release {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
signingConfig signingConfigs.release
debuggable false
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
def versionCodes = ["armeabi-v7a":1, "x86":2]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
dependencies {
compile project(':react-native-linear-gradient')
compile project(':react-native-native-video-player')
compile project(':react-native-push-notification')
compile project(':react-native-photo-view')
compile ('com.google.android.gms:play-services-gcm:10.0.1')
// See https://stackoverflow.com/questions/44190829/facebook-sdk-android-error-building/44190896#44190896
compile(project(':react-native-fbsdk')){
exclude(group: 'com.facebook.android', module: 'facebook-android-sdk')
}
compile "com.facebook.android:facebook-android-sdk:4.22.1"
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
================================================
FILE: android/app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Disabling obfuscation is useful if you collect stack traces from production crashes
# (unless you are using a system that supports de-obfuscate the stack traces).
-dontobfuscate
# React Native
# Keep our interfaces so they can be used by other ProGuard rules.
# See http://sourceforge.net/p/proguard/bugs/466/
-keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
-keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
-keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
# Do not strip any method/class that is annotated with @DoNotStrip
-keep @com.facebook.proguard.annotations.DoNotStrip class *
-keep @com.facebook.common.internal.DoNotStrip class *
-keepclassmembers class * {
@com.facebook.proguard.annotations.DoNotStrip *;
@com.facebook.common.internal.DoNotStrip *;
}
-keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
void set*(***);
*** get*();
}
-keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
-keep class * extends com.facebook.react.bridge.NativeModule { *; }
-keepclassmembers,includedescriptorclasses class * { native <methods>; }
-keepclassmembers class * { @com.facebook.react.uimanager.UIProp <fields>; }
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
-dontwarn com.facebook.react.**
# okhttp
-keepattributes Signature
-keepattributes *Annotation*
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
# okio
-keep class sun.misc.Unsafe { *; }
-dontwarn java.nio.file.*
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
-dontwarn okio.**
================================================
FILE: android/app/src/debug/res/values/strings.xml
================================================
<resources>
<string name="app_name">F8 Debug</string>
<string name="facebook_app_id">619048868222429</string>
</resources>
================================================
FILE: android/app/src/debug/res/values/styles.xml
================================================
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.ReactNative.AppCompat.Light">
<!-- Customize your theme here. -->
</style>
</resources>
================================================
FILE: android/app/src/main/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.facebook.f8"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<permission
android:name="${applicationId}.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="23" />
<application
android:name=".MainApplication"
android:allowBackup="false"
tools:replace="android:allowBackup"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:exported="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
<activity
tools:replace="android:theme"
android:name="com.facebook.FacebookActivity"
android:exported="false"
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<receiver
android:name="com.google.android.gms.gcm.GcmReceiver"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="${applicationId}" />
</intent-filter>
</receiver>
<receiver android:exported="false" android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationPublisher" />
<receiver android:exported="true" android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationBootEventReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service android:exported="false" android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationRegistrationService"/>
<service
android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService"
android:exported="false" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
</application>
</manifest>
================================================
FILE: android/app/src/main/java/com/facebook/f8/MainActivity.java
================================================
package com.facebook.f8;
import com.facebook.react.ReactActivity;
import android.content.Intent;
/*import com.facebook.reactnative.androidsdk.FBSDKPackage;
import com.microsoft.codepush.react.CodePush;*/
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "F82017";
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
MainApplication.getCallbackManager().onActivityResult(requestCode, resultCode, data);
}
}
================================================
FILE: android/app/src/main/java/com/facebook/f8/MainApplication.java
================================================
package com.facebook.f8;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.BV.LinearGradient.LinearGradientPackage;
import com.wog.videoplayer.VideoPlayerPackage;
import com.dieam.reactnativepushnotification.ReactNativePushNotificationPackage;
import com.reactnative.photoview.PhotoViewPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import com.facebook.CallbackManager;
import com.facebook.FacebookSdk;
import com.facebook.reactnative.androidsdk.FBSDKPackage;
import com.facebook.appevents.AppEventsLogger;
import java.util.Arrays;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private static CallbackManager mCallbackManager = CallbackManager.Factory.create();
protected static CallbackManager getCallbackManager() {
return mCallbackManager;
}
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new VideoPlayerPackage(),
new PhotoViewPackage(),
new FBSDKPackage(mCallbackManager),
new ReactNativePushNotificationPackage(),
new LinearGradientPackage()
);
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
FacebookSdk.sdkInitialize(getApplicationContext());
AppEventsLogger.activateApp(this);
}
}
================================================
FILE: android/app/src/main/res/values/strings.xml
================================================
<resources>
<string name="app_name">F8</string>
<string name="facebook_app_id">619048868222429</string>
</resources>
================================================
FILE: android/app/src/main/res/values/styles.xml
================================================
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.ReactNative.AppCompat.Light">
<!-- Customize your theme here. -->
</style>
</resources>
================================================
FILE: android/build.gradle
================================================
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
google()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}
================================================
FILE: android/gradle/wrapper/gradle-wrapper.properties
================================================
#Tue Jan 17 15:39:05 EST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2-all.zip
================================================
FILE: android/gradle.properties
================================================
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.useDeprecatedNdk=true
F8_RELEASE_STORE_FILE=f8-release.keystore
F8_RELEASE_KEY_ALIAS=f8-release
F8_RELEASE_STORE_PASSWORD=K0IvEbWKWyrZR3KpbfDi
F8_RELEASE_KEY_PASSWORD=D7UhkezSHJqXbBVlAlxA
================================================
FILE: android/gradlew
================================================
#!/usr/bin/env bash
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn ( ) {
echo "$*"
}
die ( ) {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
esac
# For Cygwin, ensure paths are in UNIX format before anything is touched.
if $cygwin ; then
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
fi
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >&-
APP_HOME="`pwd -P`"
cd "$SAVED" >&-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
function splitJvmOpts() {
JVM_OPTS=("$@")
}
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
================================================
FILE: android/gradlew.bat
================================================
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
================================================
FILE: android/keystores/BUCK
================================================
keystore(
name = 'debug',
store = 'debug.keystore',
properties = 'debug.keystore.properties',
visibility = [
'PUBLIC',
],
)
================================================
FILE: android/keystores/debug.keystore.properties
================================================
key.store=debug.keystore
key.alias=androiddebugkey
key.store.password=android
key.alias.password=android
================================================
FILE: android/settings.gradle
================================================
rootProject.name = 'F82017'
include ':react-native-linear-gradient'
project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android')
include ':react-native-native-video-player'
project(':react-native-native-video-player').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-native-video-player/android')
include ':react-native-push-notification'
project(':react-native-push-notification').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-push-notification/android')
include ':react-native-photo-view'
project(':react-native-photo-view').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-photo-view/android')
include ':app'
include ':react-native-fbsdk'
project(':react-native-fbsdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fbsdk/android')
================================================
FILE: app.json
================================================
{
"name": "F82017",
"displayName": "F82017"
}
================================================
FILE: docker-compose.yml
================================================
version: "3"
services:
mongo:
image: mongo
networks:
default:
aliases:
- mongo
mongorestore:
build: ./server/mongorestore
depends_on:
- mongo
parse:
build: ./server/parse-server
ports:
- "1337:1337"
depends_on:
- mongo
parse_dashboard:
build: ./server/parse-dashboard
ports:
- "4040:4040"
graphql:
build: ./server/graphql
environment:
- PARSE_URL=http://parse:1337/parse
ports:
- "4000:4000"
================================================
FILE: index.android.js
================================================
import { AppRegistry } from "react-native";
import setup from "./js/setup";
AppRegistry.registerComponent("F82017", setup);
================================================
FILE: index.ios.js
================================================
import { AppRegistry } from "react-native";
import setup from "./js/setup";
AppRegistry.registerComponent("F82017", setup);
================================================
FILE: ios/F82017/AppDelegate.h
================================================
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (nonatomic, strong) UIWindow *window;
@end
================================================
FILE: ios/F82017/AppDelegate.m
================================================
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import "AppDelegate.h"
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <React/RCTPushNotificationManager.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSURL *jsCodeLocation;
[[FBSDKApplicationDelegate sharedInstance] application:application
didFinishLaunchingWithOptions:launchOptions];
#ifdef DEBUG
jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
#else
jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
moduleName:@"F82017"
initialProperties:nil
launchOptions:launchOptions];
rootView.backgroundColor = [[UIColor alloc] initWithRed:0.98f green:0.98f blue:0.94f alpha:1];
NSArray *objects = [[NSBundle mainBundle] loadNibNamed:@"LaunchScreen" owner:self options:nil];
UIImageView *loadingView = [[[objects objectAtIndex:0] subviews] objectAtIndex:0];
loadingView = [[UIImageView alloc] initWithImage:[loadingView image]];
loadingView.frame = [UIScreen mainScreen].bounds;
loadingView.contentMode = UIViewContentModeScaleAspectFill;
rootView.loadingView = loadingView;
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
UIViewController *rootViewController = [UIViewController new];
rootViewController.view = rootView;
self.window.rootViewController = rootViewController;
[self.window makeKeyAndVisible];
return YES;
}
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
BOOL handled = [[FBSDKApplicationDelegate sharedInstance] application:application
openURL:url
sourceApplication:options[UIApplicationOpenURLOptionsSourceApplicationKey]
annotation:options[UIApplicationOpenURLOptionsAnnotationKey]
];
// Add any custom logic here.
return handled;
}
- (void)applicationDidBecomeActive:(UIApplication *)application {
[FBSDKAppEvents activateApp];
}
// Required to register for notifications
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
{
[RCTPushNotificationManager didRegisterUserNotificationSettings:notificationSettings];
}
// Required for the register event.
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
[RCTPushNotificationManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
}
// Required for the notification event. You must call the completion handler after handling the remote notification.
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
{
[RCTPushNotificationManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
}
}
// Optionally implement this method over the previous to receive remote notifications. However
// implement the application:didReceiveRemoteNotification:fetchCompletionHandler: method instead of this one whenever possible.
// If your delegate implements both methods, the app object calls the `application:didReceiveRemoteNotification:fetchCompletionHandler:` method
// Either this method or `application:didReceiveRemoteNotification:fetchCompletionHandler:` is required in order to receive remote notifications.
//
// Required for the registrationError event.
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
{
[RCTPushNotificationManager didFailToRegisterForRemoteNotificationsWithError:error];
}
// Required for the notification event.
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification
{
[RCTPushNotificationManager didReceiveRemoteNotification:notification];
}
// Required for the localNotification event.
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
[RCTPushNotificationManager didReceiveLocalNotification:notification];
}
@end
================================================
FILE: ios/F82017/Base.lproj/LaunchScreen.xib
================================================
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="11762" systemVersion="16B2555" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina5_5" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB">
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="launchscreen.png" translatesAutoresizingMaskIntoConstraints="NO" id="UII-PU-0QB">
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
</imageView>
</subviews>
<color key="backgroundColor" red="0.98431372549019602" green="0.97647058823529409" blue="0.94117647058823528" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="bottom" secondItem="UII-PU-0QB" secondAttribute="bottom" id="0Xg-Nz-jcU"/>
<constraint firstItem="UII-PU-0QB" firstAttribute="top" secondItem="iN0-l3-epB" secondAttribute="top" id="0em-D4-i81"/>
<constraint firstItem="UII-PU-0QB" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" id="HFX-bM-GDN"/>
<constraint firstAttribute="trailing" secondItem="UII-PU-0QB" secondAttribute="trailing" id="aiP-dg-HHa"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<point key="canvasLocation" x="590" y="490"/>
</view>
</objects>
<resources>
<image name="launchscreen.png" width="667" height="667"/>
</resources>
</document>
================================================
FILE: ios/F82017/F82017.entitlements
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>aps-environment</key>
<string>development</string>
</dict>
</plist>
================================================
FILE: ios/F82017/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "60@3x.png",
"scale" : "3x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: ios/F82017/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>F8</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>4.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb619048868222429</string>
<string>f8</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>410</string>
<key>FacebookAppID</key>
<string>619048868222429</string>
<key>FacebookDisplayName</key>
<string>F8 Developer Conference 2017</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
<string>fb-messenger-api</string>
<string>fbauth2</string>
<string>fbshareextension</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
<key>NSAllowsArbitraryLoads</key>
<false/>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Required for use with the FacebookSDK</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
================================================
FILE: ios/F82017/main.m
================================================
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
================================================
FILE: ios/F82017-tvOS/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>NSAppTransportSecurity</key>
<!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
</dict>
</plist>
================================================
FILE: ios/F82017-tvOSTests/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
================================================
FILE: ios/F82017.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
00E356F31AD99517003FC87E /* F82017Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* F82017Tests.m */; };
0186555E1614488AAE4A6B43 /* libRNVideoPlayer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0547D6774A7C4B49AF5E87E4 /* libRNVideoPlayer.a */; };
133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
2DCD954D1E0B4F2C00145EB5 /* F82017Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* F82017Tests.m */; };
3009A9271DF88122006B5D62 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3009A9231DF88122006B5D62 /* Bolts.framework */; };
3009A9281DF88122006B5D62 /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3009A9241DF88122006B5D62 /* FBSDKCoreKit.framework */; };
3009A9291DF88122006B5D62 /* FBSDKLoginKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3009A9251DF88122006B5D62 /* FBSDKLoginKit.framework */; };
3009A92A1DF88122006B5D62 /* FBSDKShareKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3009A9261DF88122006B5D62 /* FBSDKShareKit.framework */; };
3035251A1E4BFD4E0003A60D /* launchscreen.png in Resources */ = {isa = PBXBuildFile; fileRef = 303525171E4BFD4E0003A60D /* launchscreen.png */; };
3035251B1E4BFD4E0003A60D /* launchscreen@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 303525181E4BFD4E0003A60D /* launchscreen@2x.png */; };
3035251C1E4BFD4E0003A60D /* launchscreen@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 303525191E4BFD4E0003A60D /* launchscreen@3x.png */; };
308E35A01E8C2A5E00CAC09E /* libRCTPushNotification.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 308E359D1E8C2A3D00CAC09E /* libRCTPushNotification.a */; };
309371D11E2DBE160019E3C2 /* 512.png in Resources */ = {isa = PBXBuildFile; fileRef = 309371D01E2DBE160019E3C2 /* 512.png */; };
309371D31E2DBEAE0019E3C2 /* 512@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 309371D21E2DBEAE0019E3C2 /* 512@2x.png */; };
3098A8FF1E7C64CD0003742F /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 3098A8FE1E7C64CD0003742F /* libz.tbd */; };
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
B2C3247ED20945EDAAD12F70 /* libRCTFBSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E12A673783B9486B87E8AE7B /* libRCTFBSDK.a */; };
FC554BF677604211A694CB54 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8428BBB5DFD14C4AA4194341 /* libBVLinearGradient.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTActionSheet;
};
00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTGeolocation;
};
00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
remoteInfo = RCTImage;
};
00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B511DB1A9E6C8500147676;
remoteInfo = RCTNetwork;
};
00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
remoteInfo = RCTVibration;
};
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
remoteInfo = F82017;
};
139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTSettings;
};
139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
remoteInfo = RCTWebSocket;
};
146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
remoteInfo = React;
};
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
remoteInfo = "F82017-tvOS";
};
308E335D1E8C1E0800CAC09E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = AC84A694044143A5965F8E75 /* RCTFBSDK.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 9350E0F11CE3B0920041D815;
remoteInfo = RCTFBSDK;
};
308E35411E8C280700CAC09E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D88E526290554232ABA3F7BC /* RNVideoPlayer.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 84BF382F1DBF52980044F03A;
remoteInfo = RNVideoPlayer;
};
308E359C1E8C2A3D00CAC09E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 308E35971E8C2A3D00CAC09E /* RCTPushNotification.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTPushNotification;
};
308E359E1E8C2A3D00CAC09E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 308E35971E8C2A3D00CAC09E /* RCTPushNotification.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D05745F1DE6004600184BB4;
remoteInfo = "RCTPushNotification-tvOS";
};
308E376E1E8D63B000CAC09E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 75B177E8AB114A5C9AE0BF0C /* BVLinearGradient.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = BVLinearGradient;
};
3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
remoteInfo = "RCTImage-tvOS";
};
3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28471D9B043800D4039D;
remoteInfo = "RCTLinking-tvOS";
};
3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
remoteInfo = "RCTNetwork-tvOS";
};
3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28611D9B046600D4039D;
remoteInfo = "RCTSettings-tvOS";
};
3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
remoteInfo = "RCTText-tvOS";
};
3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28881D9B049200D4039D;
remoteInfo = "RCTWebSocket-tvOS";
};
3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
remoteInfo = "React-tvOS";
};
3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
remoteInfo = yoga;
};
3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
remoteInfo = "yoga-tvOS";
};
3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
remoteInfo = cxxreact;
};
3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
remoteInfo = "cxxreact-tvOS";
};
3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
remoteInfo = jschelpers;
};
3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
remoteInfo = "jschelpers-tvOS";
};
5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTAnimation;
};
5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
remoteInfo = "RCTAnimation-tvOS";
};
78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTLinking;
};
832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B5119B1A9E6C1200147676;
remoteInfo = RCTText;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
00E356EE1AD99517003FC87E /* F82017Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = F82017Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
00E356F21AD99517003FC87E /* F82017Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = F82017Tests.m; sourceTree = "<group>"; };
0547D6774A7C4B49AF5E87E4 /* libRNVideoPlayer.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVideoPlayer.a; sourceTree = "<group>"; };
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
13B07F961A680F5B00A75B9A /* F82017.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = F82017.app; sourceTree = BUILT_PRODUCTS_DIR; };
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = F82017/AppDelegate.h; sourceTree = "<group>"; };
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = F82017/AppDelegate.m; sourceTree = "<group>"; };
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = F82017/Images.xcassets; sourceTree = "<group>"; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = F82017/Info.plist; sourceTree = "<group>"; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = F82017/main.m; sourceTree = "<group>"; };
146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
2D02E47B1E0B4A5D006451C7 /* F82017-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "F82017-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2D02E4901E0B4A5D006451C7 /* F82017-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "F82017-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
3009A9231DF88122006B5D62 /* Bolts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Bolts.framework; path = ../../../../../../Documents/FacebookSDK/Bolts.framework; sourceTree = "<group>"; };
3009A9241DF88122006B5D62 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FBSDKCoreKit.framework; path = ../../../../../../Documents/FacebookSDK/FBSDKCoreKit.framework; sourceTree = "<group>"; };
3009A9251DF88122006B5D62 /* FBSDKLoginKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FBSDKLoginKit.framework; path = ../../../../../../Documents/FacebookSDK/FBSDKLoginKit.framework; sourceTree = "<group>"; };
3009A9261DF88122006B5D62 /* FBSDKShareKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FBSDKShareKit.framework; path = ../../../../../../Documents/FacebookSDK/FBSDKShareKit.framework; sourceTree = "<group>"; };
303525171E4BFD4E0003A60D /* launchscreen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = launchscreen.png; sourceTree = "<group>"; };
303525181E4BFD4E0003A60D /* launchscreen@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "launchscreen@2x.png"; sourceTree = "<group>"; };
303525191E4BFD4E0003A60D /* launchscreen@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "launchscreen@3x.png"; sourceTree = "<group>"; };
30391C631E48DF35005B8B86 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
30391C651E48DF3F005B8B86 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
30391C671E48DF4D005B8B86 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
307A4B9C1E1D991A0062A662 /* F82017.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = F82017.entitlements; path = F82017/F82017.entitlements; sourceTree = "<group>"; };
308E35971E8C2A3D00CAC09E /* RCTPushNotification.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTPushNotification.xcodeproj; path = "../node_modules/react-native/Libraries/PushNotificationIOS/RCTPushNotification.xcodeproj"; sourceTree = "<group>"; };
309371D01E2DBE160019E3C2 /* 512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 512.png; sourceTree = "<group>"; };
309371D21E2DBEAE0019E3C2 /* 512@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "512@2x.png"; sourceTree = "<group>"; };
3098A8FE1E7C64CD0003742F /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
75B177E8AB114A5C9AE0BF0C /* BVLinearGradient.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = BVLinearGradient.xcodeproj; path = "../node_modules/react-native-linear-gradient/BVLinearGradient.xcodeproj"; sourceTree = "<group>"; };
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
8428BBB5DFD14C4AA4194341 /* libBVLinearGradient.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libBVLinearGradient.a; sourceTree = "<group>"; };
AC84A694044143A5965F8E75 /* RCTFBSDK.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTFBSDK.xcodeproj; path = "../node_modules/react-native-fbsdk/ios/RCTFBSDK.xcodeproj"; sourceTree = "<group>"; };
D88E526290554232ABA3F7BC /* RNVideoPlayer.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVideoPlayer.xcodeproj; path = "../node_modules/react-native-native-video-player/ios/RNVideoPlayer.xcodeproj"; sourceTree = "<group>"; };
E12A673783B9486B87E8AE7B /* libRCTFBSDK.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTFBSDK.a; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
00E356EB1AD99517003FC87E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
308E35A01E8C2A5E00CAC09E /* libRCTPushNotification.a in Frameworks */,
3009A9291DF88122006B5D62 /* FBSDKLoginKit.framework in Frameworks */,
3009A9271DF88122006B5D62 /* Bolts.framework in Frameworks */,
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
146834051AC3E58100842450 /* libReact.a in Frameworks */,
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
3009A92A1DF88122006B5D62 /* FBSDKShareKit.framework in Frameworks */,
3009A9281DF88122006B5D62 /* FBSDKCoreKit.framework in Frameworks */,
B2C3247ED20945EDAAD12F70 /* libRCTFBSDK.a in Frameworks */,
FC554BF677604211A694CB54 /* libBVLinearGradient.a in Frameworks */,
0186555E1614488AAE4A6B43 /* libRNVideoPlayer.a in Frameworks */,
3098A8FF1E7C64CD0003742F /* libz.tbd in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */,
2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
00C302A81ABCB8CE00DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302B61ABCB90400DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302BC1ABCB91800DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302D41ABCB9D200DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302E01ABCB9EE00DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
);
name = Products;
sourceTree = "<group>";
};
00E356EF1AD99517003FC87E /* F82017Tests */ = {
isa = PBXGroup;
children = (
00E356F21AD99517003FC87E /* F82017Tests.m */,
00E356F01AD99517003FC87E /* Supporting Files */,
);
path = F82017Tests;
sourceTree = "<group>";
};
00E356F01AD99517003FC87E /* Supporting Files */ = {
isa = PBXGroup;
children = (
00E356F11AD99517003FC87E /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
139105B71AF99BAD00B5F7CC /* Products */ = {
isa = PBXGroup;
children = (
139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
139FDEE71B06529A00C62182 /* Products */ = {
isa = PBXGroup;
children = (
139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
13B07FAE1A68108700A75B9A /* F82017 */ = {
isa = PBXGroup;
children = (
307A4B9C1E1D991A0062A662 /* F82017.entitlements */,
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
13B07FB01A68108700A75B9A /* AppDelegate.m */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
13B07FB61A68108700A75B9A /* Info.plist */,
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
13B07FB71A68108700A75B9A /* main.m */,
);
name = F82017;
sourceTree = "<group>";
};
146834001AC3E56700842450 /* Products */ = {
isa = PBXGroup;
children = (
146834041AC3E56700842450 /* libReact.a */,
3DAD3EA31DF850E9000B6D8A /* libReact.a */,
3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
);
name = Products;
sourceTree = "<group>";
};
3006989C1F0338030070FAAA /* Recovered References */ = {
isa = PBXGroup;
children = (
E12A673783B9486B87E8AE7B /* libRCTFBSDK.a */,
8428BBB5DFD14C4AA4194341 /* libBVLinearGradient.a */,
0547D6774A7C4B49AF5E87E4 /* libRNVideoPlayer.a */,
309371D21E2DBEAE0019E3C2 /* 512@2x.png */,
303525171E4BFD4E0003A60D /* launchscreen.png */,
303525181E4BFD4E0003A60D /* launchscreen@2x.png */,
309371D01E2DBE160019E3C2 /* 512.png */,
303525191E4BFD4E0003A60D /* launchscreen@3x.png */,
);
name = "Recovered References";
sourceTree = "<group>";
};
308E33481E8C1E0800CAC09E /* Products */ = {
isa = PBXGroup;
children = (
308E335E1E8C1E0800CAC09E /* libRCTFBSDK.a */,
);
name = Products;
sourceTree = "<group>";
};
308E353E1E8C280700CAC09E /* Products */ = {
isa = PBXGroup;
children = (
308E35421E8C280700CAC09E /* libRNVideoPlayer.a */,
);
name = Products;
sourceTree = "<group>";
};
308E35981E8C2A3D00CAC09E /* Products */ = {
isa = PBXGroup;
children = (
308E359D1E8C2A3D00CAC09E /* libRCTPushNotification.a */,
308E359F1E8C2A3D00CAC09E /* libRCTPushNotification-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
308E376B1E8D63B000CAC09E /* Products */ = {
isa = PBXGroup;
children = (
308E376F1E8D63B000CAC09E /* libBVLinearGradient.a */,
);
name = Products;
sourceTree = "<group>";
};
5E91572E1DD0AC6500FF2AA8 /* Products */ = {
isa = PBXGroup;
children = (
5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
);
name = Products;
sourceTree = "<group>";
};
78C398B11ACF4ADC00677621 /* Products */ = {
isa = PBXGroup;
children = (
78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
7A3404E71E26487D967C39EB /* Frameworks */ = {
isa = PBXGroup;
children = (
3098A8FE1E7C64CD0003742F /* libz.tbd */,
30391C671E48DF4D005B8B86 /* libsqlite3.0.tbd */,
30391C651E48DF3F005B8B86 /* SystemConfiguration.framework */,
30391C631E48DF35005B8B86 /* CoreData.framework */,
3009A9231DF88122006B5D62 /* Bolts.framework */,
3009A9241DF88122006B5D62 /* FBSDKCoreKit.framework */,
3009A9251DF88122006B5D62 /* FBSDKLoginKit.framework */,
3009A9261DF88122006B5D62 /* FBSDKShareKit.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
isa = PBXGroup;
children = (
308E35971E8C2A3D00CAC09E /* RCTPushNotification.xcodeproj */,
5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
146833FF1AC3E56700842450 /* React.xcodeproj */,
00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
AC84A694044143A5965F8E75 /* RCTFBSDK.xcodeproj */,
D88E526290554232ABA3F7BC /* RNVideoPlayer.xcodeproj */,
75B177E8AB114A5C9AE0BF0C /* BVLinearGradient.xcodeproj */,
);
name = Libraries;
sourceTree = "<group>";
};
832341B11AAA6A8300B99B32 /* Products */ = {
isa = PBXGroup;
children = (
832341B51AAA6A8300B99B32 /* libRCTText.a */,
3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
13B07FAE1A68108700A75B9A /* F82017 */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
00E356EF1AD99517003FC87E /* F82017Tests */,
83CBBA001A601CBA00E9B192 /* Products */,
7A3404E71E26487D967C39EB /* Frameworks */,
B6298A78CBB448B794708EE9 /* Resources */,
3006989C1F0338030070FAAA /* Recovered References */,
);
indentWidth = 2;
sourceTree = "<group>";
tabWidth = 2;
};
83CBBA001A601CBA00E9B192 /* Products */ = {
isa = PBXGroup;
children = (
13B07F961A680F5B00A75B9A /* F82017.app */,
00E356EE1AD99517003FC87E /* F82017Tests.xctest */,
2D02E47B1E0B4A5D006451C7 /* F82017-tvOS.app */,
2D02E4901E0B4A5D006451C7 /* F82017-tvOSTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
B6298A78CBB448B794708EE9 /* Resources */ = {
isa = PBXGroup;
children = (
);
name = Resources;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
00E356ED1AD99517003FC87E /* F82017Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "F82017Tests" */;
buildPhases = (
00E356EA1AD99517003FC87E /* Sources */,
00E356EB1AD99517003FC87E /* Frameworks */,
00E356EC1AD99517003FC87E /* Resources */,
);
buildRules = (
);
dependencies = (
00E356F51AD99517003FC87E /* PBXTargetDependency */,
);
name = F82017Tests;
productName = F82017Tests;
productReference = 00E356EE1AD99517003FC87E /* F82017Tests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
13B07F861A680F5B00A75B9A /* F82017 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "F82017" */;
buildPhases = (
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = F82017;
productName = "Hello World";
productReference = 13B07F961A680F5B00A75B9A /* F82017.app */;
productType = "com.apple.product-type.application";
};
2D02E47A1E0B4A5D006451C7 /* F82017-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "F82017-tvOS" */;
buildPhases = (
2D02E4771E0B4A5D006451C7 /* Sources */,
2D02E4781E0B4A5D006451C7 /* Frameworks */,
2D02E4791E0B4A5D006451C7 /* Resources */,
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
);
buildRules = (
);
dependencies = (
);
name = "F82017-tvOS";
productName = "F82017-tvOS";
productReference = 2D02E47B1E0B4A5D006451C7 /* F82017-tvOS.app */;
productType = "com.apple.product-type.application";
};
2D02E48F1E0B4A5D006451C7 /* F82017-tvOSTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "F82017-tvOSTests" */;
buildPhases = (
2D02E48C1E0B4A5D006451C7 /* Sources */,
2D02E48D1E0B4A5D006451C7 /* Frameworks */,
2D02E48E1E0B4A5D006451C7 /* Resources */,
);
buildRules = (
);
dependencies = (
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
);
name = "F82017-tvOSTests";
productName = "F82017-tvOSTests";
productReference = 2D02E4901E0B4A5D006451C7 /* F82017-tvOSTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
83CBB9F71A601CBA00E9B192 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 610;
ORGANIZATIONNAME = Facebook;
TargetAttributes = {
00E356ED1AD99517003FC87E = {
CreatedOnToolsVersion = 6.2;
TestTargetID = 13B07F861A680F5B00A75B9A;
};
13B07F861A680F5B00A75B9A = {
DevelopmentTeam = 9B8M3M76P9;
SystemCapabilities = {
com.apple.Push = {
enabled = 1;
};
};
};
2D02E47A1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
};
2D02E48F1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
TestTargetID = 2D02E47A1E0B4A5D006451C7;
};
};
};
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "F82017" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 83CBB9F61A601CBA00E9B192;
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
projectDirPath = "";
projectReferences = (
{
ProductGroup = 308E376B1E8D63B000CAC09E /* Products */;
ProjectRef = 75B177E8AB114A5C9AE0BF0C /* BVLinearGradient.xcodeproj */;
},
{
ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
},
{
ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
},
{
ProductGroup = 308E33481E8C1E0800CAC09E /* Products */;
ProjectRef = AC84A694044143A5965F8E75 /* RCTFBSDK.xcodeproj */;
},
{
ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
},
{
ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
},
{
ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
},
{
ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
},
{
ProductGroup = 308E35981E8C2A3D00CAC09E /* Products */;
ProjectRef = 308E35971E8C2A3D00CAC09E /* RCTPushNotification.xcodeproj */;
},
{
ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
},
{
ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
},
{
ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
},
{
ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
},
{
ProductGroup = 146834001AC3E56700842450 /* Products */;
ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
},
{
ProductGroup = 308E353E1E8C280700CAC09E /* Products */;
ProjectRef = D88E526290554232ABA3F7BC /* RNVideoPlayer.xcodeproj */;
},
);
projectRoot = "";
targets = (
13B07F861A680F5B00A75B9A /* F82017 */,
00E356ED1AD99517003FC87E /* F82017Tests */,
2D02E47A1E0B4A5D006451C7 /* F82017-tvOS */,
2D02E48F1E0B4A5D006451C7 /* F82017-tvOSTests */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTActionSheet.a;
remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTGeolocation.a;
remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTImage.a;
remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTNetwork.a;
remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVibration.a;
remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTSettings.a;
remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTWebSocket.a;
remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
146834041AC3E56700842450 /* libReact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libReact.a;
remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
308E335E1E8C1E0800CAC09E /* libRCTFBSDK.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTFBSDK.a;
remoteRef = 308E335D1E8C1E0800CAC09E /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
308E35421E8C280700CAC09E /* libRNVideoPlayer.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRNVideoPlayer.a;
remoteRef = 308E35411E8C280700CAC09E /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
308E359D1E8C2A3D00CAC09E /* libRCTPushNotification.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTPushNotification.a;
remoteRef = 308E359C1E8C2A3D00CAC09E /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
308E359F1E8C2A3D00CAC09E /* libRCTPushNotification-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTPushNotification-tvOS.a";
remoteRef = 308E359E1E8C2A3D00CAC09E /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
308E376F1E8D63B000CAC09E /* libBVLinearGradient.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libBVLinearGradient.a;
remoteRef = 308E376E1E8D63B000CAC09E /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTImage-tvOS.a";
remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTLinking-tvOS.a";
remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTNetwork-tvOS.a";
remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTSettings-tvOS.a";
remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTText-tvOS.a";
remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTWebSocket-tvOS.a";
remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libReact.a;
remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libyoga.a;
remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libyoga.a;
remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libcxxreact.a;
remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libcxxreact.a;
remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjschelpers.a;
remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjschelpers.a;
remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTAnimation.a;
remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTAnimation.a;
remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTLinking.a;
remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTText.a;
remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXResourcesBuildPhase section */
00E356EC1AD99517003FC87E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8E1A680F5B00A75B9A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
309371D31E2DBEAE0019E3C2 /* 512@2x.png in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
3035251A1E4BFD4E0003A60D /* launchscreen.png in Resources */,
3035251B1E4BFD4E0003A60D /* launchscreen@2x.png in Resources */,
309371D11E2DBE160019E3C2 /* 512.png in Resources */,
3035251C1E4BFD4E0003A60D /* launchscreen@3x.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4791E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48E1E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh";
};
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native Code And Images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
00E356EA1AD99517003FC87E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
00E356F31AD99517003FC87E /* F82017Tests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F871A680F5B00A75B9A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
13B07FC11A68108700A75B9A /* main.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4771E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48C1E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2DCD954D1E0B4F2C00145EB5 /* F82017Tests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 13B07F861A680F5B00A75B9A /* F82017 */;
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
};
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 2D02E47A1E0B4A5D006451C7 /* F82017-tvOS */;
targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
13B07FB21A68108700A75B9A /* Base */,
);
name = LaunchScreen.xib;
path = F82017;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
00E356F61AD99517003FC87E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
);
INFOPLIST_FILE = F82017Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/F82017.app/F82017";
};
name = Debug;
};
00E356F71AD99517003FC87E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
);
INFOPLIST_FILE = F82017Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/F82017.app/F82017";
};
name = Release;
};
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODEPUSH_KEY = "o5k128-QbdToCO12IQl4zgJlxZQbVkEG2YjY-";
CODE_SIGN_ENTITLEMENTS = F82017/F82017.entitlements;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = 9B8M3M76P9;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native/React/**",
);
INFOPLIST_FILE = F82017/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.parse.f8;
PRODUCT_NAME = F82017;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODEPUSH_KEY = "qFZ_DANxpdRqMzw6anqVg9Z0D_RuVkEG2YjY-";
CODE_SIGN_ENTITLEMENTS = F82017/F82017.entitlements;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 9B8M3M76P9;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native/React/**",
);
INFOPLIST_FILE = F82017/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.parse.f8;
PRODUCT_NAME = F82017;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
2D02E4971E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
);
INFOPLIST_FILE = "F82017-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.F82017-tvOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Debug;
};
2D02E4981E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
);
INFOPLIST_FILE = "F82017-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.F82017-tvOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Release;
};
2D02E4991E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "F82017-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.F82017-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/F82017-tvOS.app/F82017-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Debug;
};
2D02E49A1E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "F82017-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.F82017-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/F82017-tvOS.app/F82017-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Release;
};
83CBBA201A601CBA00E9B192 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = "~/Documents/FacebookSDK";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
name = Debug;
};
83CBBA211A601CBA00E9B192 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = "~/Documents/FacebookSDK";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "F82017Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
00E356F61AD99517003FC87E /* Debug */,
00E356F71AD99517003FC87E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "F82017" */ = {
isa = XCConfigurationList;
buildConfigurations = (
13B07F941A680F5B00A75B9A /* Debug */,
13B07F951A680F5B00A75B9A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "F82017-tvOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4971E0B4A5E006451C7 /* Debug */,
2D02E4981E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "F82017-tvOSTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4991E0B4A5E006451C7 /* Debug */,
2D02E49A1E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "F82017" */ = {
isa = XCConfigurationList;
buildConfigurations = (
83CBBA201A601CBA00E9B192 /* Debug */,
83CBBA211A601CBA00E9B192 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
}
================================================
FILE: ios/F82017.xcodeproj/xcshareddata/xcschemes/F82017-tvOS.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0820"
version = "1.3">
<BuildAction
parallelizeBuildables = "NO"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D2A28121D9B038B00D4039D"
BuildableName = "libReact.a"
BlueprintName = "React-tvOS"
ReferencedContainer = "container:../node_modules/react-native/React/React.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "F82017-tvOS.app"
BlueprintName = "F82017-tvOS"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
BuildableName = "F82017-tvOSTests.xctest"
BlueprintName = "F82017-tvOSTests"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
BuildableName = "F82017-tvOSTests.xctest"
BlueprintName = "F82017-tvOSTests"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "F82017-tvOS.app"
BlueprintName = "F82017-tvOS"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "F82017-tvOS.app"
BlueprintName = "F82017-tvOS"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "F82017-tvOS.app"
BlueprintName = "F82017-tvOS"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
================================================
FILE: ios/F82017.xcodeproj/xcshareddata/xcschemes/F82017.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0620"
version = "1.3">
<BuildAction
parallelizeBuildables = "NO"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "83CBBA2D1A601D0E00E9B192"
BuildableName = "libReact.a"
BlueprintName = "React"
ReferencedContainer = "container:../node_modules/react-native/React/React.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "F82017.app"
BlueprintName = "F82017"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
BuildableName = "F82017Tests.xctest"
BlueprintName = "F82017Tests"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
BuildableName = "F82017Tests.xctest"
BlueprintName = "F82017Tests"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "F82017.app"
BlueprintName = "F82017"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "F82017.app"
BlueprintName = "F82017"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "F82017.app"
BlueprintName = "F82017"
ReferencedContainer = "container:F82017.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
================================================
FILE: ios/F82017Tests/F82017Tests.m
================================================
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import <React/RCTLog.h>
#import <React/RCTRootView.h>
#define TIMEOUT_SECONDS 600
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
@interface F82017Tests : XCTestCase
@end
@implementation F82017Tests
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
{
if (test(view)) {
return YES;
}
for (UIView *subview in [view subviews]) {
if ([self findSubviewInView:subview matching:test]) {
return YES;
}
}
return NO;
}
- (void)testRendersWelcomeScreen
{
UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
BOOL foundElement = NO;
__block NSString *redboxError = nil;
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
if (level >= RCTLogLevelError) {
redboxError = message;
}
});
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
return YES;
}
return NO;
}];
}
RCTSetLogFunction(RCTDefaultLogFunction);
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
}
@end
================================================
FILE: ios/F82017Tests/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
================================================
FILE: js/F8Analytics.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
import { AppEventsLogger } from "react-native-fbsdk";
export default class F8Analytics {
static logEvent(name, value, opts) {
AppEventsLogger.logEvent(name, value, opts);
}
}
================================================
FILE: js/F8App.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import React from "react";
import { AppState, StyleSheet, StatusBar, View } from "react-native";
import LoginScreen from "./login/LoginScreen";
import PushNotificationsController from "./PushNotificationsController";
import F8Navigator from "./F8Navigator";
import {
loadConfig,
loadMaps,
loadNotifications,
loadSessions,
loadFAQs,
loadPages,
loadFriendsSchedules,
loadSurveys,
loadVideos,
loadPolicies,
restoreSchedule
} from "./actions";
import { updateInstallation } from "./actions/installation";
import { connect } from "react-redux";
import { version } from "./env.js";
class F8App extends React.Component {
componentDidMount() {
AppState.addEventListener("change", this.handleAppStateChange);
// TODO: Make this list smaller, we basically download the whole internet
this.props.dispatch(loadSessions());
this.props.dispatch(loadConfig());
this.props.dispatch(loadNotifications());
this.props.dispatch(loadVideos());
this.props.dispatch(loadMaps());
this.props.dispatch(loadFAQs());
this.props.dispatch(loadPages());
this.props.dispatch(loadPolicies());
if (this.props.isLoggedIn) {
this.props.dispatch(restoreSchedule());
this.props.dispatch(loadSurveys());
this.props.dispatch(loadFriendsSchedules());
}
updateInstallation({ version });
}
componentWillUnmount() {
AppState.removeEventListener("change", this.handleAppStateChange);
}
handleAppStateChange = appState => {
if (appState === "active") {
this.props.dispatch(loadSessions());
this.props.dispatch(loadVideos());
this.props.dispatch(loadNotifications());
if (this.props.isLoggedIn) {
this.props.dispatch(restoreSchedule());
this.props.dispatch(loadSurveys());
}
}
};
render() {
if (!this.props.skipWelcomeScreen) {
return <LoginScreen />;
}
return (
<View style={styles.container}>
<StatusBar
hidden={false}
translucent={true}
backgroundColor="rgba(0, 0, 0, 0)"
barStyle="light-content"
/>
<F8Navigator />
<PushNotificationsController />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1
}
});
function select(store) {
return {
isLoggedIn: store.user.isLoggedIn,
skipWelcomeScreen: store.user.isLoggedIn || store.user.hasSkippedLogin
};
}
module.exports = connect(select)(F8App);
================================================
FILE: js/F8Navigator.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*/
"use strict";
import React from "react";
import Platform from "Platform";
import BackAndroid from "BackAndroid";
import F8TabsView from "./tabs/F8TabsView";
import FriendsScheduleView from "./tabs/schedule/FriendsScheduleView";
import FilterScreen from "./filter/FilterScreen";
import LoginModal from "./login/LoginModal";
import { Navigator } from "react-native-deprecated-custom-components";
import SessionsCarousel from "./tabs/schedule/SessionsCarousel";
import SharingSettingsScreen from "./tabs/schedule/SharingSettingsScreen";
import F8WebView from "./common/F8WebView";
import RatingScreen from "./rating/RatingScreen";
import { StyleSheet } from "react-native";
import { connect } from "react-redux";
import F8Colors from "./common/F8Colors";
import F8VideoView from "./tabs/videos/F8VideoView";
import { switchTab } from "./actions";
import F8MapView from "./tabs/maps/F8MapView";
import DemosCarousel from "./tabs/demos/DemosCarousel";
const F8Navigator = React.createClass({
_handlers: ([]: Array<() => boolean>),
componentDidMount: function() {
BackAndroid.addEventListener("hardwareBackPress", this.handleBackButton);
},
componentWillUnmount: function() {
BackAndroid.removeEventListener("hardwareBackPress", this.handleBackButton);
},
getChildContext() {
return {
addBackButtonListener: this.addBackButtonListener,
removeBackButtonListener: this.removeBackButtonListener
};
},
addBackButtonListener: function(listener) {
this._handlers.push(listener);
},
removeBackButtonListener: function(listener) {
this._handlers = this._handlers.filter(handler => handler !== listener);
},
handleBackButton: function() {
for (let i = this._handlers.length - 1; i >= 0; i--) {
if (this._handlers[i]()) {
return true;
}
}
const navigator = this._navigator;
if (navigator && navigator.getCurrentRoutes().length > 1) {
navigator.pop();
return true;
}
if (this.props.tab !== "schedule") {
this.props.dispatch(switchTab("schedule"));
return true;
}
return false;
},
render: function() {
return (
<Navigator
ref={c => (this._navigator = c)}
style={styles.container}
configureScene={route => {
if (Platform.OS === "android") {
return Navigator.SceneConfigs.FloatFromBottomAndroid;
}
// TODO: Proper scene support
if (
route.shareSettings ||
route.friend ||
route.webview ||
route.video ||
route.session ||
route.allSession ||
route.allDemos
) {
return Navigator.SceneConfigs.PushFromRight;
} else {
return Navigator.SceneConfigs.FloatFromBottom;
}
}}
initialRoute={{}}
renderScene={this.renderScene}
/>
);
},
renderScene: function(route, navigator) {
if (route.allSessions) {
return <SessionsCarousel {...route} navigator={navigator} />;
} else if (route.session) {
return <SessionsCarousel session={route.session} navigator={navigator} />;
} else if (route.filter) {
return <FilterScreen navigator={navigator} {...route} />;
} else if (route.friend) {
return (
<FriendsScheduleView friend={route.friend} navigator={navigator} />
);
} else if (route.login) {
return <LoginModal navigator={navigator} onLogin={route.callback} />;
} else if (route.shareSettings) {
// else if (route.share){ return <SharingSettingsModal navigator={navigator} />; }
return <SharingSettingsScreen navigator={navigator} />;
} else if (route.rate) {
return <RatingScreen navigator={navigator} survey={route.survey} />;
} else if (route.webview) {
return <F8WebView {...route} url={route.webview} navigator={navigator} />;
} else if (route.video) {
return <F8VideoView video={route.video} navigator={navigator} />;
} else if (route.maps) {
return <F8MapView directions={false} navigator={navigator} />;
} else if (route.allDemos) {
return <DemosCarousel {...route} navigator={navigator} />;
} else {
return <F8TabsView navigator={navigator} />;
}
}
});
F8Navigator.childContextTypes = {
addBackButtonListener: React.PropTypes.func,
removeBackButtonListener: React.PropTypes.func
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: F8Colors.bianca
}
});
function select(store) {
return {
tab: store.navigation.tab,
isLoggedIn: store.user.isLoggedIn || store.user.hasSkippedLogin
};
}
module.exports = connect(select)(F8Navigator);
================================================
FILE: js/FacebookSDK.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* This module implements a part of Facebook JavaScript SDK
* https://developers.facebook.com/docs/javascript/reference/v2.2
*
* @flow
*/
"use strict";
import {
LoginManager,
AccessToken,
GraphRequest,
GraphRequestManager
} from "react-native-fbsdk";
const emptyFunction = () => {};
import mapObject from "fbjs/lib/mapObject";
type AuthResponse = {
userID: string,
accessToken: string,
expiresIn: number
};
type LoginOptions = { scope: string };
type LoginCallback = (result: {
authResponse?: AuthResponse,
error?: Error
}) => void;
let _authResponse: ?AuthResponse = null;
async function loginWithFacebookSDK(
options: LoginOptions
): Promise<AuthResponse> {
const scope = options.scope || "public_profile";
const permissions = scope.split(",");
const loginResult = await LoginManager.logInWithReadPermissions(permissions);
if (loginResult.isCancelled) {
throw new Error("Canceled by user");
}
const accessToken = await AccessToken.getCurrentAccessToken();
if (!accessToken) {
throw new Error("No access token");
}
_authResponse = {
userID: accessToken.userID, // FIXME: RNFBSDK bug: userId -> userID
accessToken: accessToken.accessToken,
expiresIn: Math.round((accessToken.expirationTime - Date.now()) / 1000)
};
return _authResponse;
}
const FacebookSDK = {
init() {
// This is needed by Parse
window.FB = FacebookSDK;
},
login(callback: LoginCallback, options: LoginOptions) {
loginWithFacebookSDK(options).then(
authResponse => callback({ authResponse }),
error => callback({ error })
);
},
getAuthResponse(): ?AuthResponse {
return _authResponse;
},
logout() {
LoginManager.logOut();
},
/**
* Make a API call to Graph server. This is the **real** RESTful API.
*
* Except the path, all arguments to this function are optional. So any of
* these are valid:
*
* FB.api('/me') // throw away the response
* FB.api('/me', function(r) { console.log(r) })
* FB.api('/me', { fields: 'email' }); // throw away response
* FB.api('/me', { fields: 'email' }, function(r) { console.log(r) });
* FB.api('/12345678', 'delete', function(r) { console.log(r) });
* FB.api(
* '/me/feed',
* 'post',
* { body: 'hi there' },
* function(r) { console.log(r) }
* );
*
* param path {String} the url path
* param method {String} the http method
* param params {Object} the parameters for the query
* param cb {Function} the callback function to handle the response
*/
api: function(path: string, ...args: Array<mixed>) {
const argByType = {};
args.forEach(arg => {
argByType[typeof arg] = arg;
});
const httpMethod = (argByType.string || "get").toUpperCase();
const params = argByType.object || {};
const callback = argByType.function || emptyFunction;
// FIXME: Move this into RNFBSDK
// GraphRequest requires all parameters to be in {string: 'abc'}
// or {uri: 'xyz'} format
const parameters = mapObject(params, value => ({ string: value }));
function processResponse(error, result) {
// FIXME: RNFBSDK bug: result is Object on iOS and string on Android
if (!error && typeof result === "string") {
try {
result = JSON.parse(result);
} catch (e) {
error = e;
}
}
const data = error ? { error } : result;
callback(data);
}
const request = new GraphRequest(
path,
{ parameters, httpMethod },
processResponse
);
new GraphRequestManager().addRequest(request).start();
}
};
module.exports = FacebookSDK;
================================================
FILE: js/Playground.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*/
"use strict";
import React from "react";
import View from "View";
class Playground extends React.Component {
state: {
content: Array<ReactElement>
};
constructor() {
super();
const content = [];
const define = (name: string, render: Function) => {
content.push(<Example key={name} render={render} />);
};
// const Module = require('F8PageControl');
const Module = require("F8Header");
// const Module = require('./tabs/schedule/AddToScheduleButton');
// const Module = require('./rating/Header');
// $FlowFixMe: doesn't understand static
Module.__cards__(define);
this.state = { content };
}
render() {
return (
<View style={{ backgroundColor: "#336699", flex: 1 }}>
{this.state.content}
</View>
);
}
}
class Example extends React.Component {
state = {
inner: null
};
render() {
const content = this.props.render(this.state.inner, inner =>
this.setState({ inner })
);
return <View>{content}</View>;
}
}
module.exports = Playground;
================================================
FILE: js/PushNotificationsController.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import React from "react";
import unseenNotificationsCount from "./tabs/notifications/unseenNotificationsCount";
import { AppState, Platform, PushNotificationIOS } from "react-native";
// $FlowIssue
import PushNotification from "react-native-push-notification";
import { connect } from "react-redux";
import {
storeDeviceToken,
receivePushNotification,
updateInstallation,
markAllNotificationsAsSeen
} from "./actions";
import type { Dispatch } from "./actions/types";
import { gcmSenderId } from "./env";
class AppBadgeController extends React.Component {
props: {
tab: string,
enabled: boolean,
badge: number,
dispatch: Dispatch
};
handleAppStateChange = appState => {
if (appState === "active") {
this.updateAppBadge();
if (this.props.tab === "info") {
this.eventuallyMarkNotificationsAsSeen();
}
}
};
componentDidMount() {
AppState.addEventListener("change", this.handleAppStateChange);
const { dispatch } = this.props;
PushNotification.configure({
onRegister: ({ token }) => dispatch(storeDeviceToken(token)),
onNotification: notif => dispatch(receivePushNotification(notif)),
senderID: gcmSenderId,
requestPermissions: this.props.enabled
});
this.updateAppBadge();
}
componentWillUnmount() {
AppState.removeEventListener("change", this.handleAppStateChange);
}
componentDidUpdate(prevProps) {
if (!prevProps.enabled && this.props.enabled) {
PushNotification.requestPermissions();
}
if (this.props.badge !== prevProps.badge) {
this.updateAppBadge();
}
if (this.props.tab === "info" && prevProps.tab !== "info") {
this.eventuallyMarkNotificationsAsSeen();
}
}
updateAppBadge() {
if (this.props.enabled && Platform.OS === "ios") {
PushNotificationIOS.setApplicationIconBadgeNumber(this.props.badge);
updateInstallation({ badge: this.props.badge });
}
}
eventuallyMarkNotificationsAsSeen() {
const { dispatch } = this.props;
setTimeout(() => dispatch(markAllNotificationsAsSeen()), 1000);
}
render() {
return null;
}
}
function select(store) {
return {
enabled: store.notifications.enabled === true,
badge: unseenNotificationsCount(store),
tab: store.navigation.tab
};
}
module.exports = connect(select)(AppBadgeController);
================================================
FILE: js/actions/config.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import Parse from "parse/react-native";
import { InteractionManager } from "react-native";
import type { Action } from "./types";
async function loadConfig(): Promise<Action> {
const config = await Parse.Config.get();
await InteractionManager.runAfterInteractions();
return {
type: "LOADED_CONFIG",
config
};
}
module.exports = { loadConfig };
================================================
FILE: js/actions/filter.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*/
"use strict";
import type { Action } from "./types";
type Schedule = { [key: string]: boolean };
type Video = { [key: string]: boolean };
function applyScheduleFilter(scheduleTopics: Schedule): Action {
return {
type: "APPLY_SCHEDULE_TOPICS_FILTER",
scheduleTopics
};
}
function clearScheduleFilter(): Action {
return {
type: "CLEAR_SCHEDULE_FILTER"
};
}
function applyVideoFilter(videoTopics: Video): Action {
return {
type: "APPLY_VIDEO_TOPICS_FILTER",
videoTopics
};
}
function clearVideoFilter(): Action {
return {
type: "CLEAR_VIDEO_FILTER"
};
}
module.exports = {
applyScheduleFilter,
clearScheduleFilter,
applyVideoFilter,
clearVideoFilter
};
================================================
FILE: js/actions/index.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import * as parseActions from "./parse";
import * as navigationActions from "./navigation";
import * as loginActions from "./login";
import * as scheduleActions from "./schedule";
import * as filterActions from "./filter";
import * as notificationActions from "./notifications";
import * as configActions from "./config";
import * as surveyActions from "./surveys";
import * as testActions from "./test";
import * as installationActions from "./installation";
import * as videoActions from "./video";
module.exports = {
...loginActions,
...scheduleActions,
...filterActions,
...notificationActions,
...configActions,
...surveyActions,
...testActions,
...parseActions,
...navigationActions,
...installationActions,
...videoActions
};
================================================
FILE: js/actions/installation.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import { Platform } from "react-native";
import Parse from "parse/react-native";
async function currentInstallation(): Promise<Parse.Installation> {
const installationId = await Parse._getInstallationId();
return new Parse.Installation({
installationId,
appName: "F8",
deviceType: Platform.OS,
// TODO: Get this information from the app itself
appIdentifier: Platform.OS === "ios" ? "com.parse.f8" : "com.facebook.f8"
});
}
async function updateInstallation(updates: Object = {}): Promise<void> {
const installation = await currentInstallation();
await installation.save(updates);
}
module.exports = { currentInstallation, updateInstallation };
================================================
FILE: js/actions/login.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*/
"use strict";
import Parse from "parse/react-native";
import FacebookSDK from "../FacebookSDK";
import ActionSheetIOS from "ActionSheetIOS";
import { Platform } from "react-native";
import Alert from "Alert";
import { restoreSchedule, loadFriendsSchedules } from "./schedule";
import { updateInstallation } from "./installation";
import { loadSurveys } from "./surveys";
import type { Action, ThunkAction } from "./types";
async function ParseFacebookLogin(scope): Promise {
return new Promise((resolve, reject) => {
Parse.FacebookUtils.logIn(scope, {
success: resolve,
error: (user, error) => reject((error && error.error) || error)
});
});
}
async function queryFacebookAPI(path, ...args): Promise {
return new Promise((resolve, reject) => {
FacebookSDK.api(path, ...args, response => {
if (response && !response.error) {
resolve(response);
} else {
reject(response && response.error);
}
});
});
}
async function _logInWithFacebook(source: ?string): Promise<Array<Action>> {
await ParseFacebookLogin("public_profile,email,user_friends");
const profile = await queryFacebookAPI("/me", { fields: "name,email,link" });
const user = await Parse.User.currentAsync();
user.set("facebook_id", profile.id);
user.set("name", profile.name);
user.set("email", profile.email);
user.set("link", profile.link);
await user.save();
await updateInstallation({ user });
const action = {
type: "LOGGED_IN",
source,
data: {
id: profile.id,
name: profile.name,
sharedSchedule: user.get("sharedSchedule")
}
};
return Promise.all([Promise.resolve(action), restoreSchedule()]);
}
function logInWithFacebook(source: ?string): ThunkAction {
return dispatch => {
const login = _logInWithFacebook(source);
// Loading friends schedules shouldn't block the login process
login.then(result => {
dispatch(result);
dispatch(loadFriendsSchedules());
dispatch(loadSurveys());
});
return login;
};
}
function skipLogin(): Action {
return {
type: "SKIPPED_LOGIN"
};
}
function logOut(): ThunkAction {
return dispatch => {
Parse.User.logOut();
FacebookSDK.logout();
updateInstallation({ user: null, channels: [] });
// TODO: Make sure reducers clear their state
return dispatch({
type: "LOGGED_OUT"
});
};
}
function logOutWithPrompt(): ThunkAction {
return (dispatch, getState) => {
let name = getState().user.name || "there";
if (Platform.OS === "ios") {
ActionSheetIOS.showActionSheetWithOptions(
{
title: `Hi, ${name}`,
options: ["Log out", "Cancel"],
destructiveButtonIndex: 0,
cancelButtonIndex: 1
},
buttonIndex => {
if (buttonIndex === 0) {
dispatch(logOut());
}
}
);
} else {
Alert.alert(`Hi, ${name}`, "Log out from F8?", [
{ text: "Cancel" },
{ text: "Log out", onPress: () => dispatch(logOut()) }
]);
}
};
}
module.exports = { logInWithFacebook, skipLogin, logOut, logOutWithPrompt };
================================================
FILE: js/actions/navigation.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*/
"use strict";
import type { Action } from "./types";
type Tab = "schedule" | "myF8" | "demos" | "videos" | "info";
module.exports = {
switchTab: (tab: Tab): Action => ({
type: "SWITCH_TAB",
tab
}),
switchDay: (day: 1 | 2): Action => ({
type: "SWITCH_DAY",
day
})
};
================================================
FILE: js/actions/notifications.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import { Platform, VibrationIOS } from "react-native";
import { updateInstallation } from "./installation";
import { loadNotifications } from "./parse";
import { loadSurveys } from "./surveys";
import { switchTab } from "./navigation";
import type { Action, ThunkAction } from "./types";
type PushNotification = {
foreground: boolean,
message: string,
// react-native-push-notification library sends Object as data
// on iOS and JSON string on android
// TODO: Send PR to remove this inconsistency
data: string | Object
};
function normalizeData(s: string | Object): Object {
if (s && typeof s === "object") {
return s;
}
try {
return JSON.parse(s);
} catch (e) {
return {};
}
}
async function storeDeviceToken(deviceToken: string): Promise<Action> {
const pushType = Platform.OS === "android" ? "gcm" : undefined;
await updateInstallation({
pushType,
deviceToken,
deviceTokenLastModified: Date.now()
});
return {
type: "REGISTERED_PUSH_NOTIFICATIONS"
};
}
function turnOnPushNotifications(): Action {
return {
type: "TURNED_ON_PUSH_NOTIFICATIONS"
};
}
function skipPushNotifications(): Action {
return {
type: "SKIPPED_PUSH_NOTIFICATIONS"
};
}
function receivePushNotification(notification: PushNotification): ThunkAction {
return dispatch => {
const { foreground, message } = notification;
const data = normalizeData(notification.data);
if (!foreground) {
dispatch(switchTab("info"));
}
if (foreground) {
dispatch(loadNotifications());
dispatch(loadSurveys());
if (Platform.OS === "ios") {
VibrationIOS.vibrate();
}
}
if (data.e /* ephemeral */) {
return;
}
const timestamp = new Date().getTime();
dispatch({
type: "RECEIVED_PUSH_NOTIFICATION",
notification: {
text: message,
url: data.url,
urlTitle: data.urlTitle,
image: data.image,
video: data.video,
time: timestamp
}
});
};
}
function markAllNotificationsAsSeen(): Action {
return {
type: "SEEN_ALL_NOTIFICATIONS"
};
}
module.exports = {
turnOnPushNotifications,
storeDeviceToken,
skipPushNotifications,
receivePushNotification,
markAllNotificationsAsSeen
};
================================================
FILE: js/actions/parse.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import Parse from "parse/react-native";
import { logError, InteractionManager } from "react-native";
import type { ThunkAction } from "./types";
const Maps = Parse.Object.extend("Maps");
const Notification = Parse.Object.extend("Notification");
const FAQ = Parse.Object.extend("FAQ");
const Page = Parse.Object.extend("Page");
const Video = Parse.Object.extend("Video");
const Policy = Parse.Object.extend("Policy");
function loadParseQuery(type: string, query: Parse.Query): ThunkAction {
return dispatch => {
return query.find({
success: list => {
// We don't want data loading to interfere with smooth animations
InteractionManager.runAfterInteractions(() => {
// Flow can't guarantee {type, list} is a valid action
dispatch(({ type, list }: any));
});
},
error: logError
});
};
}
function loadSessions(): ThunkAction {
return loadParseQuery(
"LOADED_SESSIONS",
new Parse.Query("Agenda").include("speakers").ascending("startTime")
);
}
function loadMaps(): ThunkAction {
return loadParseQuery("LOADED_MAPS", new Parse.Query(Maps));
}
function loadNotifications(): ThunkAction {
return loadParseQuery("LOADED_NOTIFICATIONS", new Parse.Query(Notification));
}
function loadFAQs(): ThunkAction {
return loadParseQuery(
"LOADED_FAQS",
new Parse.Query(FAQ).ascending("updatedAt")
);
}
function loadPages(): ThunkAction {
return loadParseQuery(
"LOADED_PAGES",
new Parse.Query(Page).ascending("title")
);
}
function loadVideos(): ThunkAction {
return loadParseQuery(
"LOADED_VIDEOS",
new Parse.Query(Video).descending("updatedAt")
);
}
function loadPolicies(): ThunkAction {
return loadParseQuery(
"LOADED_POLICIES",
new Parse.Query(Policy).ascending("title")
);
}
export {
loadSessions,
loadMaps,
loadNotifications,
loadFAQs,
loadPages,
loadVideos,
loadPolicies
};
================================================
FILE: js/actions/schedule.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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
*
* @flow
*/
"use strict";
import Parse from "parse/react-native";
import F8Analytics from "../F8Analytics";
import {
Platform,
InteractionManager,
ActionSheetIOS,
Alert,
Share
} from "react-native";
const Agenda = Parse.Object.extend("Agenda");
import { currentInstallation, updateInstallation } from "./installation";
import type { ThunkAction, PromiseAction, Dispatch } from "./types";
import type { Session } from "../reducers/sessions";
function addToSchedule(id: string): ThunkAction {
return (dispatch: Dispatch) => {
if (Parse.User.current()) {
Parse.User
.current()
.relation("mySchedule")
.add(new Agenda({ id }));
Parse.User.current().save();
currentInstallation().then(installation => {
installation.addUnique("channels", `session_${id}`);
return installation.save();
});
}
dispatch({
type: "SESSION_ADDED",
id
});
};
}
function removeFromSchedule(id: string): ThunkAction {
return (dispatch: Dispatch) => {
if (Parse.User.current()) {
Parse.User
.current()
.relation("mySchedule")
.remove(new Agenda({ id }));
Parse.User.current().save();
currentInstallation().then(installation => {
installation.remove("channels", `session_${id}`);
return installation.save();
});
}
dispatch({
type: "SESSION_REMOVED",
id
});
};
}
function removeFromScheduleWithPrompt(session: Session): ThunkAction {
return dispatch => {
if (Platform.OS === "ios") {
ActionSheetIOS.showActionSheetWithOptions(
{
options: ["Remove From Schedule", "Cancel"],
destructiveButtonIndex: 0,
cancelButtonIndex: 1
},
buttonIndex => {
if (buttonIndex === 0) {
dispatch(removeFromSchedule(session.id));
}
}
);
} else {
Alert.alert(
"Remove From Your Schedule",
`Would you like to remove "${session.title}" from your schedule?`,
[
{ text: "Cancel" },
{
text: "Remove",
onPress: () => dispatch(removeFromSchedule(session.id))
}
]
);
}
};
}
async function restoreSchedule(): PromiseAction {
const list = await Parse.User
.current()
.relation("mySchedule")
.query()
.find();
const channels = list.map(({ id }) => `session_${id}`);
updateInstallation({ channels });
return {
type: "RESTORED_SCHEDULE",
list
};
}
async function loadFriendsSchedules(): PromiseAction {
const list = await Parse.Cloud.run("friends");
await InteractionManager.runAfterInteractions();
return {
type: "LOADED_FRIENDS_SCHEDULES",
list
};
}
function setSharingEnabled(enabled: boolean): ThunkAction {
return dispatch => {
dispatch({
type: "SET_SHARING",
enabled
});
Parse.User.current().set("sharedSchedule", enabled);
Parse.User.current().save();
};
}
function shareSession(session: Session): ThunkAction {
return (dispatch, getState) => {
const { sessionURLTemplate } = getState().config;
const url = sessionURLTemplate
.replace("{slug}", session.slug)
.replace("{id}", session.id);
if (Platform.OS === "ios") {
ActionSheetIOS.showShareActionSheetWithOptions(
{
message: session.title,
url
},
e => {},
logShare.bind(null, session.id)
);
} else {
Share.share(
{
// content
title: session.title,
message: url
},
{
// options
dialogTitle: "Share Link to " + session.title // droid-only share option
}
).then(
// callback
_ => logShare(session.id, true, null)
);
}
};
}
function logShare(id, completed, activity) {
F8Analytics.logEvent("Share Session", 1, { id });
// Parse.Analytics.track('share', {
// id,
// completed: completed ? 'yes' : 'no',
// activity: activity || '?'
// });
}
module.exports = {
shareSession,
addToSchedule,
removeFromSchedule,
restoreSchedule,
loadFriendsSchedules,
setSharingEnabled,
removeFromScheduleWithPrompt
};
================================================
FILE: js/actions/surveys.js
================================================
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright 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 AUTHOR
gitextract_xjzujt5k/
├── .babelrc
├── .buckconfig
├── .circleci/
│ └── config.yml
├── .eslintignore
├── .eslintrc
├── .flowconfig
├── .gitattributes
├── .gitignore
├── .watchmanconfig
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── __mocks__/
│ └── react-native.js
├── android/
│ ├── app/
│ │ ├── BUCK
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src/
│ │ ├── debug/
│ │ │ └── res/
│ │ │ └── values/
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── main/
│ │ ├── AndroidManifest.xml
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── facebook/
│ │ │ └── f8/
│ │ │ ├── MainActivity.java
│ │ │ └── MainApplication.java
│ │ └── res/
│ │ └── values/
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── build.gradle
│ ├── gradle/
│ │ └── wrapper/
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── keystores/
│ │ ├── BUCK
│ │ └── debug.keystore.properties
│ └── settings.gradle
├── app.json
├── docker-compose.yml
├── index.android.js
├── index.ios.js
├── ios/
│ ├── F82017/
│ │ ├── AppDelegate.h
│ │ ├── AppDelegate.m
│ │ ├── Base.lproj/
│ │ │ └── LaunchScreen.xib
│ │ ├── F82017.entitlements
│ │ ├── Images.xcassets/
│ │ │ └── AppIcon.appiconset/
│ │ │ └── Contents.json
│ │ ├── Info.plist
│ │ └── main.m
│ ├── F82017-tvOS/
│ │ └── Info.plist
│ ├── F82017-tvOSTests/
│ │ └── Info.plist
│ ├── F82017.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── F82017-tvOS.xcscheme
│ │ └── F82017.xcscheme
│ └── F82017Tests/
│ ├── F82017Tests.m
│ └── Info.plist
├── js/
│ ├── F8Analytics.js
│ ├── F8App.js
│ ├── F8Navigator.js
│ ├── FacebookSDK.js
│ ├── Playground.js
│ ├── PushNotificationsController.js
│ ├── actions/
│ │ ├── config.js
│ │ ├── filter.js
│ │ ├── index.js
│ │ ├── installation.js
│ │ ├── login.js
│ │ ├── navigation.js
│ │ ├── notifications.js
│ │ ├── parse.js
│ │ ├── schedule.js
│ │ ├── surveys.js
│ │ ├── test.js
│ │ ├── types.js
│ │ └── video.js
│ ├── common/
│ │ ├── ActionsOverlay.js
│ │ ├── Carousel.js
│ │ ├── F8ActionSheet.js
│ │ ├── F8BackgroundRepeat.js
│ │ ├── F8Button.js
│ │ ├── F8Colors.js
│ │ ├── F8DrawerLayout.js
│ │ ├── F8Fonts.js
│ │ ├── F8Header.js
│ │ ├── F8Linking.js
│ │ ├── F8Modal.js
│ │ ├── F8PageControl.js
│ │ ├── F8ScrollingHeader.js
│ │ ├── F8SegmentedControl.js
│ │ ├── F8StyleSheet.js
│ │ ├── F8Text.js
│ │ ├── F8TimelineBackground.js
│ │ ├── F8TimelineSegment.js
│ │ ├── F8Toast.js
│ │ ├── F8Tooltip.js
│ │ ├── F8Touchable.js
│ │ ├── F8WebView.js
│ │ ├── Hitbox.js
│ │ ├── ItemsWithSeparator.js
│ │ ├── LaunchScreen.js
│ │ ├── ListContainer.js
│ │ ├── LoginButton.js
│ │ ├── MapView.js
│ │ ├── MessengerChatHead.js
│ │ ├── MessengerModal.js
│ │ ├── ParallaxBackground.js
│ │ ├── PlayButton.js
│ │ ├── ProfilePicture.js
│ │ ├── PureListView.js
│ │ ├── ViewPager.js
│ │ ├── __tests__/
│ │ │ └── convertTimes-test.js
│ │ └── convertTimes.js
│ ├── env.js
│ ├── filter/
│ │ ├── FilterScreen.android.js
│ │ ├── FilterScreen.ios.js
│ │ ├── FriendsList.js
│ │ ├── Header.js
│ │ ├── Section.js
│ │ ├── TopicItem.js
│ │ └── topicIcons.js
│ ├── flow-lib.js
│ ├── login/
│ │ ├── LoginModal.js
│ │ └── LoginScreen.js
│ ├── rating/
│ │ ├── Header.js
│ │ ├── RadioButtons.js
│ │ ├── RatingQuestion.js
│ │ ├── RatingScreen.js
│ │ ├── StarRating.js
│ │ ├── StarRatings.js
│ │ └── WrittenResponse.js
│ ├── reducers/
│ │ ├── __mocks__/
│ │ │ └── parse.js
│ │ ├── __tests__/
│ │ │ ├── maps-test.js
│ │ │ ├── notifications-test.js
│ │ │ └── schedule-test.js
│ │ ├── config.js
│ │ ├── createParseReducer.js
│ │ ├── faqs.js
│ │ ├── friendsSchedules.js
│ │ ├── index.js
│ │ ├── maps.js
│ │ ├── navigation.js
│ │ ├── notifications.js
│ │ ├── pages.js
│ │ ├── policies.js
│ │ ├── schedule.js
│ │ ├── scheduleFilter.js
│ │ ├── scheduleTopics.js
│ │ ├── sessions.js
│ │ ├── surveys.js
│ │ ├── testEventDates.js
│ │ ├── user.js
│ │ ├── videoFilter.js
│ │ ├── videoTopics.js
│ │ └── videos.js
│ ├── relay-environment.js
│ ├── setup.js
│ ├── store/
│ │ ├── analytics.js
│ │ ├── array.js
│ │ ├── compatibility.js
│ │ ├── configureStore.js
│ │ ├── promise.js
│ │ └── track.js
│ ├── tabs/
│ │ ├── F8TabsView.js
│ │ ├── MenuItem.js
│ │ ├── demos/
│ │ │ ├── DemosCarousel.js
│ │ │ ├── F8DemoDetails.js
│ │ │ ├── F8DemosView.js
│ │ │ └── __generated__/
│ │ │ └── F8DemosViewQuery.graphql.js
│ │ ├── info/
│ │ │ ├── AboutLocation.js
│ │ │ ├── CommonQuestions.js
│ │ │ ├── DirectionsLink.js
│ │ │ ├── F8AboutView.js
│ │ │ ├── F8InfoView.js
│ │ │ ├── LinksList.js
│ │ │ ├── Section.js
│ │ │ └── WiFiDetails.js
│ │ ├── maps/
│ │ │ ├── F8MapView.js
│ │ │ ├── F8VenueMap.js
│ │ │ └── ZoomableImage.js
│ │ ├── notifications/
│ │ │ ├── F8NotificationsView.js
│ │ │ ├── NotificationCell.js
│ │ │ ├── PushNUXModal.js
│ │ │ ├── RateSessionsCell.js
│ │ │ ├── allNotifications.js
│ │ │ ├── findSessionByURI.js
│ │ │ └── unseenNotificationsCount.js
│ │ ├── schedule/
│ │ │ ├── AddToScheduleButton.js
│ │ │ ├── EmptySchedule.js
│ │ │ ├── F8FriendGoing.js
│ │ │ ├── F8GanttGrid.js
│ │ │ ├── F8GanttNowMarker.js
│ │ │ ├── F8GanttRow.js
│ │ │ ├── F8ScheduleGantt.js
│ │ │ ├── F8SessionCell.js
│ │ │ ├── F8SessionDetails.js
│ │ │ ├── F8SpeakerProfile.js
│ │ │ ├── FilterHeader.js
│ │ │ ├── FriendCell.js
│ │ │ ├── FriendsListView.js
│ │ │ ├── FriendsScheduleView.js
│ │ │ ├── FriendsUsingApp.js
│ │ │ ├── GeneralScheduleView.js
│ │ │ ├── HideCompleted.js
│ │ │ ├── InviteFriendsButton.js
│ │ │ ├── MyScheduleView.js
│ │ │ ├── PrivacyIcon.js
│ │ │ ├── ProfileButton.js
│ │ │ ├── ScheduleListView.js
│ │ │ ├── SessionsCarousel.js
│ │ │ ├── SessionsSectionHeader.js
│ │ │ ├── SharingSettingsCommon.js
│ │ │ ├── SharingSettingsModal.js
│ │ │ ├── SharingSettingsScreen.js
│ │ │ ├── __tests__/
│ │ │ │ ├── formatDuration-test.js
│ │ │ │ └── formatTime-test.js
│ │ │ ├── filterSessions.js
│ │ │ ├── formatDuration.js
│ │ │ ├── formatTime.js
│ │ │ └── groupSessions.js
│ │ └── videos/
│ │ ├── F8EmptyVideosView.js
│ │ ├── F8VideoThumb.js
│ │ ├── F8VideoView.js
│ │ ├── F8VideosView.js
│ │ └── filterVideos.js
│ └── video/
│ ├── F8VideoPlayer.js
│ ├── VideoControls.js
│ └── VideoLoader.js
├── package.json
├── scripts/
│ ├── generate-graphql-schema.js
│ ├── open-ios-project.js
│ ├── optimize-images.sh
│ ├── pre-push-checks.sh
│ └── run-android-app.sh
└── server/
├── .gitignore
├── graphql/
│ ├── .babelrc
│ ├── Dockerfile
│ ├── package.json
│ └── src/
│ ├── index.js
│ └── schema/
│ ├── __generated__/
│ │ └── schema.graphql
│ ├── demo.js
│ ├── index.js
│ ├── node.js
│ ├── query.js
│ └── typeRegistry.js
├── mongorestore/
│ ├── Dockerfile
│ └── data/
│ ├── Agenda.bson
│ ├── Agenda.metadata.json
│ ├── Attendance.bson
│ ├── Attendance.metadata.json
│ ├── Demo.bson
│ ├── Demo.metadata.json
│ ├── FAQ.bson
│ ├── FAQ.metadata.json
│ ├── Maps.bson
│ ├── Maps.metadata.json
│ ├── MeetupSponsors.bson
│ ├── MeetupSponsors.metadata.json
│ ├── Meetups.bson
│ ├── Meetups.metadata.json
│ ├── Notification.bson
│ ├── Notification.metadata.json
│ ├── Page.bson
│ ├── Page.metadata.json
│ ├── PendingNotifications.bson
│ ├── PendingNotifications.metadata.json
│ ├── Policy.bson
│ ├── Policy.metadata.json
│ ├── Speakers.bson
│ ├── Speakers.metadata.json
│ ├── Survey.bson
│ ├── Survey.metadata.json
│ ├── SurveyQuestions.bson
│ ├── SurveyQuestions.metadata.json
│ ├── SurveyResult.bson
│ ├── SurveyResult.metadata.json
│ ├── UTestAgenda.bson
│ ├── UTestAgenda.metadata.json
│ ├── UnmaskedAgenda.bson
│ ├── UnmaskedAgenda.metadata.json
│ ├── Video.bson
│ ├── Video.metadata.json
│ ├── _Audience.bson
│ ├── _Audience.metadata.json
│ ├── _Cardinality.bson
│ ├── _Cardinality.metadata.json
│ ├── _EventDimension.bson
│ ├── _EventDimension.metadata.json
│ ├── _GlobalConfig.bson
│ ├── _GlobalConfig.metadata.json
│ ├── _Installation.bson
│ ├── _Installation.metadata.json
│ ├── _JobStatus.bson
│ ├── _JobStatus.metadata.json
│ ├── _Join:mySchedule:_User.bson
│ ├── _Join:mySchedule:_User.metadata.json
│ ├── _PushStatus.bson
│ ├── _PushStatus.metadata.json
│ ├── _QueryToolQuery.bson
│ ├── _QueryToolQuery.metadata.json
│ ├── _Role.bson
│ ├── _Role.metadata.json
│ ├── _SCHEMA.bson
│ ├── _SCHEMA.metadata.json
│ ├── _Session.bson
│ ├── _Session.metadata.json
│ ├── _User.bson
│ ├── _User.metadata.json
│ ├── _dummy.bson
│ ├── _dummy.metadata.json
│ ├── objectlabs-system.bson
│ └── objectlabs-system.metadata.json
├── parse-dashboard/
│ ├── Dockerfile
│ └── config.json
└── parse-server/
├── .babelrc
├── Dockerfile
├── cloud/
│ ├── auth.js
│ ├── functions/
│ │ ├── agenda.js
│ │ ├── friends.js
│ │ ├── index.js
│ │ ├── meetups.js
│ │ ├── messengerbot.js
│ │ ├── notifications.js
│ │ ├── surveyexports.js
│ │ ├── surveys.js
│ │ └── tests.js
│ ├── index.js
│ ├── jobs/
│ │ ├── index.js
│ │ ├── installationSync.js
│ │ ├── unmaskAgenda.js
│ │ ├── unmaskDemos.js
│ │ └── updateVideoSources.js
│ └── triggers/
│ ├── index.js
│ ├── pushChannels.js
│ └── videos.js
├── config.json
└── package.json
SYMBOL INDEX (709 symbols across 156 files)
FILE: android/app/src/main/java/com/facebook/f8/MainActivity.java
class MainActivity (line 8) | public class MainActivity extends ReactActivity {
method getMainComponentName (line 14) | @Override
method onActivityResult (line 19) | @Override
FILE: android/app/src/main/java/com/facebook/f8/MainApplication.java
class MainApplication (line 26) | public class MainApplication extends Application implements ReactApplica...
method getCallbackManager (line 30) | protected static CallbackManager getCallbackManager() {
method getUseDeveloperSupport (line 36) | @Override
method getPackages (line 41) | @Override
method getReactNativeHost (line 54) | @Override
method onCreate (line 59) | @Override
FILE: js/F8Analytics.js
class F8Analytics (line 27) | class F8Analytics {
method logEvent (line 28) | static logEvent(name, value, opts) {
FILE: js/F8App.js
class F8App (line 49) | class F8App extends React.Component {
method componentDidMount (line 50) | componentDidMount() {
method componentWillUnmount (line 72) | componentWillUnmount() {
method render (line 89) | render() {
function select (line 114) | function select(store) {
FILE: js/F8Navigator.js
method getChildContext (line 59) | getChildContext() {
function select (line 168) | function select(store) {
FILE: js/FacebookSDK.js
method init (line 77) | init() {
function processResponse (line 135) | function processResponse(error, result) {
FILE: js/Playground.js
class Playground (line 28) | class Playground extends React.Component {
class Example (line 57) | class Example extends React.Component {
method render (line 62) | render() {
FILE: js/PushNotificationsController.js
class AppBadgeController (line 46) | class AppBadgeController extends React.Component {
function select (line 110) | function select(store) {
FILE: js/actions/filter.js
function applyScheduleFilter (line 30) | function applyScheduleFilter(scheduleTopics: Schedule): Action {
function clearScheduleFilter (line 37) | function clearScheduleFilter(): Action {
function applyVideoFilter (line 43) | function applyVideoFilter(videoTopics: Video): Action {
function clearVideoFilter (line 50) | function clearVideoFilter(): Action {
FILE: js/actions/login.js
function ParseFacebookLogin (line 36) | async function ParseFacebookLogin(scope): Promise {
function queryFacebookAPI (line 45) | async function queryFacebookAPI(path, ...args): Promise {
FILE: js/actions/notifications.js
method if (line 45) | if (s && typeof s === "object") {
FILE: js/actions/parse.js
constant FAQ (line 34) | const FAQ = Parse.Object.extend("FAQ");
function loadParseQuery (line 39) | function loadParseQuery(type: string, query: Parse.Query): ThunkAction {
function loadSessions (line 54) | function loadSessions(): ThunkAction {
function loadMaps (line 61) | function loadMaps(): ThunkAction {
function loadNotifications (line 65) | function loadNotifications(): ThunkAction {
function loadFAQs (line 69) | function loadFAQs(): ThunkAction {
function loadPages (line 76) | function loadPages(): ThunkAction {
function loadVideos (line 83) | function loadVideos(): ThunkAction {
function loadPolicies (line 90) | function loadPolicies(): ThunkAction {
FILE: js/actions/schedule.js
function addToSchedule (line 42) | function addToSchedule(id: string): ThunkAction {
function removeFromSchedule (line 62) | function removeFromSchedule(id: string): ThunkAction {
function removeFromScheduleWithPrompt (line 82) | function removeFromScheduleWithPrompt(session: Session): ThunkAction {
function restoreSchedule (line 113) | async function restoreSchedule(): PromiseAction {
function loadFriendsSchedules (line 128) | async function loadFriendsSchedules(): PromiseAction {
function setSharingEnabled (line 137) | function setSharingEnabled(enabled: boolean): ThunkAction {
function shareSession (line 148) | function shareSession(session: Session): ThunkAction {
function logShare (line 183) | function logShare(id, completed, activity) {
FILE: js/actions/test.js
function testPlainPush (line 31) | function testPlainPush(): ThunkAction {
function testLinkPush (line 35) | function testLinkPush(): ThunkAction {
function testSessionPush (line 39) | function testSessionPush(): ThunkAction {
function testImagePush (line 43) | function testImagePush(): ThunkAction {
function testVideoPush (line 46) | function testVideoPush(): ThunkAction {
function testSurveyPush (line 50) | function testSurveyPush(): ThunkAction {
function testResetNuxes (line 54) | function testResetNuxes(): Action {
function getAppInfo (line 60) | function getAppInfo(): ThunkAction {
function testSetCurrentDate (line 79) | function testSetCurrentDate(value: ?number): Action {
constant TEST_MENU (line 86) | const TEST_MENU = {
FILE: js/actions/video.js
function shareVideo (line 7) | function shareVideo(video: Video): ThunkAction {
function logShare (line 37) | function logShare(id, completed, activity) {
FILE: js/common/ActionsOverlay.js
constant CONTAINER_HEIGHT (line 35) | const CONTAINER_HEIGHT = 126,
constant BUTTON_PADDING_H (line 35) | const CONTAINER_HEIGHT = 126,
constant BUTTON_PADDING_B (line 35) | const CONTAINER_HEIGHT = 126,
class ActionsOverlay (line 42) | class ActionsOverlay extends React.Component {
method render (line 55) | render() {
FILE: js/common/Carousel.js
constant WINDOW_WIDTH (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width;
class Carousel (line 39) | class Carousel extends React.Component {
method render (line 44) | render() {
FILE: js/common/F8ActionSheet.js
constant GRADIENT_HEIGHT (line 36) | const GRADIENT_HEIGHT = 220,
constant BUTTON_PADDING_T (line 36) | const GRADIENT_HEIGHT = 220,
constant BUTTON_PADDING_H (line 36) | const GRADIENT_HEIGHT = 220,
constant BUTTON_PADDING_B (line 36) | const GRADIENT_HEIGHT = 220,
constant BUTTON_ANIM_DIST (line 36) | const GRADIENT_HEIGHT = 220,
constant INTRO_ANIM_DUR (line 36) | const GRADIENT_HEIGHT = 220,
constant OUTRO_ANIM_DUR (line 36) | const GRADIENT_HEIGHT = 220,
class F8ActionSheet (line 55) | class F8ActionSheet extends React.Component {
method constructor (line 56) | constructor() {
method render (line 82) | render() {
method renderAction (line 117) | renderAction(obj, i) {
method renderCancel (line 128) | renderCancel() {
method outro (line 141) | outro(cb) {
FILE: js/common/F8BackgroundRepeat.js
class F8BackgroundRepeat (line 39) | class F8BackgroundRepeat extends React.Component {
method render (line 42) | render() {
method renderRow (line 66) | renderRow(colsInRow: number, idx: number) {
method renderImage (line 78) | renderImage(idx: number) {
FILE: js/common/F8Button.js
constant BUTTON_HEIGHT (line 33) | const BUTTON_HEIGHT = 52,
constant BUTTON_HEIGHT_SM (line 33) | const BUTTON_HEIGHT = 52,
class F8Button (line 39) | class F8Button extends React.Component {
FILE: js/common/F8Colors.js
constant NAMED_COLORS (line 29) | const NAMED_COLORS = {
constant THEME_COLORS (line 61) | const THEME_COLORS = {
constant LOCATION_COLORS (line 77) | const LOCATION_COLORS = {
method if (line 104) | if (!THEME_COLORS[name]) {
method if (line 111) | if (!location) {
FILE: js/common/F8DrawerLayout.js
class F8DrawerLayout (line 29) | class F8DrawerLayout extends React.Component {
method constructor (line 32) | constructor(props: any, context: any) {
method render (line 42) | render() {
method componentWillUnmount (line 58) | componentWillUnmount() {
method handleBackButton (line 63) | handleBackButton(): boolean {
method onDrawerOpen (line 68) | onDrawerOpen() {
method onDrawerClose (line 73) | onDrawerClose() {
method closeDrawer (line 78) | closeDrawer() {
method openDrawer (line 82) | openDrawer() {
FILE: js/common/F8Fonts.js
constant DEVICE_SCALE (line 28) | const DEVICE_SCALE = Dimensions.get("window").width / 375;
constant DEFAULT_FONT (line 30) | const DEFAULT_FONT = "helvetica";
constant SECONDARY_FONT (line 31) | const SECONDARY_FONT = Platform.OS === "android" ? "basis" : "helvetica";
function fontWithWeight (line 36) | function fontWithWeight(
function normalize (line 43) | function normalize(size: number): number {
function lineHeight (line 48) | function lineHeight(
FILE: js/common/F8Header.js
constant STATUS_BAR_HEIGHT (line 43) | let STATUS_BAR_HEIGHT = Platform.OS === "ios" ? 20 : 25;
constant HEADER_HEIGHT (line 47) | const HEADER_HEIGHT =
constant SCREEN_WIDTH (line 49) | const SCREEN_WIDTH = Dimensions.get("window").width;
constant IOS_ITEM_TEXT_SIZE (line 50) | const IOS_ITEM_TEXT_SIZE = SCREEN_WIDTH < 375 ? 10 : 13;
constant FAVORITE_ICON_WIDTH (line 52) | const FAVORITE_ICON_WIDTH = 37,
constant FAVORITE_ICON_HEIGHT (line 52) | const FAVORITE_ICON_WIDTH = 37,
class F8HeaderAndroid (line 83) | class F8HeaderAndroid extends React.Component {
method constructor (line 93) | constructor() {
method render (line 99) | render() {
method handleActionSelected (line 171) | handleActionSelected(position: number) {
class F8HeaderIOS (line 198) | class F8HeaderIOS extends React.Component {
method render (line 208) | render() {
class ItemWrapperIOS (line 269) | class ItemWrapperIOS extends React.Component {
FILE: js/common/F8Linking.js
constant WHITELISTED_URL_SCHEMES (line 28) | const WHITELISTED_URL_SCHEMES = [
constant ERR_NOT_LISTED (line 34) | const ERR_NOT_LISTED = "F8Linking: URL does not match whitelisted schemes";
function allowed (line 36) | function allowed(source: string) {
class F8Linking (line 40) | class F8Linking {
method openURL (line 41) | static async openURL(source: string) {
method canOpenURL (line 47) | static async canOpenURL(source: string) {
FILE: js/common/F8Modal.js
constant MODAL_PADDING_H (line 33) | const MODAL_PADDING_H = 10,
constant MODAL_BORDER_RADIUS (line 33) | const MODAL_PADDING_H = 10,
constant FOOTER_GRADIENT_HEIGHT (line 33) | const MODAL_PADDING_H = 10,
class F8Modal (line 40) | class F8Modal extends React.Component {
method render (line 46) | render() {
method renderContent (line 60) | renderContent() {
method renderFooter (line 63) | renderFooter() {
method renderBottomGradient (line 66) | renderBottomGradient() {
FILE: js/common/F8PageControl.js
constant CIRCLE_SIZE (line 59) | const CIRCLE_SIZE = 4;
FILE: js/common/F8ScrollingHeader.js
constant TRANSLATE_Y_DISTANCE (line 30) | const TRANSLATE_Y_DISTANCE = 10;
class F8ScrollingHeader (line 43) | class F8ScrollingHeader extends React.Component {
method constructor (line 50) | constructor(props) {
method componentWillReceiveProps (line 59) | componentWillReceiveProps(nextProps) {
method render (line 76) | render() {
FILE: js/common/F8SegmentedControl.js
constant BUTTON_HEIGHT (line 33) | const BUTTON_HEIGHT = 32,
constant CONTAINER_PADDING_B (line 33) | const BUTTON_HEIGHT = 32,
constant NOTIFICATION_ICON_SIZE (line 33) | const BUTTON_HEIGHT = 32,
class F8SegmentedControl (line 40) | class F8SegmentedControl extends React.Component {
class Segment (line 76) | class Segment extends React.Component {
FILE: js/common/F8StyleSheet.js
method create (line 30) | create(styles: Object): { [name: string]: number }
FILE: js/common/F8TimelineBackground.js
class F8TimelineBackground (line 35) | class F8TimelineBackground extends React.Component {
method render (line 42) | render() {
method renderGradient (line 53) | renderGradient() {
FILE: js/common/F8TimelineSegment.js
class F8TimelineSegment (line 42) | class F8TimelineSegment extends React.Component {
method constructor (line 57) | constructor(props) {
method render (line 93) | render() {
method renderLine (line 102) | renderLine() {
method renderDot (line 110) | renderDot() {
FILE: js/common/F8Toast.js
constant INTRO_DELAY_DUR (line 31) | const INTRO_DELAY_DUR = 300,
constant SHOW_DELAY_DUR (line 31) | const INTRO_DELAY_DUR = 300,
constant OUTRO_ANIM_DUR (line 31) | const INTRO_DELAY_DUR = 300,
constant TRANSLATE_Y_DISTANCE (line 31) | const INTRO_DELAY_DUR = 300,
class F8Toast (line 50) | class F8Toast extends React.Component {
method constructor (line 58) | constructor() {
method render (line 80) | render() {
FILE: js/common/F8Tooltip.js
constant ARROW_WIDTH (line 30) | const ARROW_WIDTH = 23,
constant ARROW_HEIGHT (line 30) | const ARROW_WIDTH = 23,
constant TOOLTIP_INSET (line 30) | const ARROW_WIDTH = 23,
constant TRANSLATE_Y_DISTANCE (line 30) | const ARROW_WIDTH = 23,
class F8Tooltip (line 50) | class F8Tooltip extends React.Component {
method constructor (line 59) | constructor(props) {
method componentWillReceiveProps (line 78) | componentWillReceiveProps(nextProps) {
method render (line 85) | render() {
method getArrowPosition (line 120) | getArrowPosition(x, y) {
FILE: js/common/F8Touchable.js
function F8TouchableIOS (line 33) | function F8TouchableIOS(props: Object): ReactElement<TouchableHighlight> {
FILE: js/common/F8WebView.js
constant NAVBAR_HEIGHT_IOS (line 42) | const NAVBAR_HEIGHT_IOS = 45,
constant STATUS_BAR_HEIGHT_ANDROID (line 42) | const NAVBAR_HEIGHT_IOS = 45,
constant NAVBAR_HEIGHT_ANDROID (line 42) | const NAVBAR_HEIGHT_IOS = 45,
constant DISABLED_OPACITY (line 42) | const NAVBAR_HEIGHT_IOS = 45,
class F8WebView (line 63) | class F8WebView extends React.Component {
method constructor (line 70) | constructor(props) {
method render (line 81) | render() {
method renderPlatformHeader (line 101) | renderPlatformHeader() {
method renderNavigationBarIOS (line 138) | renderNavigationBarIOS() {
method navigate (line 150) | navigate(intent) {
class Loading (line 179) | class Loading extends React.Component {
method componentDidMount (line 184) | componentDidMount() {
method render (line 190) | render() {
class WebViewNavigationIOS (line 203) | class WebViewNavigationIOS extends React.Component {
method render (line 204) | render() {
class WebViewNavigationAndroid (line 249) | class WebViewNavigationAndroid extends React.Component {
method render (line 250) | render() {
FILE: js/common/Hitbox.js
class Hitbox (line 38) | class Hitbox extends React.Component {
method render (line 39) | render() {
FILE: js/common/ItemsWithSeparator.js
class ItemsWithSeparator (line 29) | class ItemsWithSeparator extends React.Component {
FILE: js/common/LaunchScreen.js
constant WIN_WIDTH (line 29) | const WIN_WIDTH = Dimensions.get("window").width,
constant WIN_HEIGHT (line 29) | const WIN_WIDTH = Dimensions.get("window").width,
class LaunchScreen (line 40) | class LaunchScreen extends React.Component {
method render (line 43) | render() {
FILE: js/common/ListContainer.js
class ListContainer (line 60) | class ListContainer extends React.Component {
method constructor (line 75) | constructor(props: Props) {
method render (line 87) | render() {
method componentWillReceiveProps (line 161) | componentWillReceiveProps(nextProps: Props) {
method componentDidUpdate (line 170) | componentDidUpdate(prevProps: Props, prevState: State) {
method handleSelectSegment (line 191) | handleSelectSegment(idx: number) {
FILE: js/common/LoginButton.js
class LoginButton (line 31) | class LoginButton extends React.Component {
FILE: js/common/MapView.js
class MapView (line 44) | class MapView extends React.Component {
class MapViewDefault (line 90) | class MapViewDefault extends React.Component {
class MapViewZoomable (line 132) | class MapViewZoomable extends React.Component {
method render (line 137) | render() {
function urlForMap (line 184) | function urlForMap(map: ?Map): string {
FILE: js/common/MessengerChatHead.js
constant LOGO_OFFSET_RIGHT (line 32) | const LOGO_OFFSET_RIGHT = 5,
constant LOGO_OFFSET_BOTTOM (line 32) | const LOGO_OFFSET_RIGHT = 5,
constant PROFILE_PICTURE_SIZE (line 32) | const LOGO_OFFSET_RIGHT = 5,
constant CONTAINER_WIDTH (line 32) | const LOGO_OFFSET_RIGHT = 5,
constant CONTAINER_HEIGHT (line 32) | const LOGO_OFFSET_RIGHT = 5,
class MessengerChatHead (line 42) | class MessengerChatHead extends React.Component {
method constructor (line 43) | constructor() {
method render (line 51) | render() {
FILE: js/common/MessengerModal.js
constant APP_STORE (line 36) | const APP_STORE = "https://itunes.apple.com/us/app/messenger/id454638411",
constant PLAY_STORE (line 36) | const APP_STORE = "https://itunes.apple.com/us/app/messenger/id454638411",
class MessengerModal (line 44) | class MessengerModal extends React.Component {
method render (line 47) | render() {
FILE: js/common/ParallaxBackground.js
constant HEIGHT (line 32) | const HEIGHT = Dimensions.get("window").height > 600 ? 200 : 150;
constant SCREEN_WIDTH (line 33) | const SCREEN_WIDTH = Dimensions.get("window").width;
class ParallaxBackground (line 49) | class ParallaxBackground extends React.Component {
method constructor (line 55) | constructor(props: Props) {
method componentDidUpdate (line 62) | componentDidUpdate(prevProps: Props) {
method render (line 71) | render(): ReactElement {
constant HEADER_HEIGHT (line 151) | const HEADER_HEIGHT = HEIGHT + 156;
FILE: js/common/PlayButton.js
constant BUTTON_SIZE (line 30) | const BUTTON_SIZE = 76,
constant BUTTON_SIZE_SM (line 30) | const BUTTON_SIZE = 76,
class PlayButton (line 45) | class PlayButton extends React.Component {
method render (line 52) | render() {
method getSizeStyles (line 94) | getSizeStyles() {
FILE: js/common/ProfilePicture.js
class ProfilePicture (line 38) | class ProfilePicture extends React.Component {
FILE: js/common/PureListView.js
constant LIST_VIEW_PAGE_SIZE (line 50) | const LIST_VIEW_PAGE_SIZE = Platform.OS === "android" ? 20 : 10;
class PureListView (line 52) | class PureListView extends React.Component {
method constructor (line 64) | constructor(props: Props) {
method componentWillReceiveProps (line 84) | componentWillReceiveProps(nextProps: Props) {
method render (line 92) | render() {
method onContentSizeChange (line 120) | onContentSizeChange(contentWidth: number, contentHeight: number) {
method scrollTo (line 126) | scrollTo(...args: Array<any>) {
method getScrollResponder (line 130) | getScrollResponder(): any {
method ReactElement (line 134) | ReactElement {
function cloneWithData (line 152) | function cloneWithData(dataSource: ListView.DataSource, data: ?Data) {
FILE: js/common/ViewPager.js
class ViewPager (line 50) | class ViewPager extends React.Component {
method constructor (line 54) | constructor(props: Props) {
method render (line 67) | render() {
method renderIOS (line 75) | renderIOS() {
method renderAndroid (line 102) | renderAndroid() {
method adjustCardSize (line 115) | adjustCardSize(e: any) {
method componentWillReceiveProps (line 122) | componentWillReceiveProps(nextProps: Props) {
method renderContent (line 137) | renderContent(): Array<ReactElement> {
method handleHorizontalScroll (line 147) | handleHorizontalScroll(e: any) {
FILE: js/common/convertTimes.js
constant CONFERENCE_DATES (line 6) | const CONFERENCE_DATES = [1492473600000, 1492560000000];
function parseTimeToUTC (line 8) | function parseTimeToUTC(unix: number): number {
function minutesSinceMidnight (line 15) | function minutesSinceMidnight(): number {
function currentTimeOnConferenceDay (line 21) | function currentTimeOnConferenceDay(day: number = 1): number {
function sessionsHappeningNow (line 27) | function sessionsHappeningNow(
function sessionsHappeningToday (line 47) | function sessionsHappeningToday(now: number): boolean {
FILE: js/env.js
method dayLabel (line 34) | dayLabel(num) {
FILE: js/filter/FilterScreen.android.js
constant DRAWER_WIDTH (line 42) | const DRAWER_WIDTH = 300;
FILE: js/filter/FriendsList.js
class FriendsList (line 35) | class FriendsList extends React.Component {
class UserPog (line 65) | class UserPog extends React.Component {
constant SIZE (line 86) | const SIZE = 50;
FILE: js/filter/Header.js
class Header (line 31) | class Header extends React.Component {
method render (line 32) | render() {
method renderItem (line 56) | renderItem(title: string, onPress: () => void) {
constant STATUS_BAR_HEIGHT (line 69) | const STATUS_BAR_HEIGHT = 20;
constant HEADER_HEIGHT (line 70) | const HEADER_HEIGHT = STATUS_BAR_HEIGHT + /* toolbar */ 44;
FILE: js/filter/Section.js
class Section (line 31) | class Section extends React.Component {
method render (line 32) | render() {
FILE: js/filter/topicIcons.js
constant TOPIC_ICONS (line 1) | const TOPIC_ICONS = {
function get (line 26) | function get(state = "default", idx = 0) {
FILE: js/login/LoginModal.js
constant WINDOW_WIDTH (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant WINDOW_HEIGHT (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant RENDER_ARROW_SECTION (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant CONTENT_PADDING_V (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant MODAL_PADDING_H (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant MODAL_WIDTH (line 37) | const WINDOW_WIDTH = Dimensions.get("window").width,
class LoginModal (line 47) | class LoginModal extends React.Component {
FILE: js/login/LoginScreen.js
constant SKIP_BTN_HEIGHT (line 46) | const SKIP_BTN_HEIGHT = 24,
constant WINDOW_WIDTH (line 46) | const SKIP_BTN_HEIGHT = 24,
constant WINDOW_HEIGHT (line 46) | const SKIP_BTN_HEIGHT = 24,
constant VERTICAL_BREAKPOINT (line 46) | const SKIP_BTN_HEIGHT = 24,
constant HEADER_HEIGHT (line 46) | const SKIP_BTN_HEIGHT = 24,
constant SKIP_BTN_MARGIN_TOP (line 46) | const SKIP_BTN_HEIGHT = 24,
constant WHENWHERE_PADDING_TOP (line 46) | const SKIP_BTN_HEIGHT = 24,
constant RENDER_ARROW_SECTION (line 46) | const SKIP_BTN_HEIGHT = 24,
constant LOGIN_PADDING_BOTTOM (line 46) | const SKIP_BTN_HEIGHT = 24,
constant CONTENT_PADDING_H (line 46) | const SKIP_BTN_HEIGHT = 24,
class LoginScreen (line 66) | class LoginScreen extends React.Component {
method componentDidMount (line 71) | componentDidMount() {
method render (line 75) | render() {
method renderArrowSection (line 124) | renderArrowSection() {
method fadeIn (line 136) | fadeIn(delay, from = 0) {
FILE: js/rating/Header.js
function Header (line 34) | function Header({ session }: Props) {
FILE: js/rating/RadioButtons.js
class RadioButtons (line 33) | class RadioButtons extends React.Component {
method render (line 38) | render() {
method renderAnswer (line 50) | renderAnswer(text, idx) {
FILE: js/rating/RatingQuestion.js
class RatingQuestion (line 39) | class RatingQuestion extends React.Component {
method render (line 40) | render() {
method getQuestionType (line 51) | getQuestionType() {
method renderQuestionByType (line 68) | renderQuestionByType(type) {
method renderQuestionText (line 117) | renderQuestionText(type) {
FILE: js/rating/RatingScreen.js
class RatingScreen (line 50) | class RatingScreen extends React.Component {
function select (line 212) | function select(store) {
FILE: js/rating/StarRating.js
function StarRating (line 32) | function StarRating({ labels, rating, onChange }) {
function Star (line 63) | function Star({ isFull, value, onPress }) {
FILE: js/rating/StarRatings.js
class StarRatings (line 34) | class StarRatings extends React.Component {
method constructor (line 39) | constructor(props) {
method componentWillUpdate (line 44) | componentWillUpdate(nextProps, nextState) {
method render (line 54) | render() {
FILE: js/rating/WrittenResponse.js
class WrittenResponse (line 33) | class WrittenResponse extends React.Component {
method render (line 42) | render() {
FILE: js/reducers/__mocks__/parse.js
class ParseObjectMock (line 27) | class ParseObjectMock {
method constructor (line 32) | constructor(fields: Object) {
method get (line 38) | get(name: string): any {
class ParseFileMock (line 43) | class ParseFileMock {
method constructor (line 46) | constructor(url: string) {
method url (line 50) | url(): string {
FILE: js/reducers/config.js
function config (line 47) | function config(state: Config = initialState, action: Action): Config {
FILE: js/reducers/faqs.js
function fromParseObject (line 35) | function fromParseObject(map: Object): FAQ {
FILE: js/reducers/friendsSchedules.js
function friendsSchedules (line 37) | function friendsSchedules(state: State = [], action: Action): State {
FILE: js/reducers/maps.js
function fromParseObject (line 39) | function fromParseObject(map: Object): Map {
FILE: js/reducers/navigation.js
function navigation (line 40) | function navigation(state: State = initialState, action: Action): State {
FILE: js/reducers/notifications.js
function notifications (line 67) | function notifications(state: State = initialState, action: Action): Sta...
function append (line 99) | function append(notification, list) {
FILE: js/reducers/pages.js
function fromParseObject (line 36) | function fromParseObject(map: Object): Page {
FILE: js/reducers/policies.js
function fromParseObject (line 35) | function fromParseObject(policy: Object): Policy {
FILE: js/reducers/schedule.js
function schedule (line 33) | function schedule(state: State = {}, action: Action): State {
FILE: js/reducers/scheduleFilter.js
function filter (line 41) | function filter(state: State = {}, action: Action): State {
FILE: js/reducers/scheduleTopics.js
function topics (line 30) | function topics(state: State = [], action: Action): State {
FILE: js/reducers/sessions.js
function fromParseSpeaker (line 55) | function fromParseSpeaker(speaker: Object): Speaker {
function fromParseSessions (line 66) | function fromParseSessions(session: Object): Session {
FILE: js/reducers/surveys.js
function surveys (line 43) | function surveys(state: State = [], action: Action): State {
FILE: js/reducers/testEventDates.js
function setCurrentDateForTesting (line 30) | function setCurrentDateForTesting(state: State = null, action: Action): ...
FILE: js/reducers/user.js
function user (line 45) | function user(state: State = initialState, action: Action): State {
FILE: js/reducers/videoFilter.js
function filter (line 41) | function filter(state: State = {}, action: Action): State {
FILE: js/reducers/videoTopics.js
function topics (line 30) | function topics(state: State = [], action: Action): State {
FILE: js/reducers/videos.js
function fromParseVideos (line 43) | function fromParseVideos(video: Object): Video {
FILE: js/relay-environment.js
function fetchQuery (line 32) | function fetchQuery(operation, variables, cacheConfig, uploadables) {
FILE: js/setup.js
class Root (line 52) | class Root extends React.Component {
FILE: js/store/compatibility.js
constant LS_GROUP (line 4) | const LS_GROUP = "F8StoreCompatibility",
constant LS_VERSIONING (line 4) | const LS_GROUP = "F8StoreCompatibility",
function ensureCompatibility (line 7) | async function ensureCompatibility() {
function resetCompatibility (line 17) | async function resetCompatibility() {
function updateCompatibility (line 31) | async function updateCompatibility() {
FILE: js/store/promise.js
function warn (line 27) | function warn(error) {
FILE: js/store/track.js
function track (line 30) | function track(action: Action): void {
FILE: js/tabs/F8TabsView.js
constant SCHEDULE_ICONS (line 56) | const SCHEDULE_ICONS = {
constant BADGE_SIZE (line 67) | const BADGE_SIZE = 14,
constant BADGE_PADDING_H (line 67) | const BADGE_SIZE = 14,
constant UPDATE_LOOP_MINUTES (line 67) | const BADGE_SIZE = 14,
constant UPDATE_LOOP_DURATION (line 67) | const BADGE_SIZE = 14,
class F8TabsView (line 80) | class F8TabsView extends React.Component {
class TabBadge (line 232) | class TabBadge extends React.Component {
method render (line 233) | render() {
function select (line 321) | function select(store) {
function actions (line 330) | function actions(dispatch) {
FILE: js/tabs/MenuItem.js
class MenuItem (line 33) | class MenuItem extends React.Component {
FILE: js/tabs/demos/DemosCarousel.js
class DemosCarousel (line 44) | class DemosCarousel extends React.Component {
FILE: js/tabs/demos/F8DemoDetails.js
constant WINDOW_WIDTH (line 49) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant HORIZONTAL_BREAKPOINT (line 49) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant CONTENT_PADDING_H (line 49) | const WINDOW_WIDTH = Dimensions.get("window").width,
method renderHeading (line 89) | renderHeading({ title, logo, logoWidth, logoHeight }) {
method renderDescription (line 104) | renderDescription(description) {
method renderMap (line 112) | renderMap(map) {
method renderLinksSection (line 121) | renderLinksSection(links) {
method renderActions (line 157) | renderActions(bookingURL) {
method renderMiniHeader (line 185) | renderMiniHeader(title) {
class Section (line 196) | class Section extends React.Component {
function select (line 277) | function select(store, props) {
FILE: js/tabs/demos/F8DemosView.js
constant WINDOW_WIDTH (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant PADDING_HORIZONTAL (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant ILLUSTRATION_HEIGHT (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant ILLUSTRATION_VISIBLE (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant ILLUSTRATION_OFFSET (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant PATTERN_VISIBLE (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant PATTERN_HEIGHT (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant PATTERN_OFFSET (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
class F8DemosView (line 60) | class F8DemosView extends React.Component {
method constructor (line 61) | constructor(props) {
method render (line 68) | render() {
method renderView (line 121) | renderView(demos, garages, hasBookables) {
method renderTable (line 153) | renderTable(rows: Array<mixed> = [], groupTitle: ?string) {
method renderManageReservationsButton (line 202) | renderManageReservationsButton(hasBookables) {
method onRowSelect (line 224) | onRowSelect(selectedIndex: number, rows: Array<mixed>, title: ?string) {
function sortDemos (line 304) | function sortDemos(demos = []) {
function select (line 317) | function select(store) {
FILE: js/tabs/info/AboutLocation.js
class AboutLocation (line 52) | class AboutLocation extends React.Component {
method render (line 56) | render() {
method renderTitle (line 67) | renderTitle() {
method renderDate (line 75) | renderDate() {
method renderVenue (line 83) | renderVenue() {
method renderAddress (line 91) | renderAddress() {
FILE: js/tabs/info/CommonQuestions.js
class CommonQuestions (line 34) | class CommonQuestions extends React.Component {
method render (line 35) | render() {
method renderTitle (line 47) | renderTitle() {
class Row (line 56) | class Row extends React.Component {
method render (line 57) | render() {
FILE: js/tabs/info/DirectionsLink.js
class DirectionsLink (line 38) | class DirectionsLink extends React.Component {
method render (line 43) | render() {
FILE: js/tabs/info/F8AboutView.js
constant PADDING_HORIZONTAL (line 34) | const PADDING_HORIZONTAL = 18,
constant WINDOW_WIDTH (line 34) | const PADDING_HORIZONTAL = 18,
class F8AboutView (line 41) | class F8AboutView extends React.Component {
method constructor (line 42) | constructor() {
method webview (line 48) | webview(url) {
method render (line 52) | render() {
method renderWiFiDetailsSection (line 89) | renderWiFiDetailsSection() {
method renderFAQSection (line 111) | renderFAQSection() {
method renderPagesSection (line 137) | renderPagesSection() {
method renderPoliciesSection (line 161) | renderPoliciesSection() {
method renderThirdPartyNoticesSection (line 185) | renderThirdPartyNoticesSection() {
FILE: js/tabs/info/F8InfoView.js
class F8InfoView (line 41) | class F8InfoView extends React.Component {
method render (line 42) | render() {
method renderTestItems (line 78) | renderTestItems() {
method showTestMenu (line 102) | showTestMenu() {
function select (line 124) | function select(store) {
FILE: js/tabs/info/LinksList.js
constant ICON_SIZE (line 33) | const ICON_SIZE = 45;
class Row (line 84) | class Row extends React.Component {
FILE: js/tabs/info/Section.js
class Section (line 30) | class Section extends React.Component {
FILE: js/tabs/info/WiFiDetails.js
class WiFiDetails (line 44) | class WiFiDetails extends React.Component {
method render (line 48) | render() {
class Column (line 64) | class Column extends React.Component {
FILE: js/tabs/maps/F8MapView.js
constant HEADER_HEIGHT (line 37) | const HEADER_HEIGHT = F8Header.height,
constant WINDOW_WIDTH (line 37) | const HEADER_HEIGHT = F8Header.height,
constant WINDOW_HEIGHT (line 37) | const HEADER_HEIGHT = F8Header.height,
constant CONTROLS_HEIGHT (line 37) | const HEADER_HEIGHT = F8Header.height,
constant MAP_HEIGHT (line 37) | const HEADER_HEIGHT = F8Header.height,
class F8MapView (line 43) | class F8MapView extends React.Component {
method constructor (line 44) | constructor(props) {
method render (line 54) | render() {
method switchMap (line 100) | switchMap(mapName) {
function select (line 132) | function select(store) {
FILE: js/tabs/maps/F8VenueMap.js
constant SCREEN_WIDTH (line 39) | const SCREEN_WIDTH = Dimensions.get("window").width,
constant SCREEN_HEIGHT (line 39) | const SCREEN_WIDTH = Dimensions.get("window").width,
class F8VenueMap (line 46) | class F8VenueMap extends React.Component {
method render (line 53) | render() {
method renderAndroid (line 66) | renderAndroid(url) {
method renderIOS (line 75) | renderIOS(url, width, height) {
function urlForMap (line 107) | function urlForMap(map) {
FILE: js/tabs/maps/ZoomableImage.js
class ZoomableImage (line 30) | class ZoomableImage extends React.Component {
FILE: js/tabs/notifications/F8NotificationsView.js
class F8NotificationsView (line 44) | class F8NotificationsView extends React.Component {
method constructor (line 45) | constructor(props) {
method render (line 54) | render() {
method renderRow (line 75) | renderRow(notification, sid, rid) {
method renderEmptyList (line 86) | renderEmptyList(containerHeight) {
method openNotification (line 99) | openNotification(notification) {
method openReview (line 116) | openReview() {
function select (line 146) | function select(state) {
function actions (line 154) | function actions(dispatch) {
FILE: js/tabs/notifications/NotificationCell.js
constant IMAGE_RATIO (line 43) | const IMAGE_RATIO = 230 / 375,
constant CELL_PADDING_VERTICAL (line 43) | const IMAGE_RATIO = 230 / 375,
constant CELL_PADDING_LEFT (line 43) | const IMAGE_RATIO = 230 / 375,
constant CELL_PADDING_RIGHT (line 43) | const IMAGE_RATIO = 230 / 375,
constant TIMELINE_LEFT (line 43) | const IMAGE_RATIO = 230 / 375,
constant TIMELINE_DOT_OFFSET_TOP (line 43) | const IMAGE_RATIO = 230 / 375,
constant IMG_MARGIN_TOP (line 43) | const IMAGE_RATIO = 230 / 375,
constant SCREEN_WIDTH (line 43) | const IMAGE_RATIO = 230 / 375,
constant ICON_TYPES (line 52) | const ICON_TYPES = {
class NotificationCell (line 86) | class NotificationCell extends React.Component {
method render (line 87) | render() {
method renderTimelineSegment (line 113) | renderTimelineSegment(type: string) {
method renderTimeAndText (line 130) | renderTimeAndText() {
method renderAttachmentByType (line 144) | renderAttachmentByType(type: string) {
method renderImageAttachment (line 158) | renderImageAttachment() {
method renderSessionAttachment (line 195) | renderSessionAttachment() {
method renderSurveyAttachment (line 206) | renderSurveyAttachment() {
method renderLinkAttachment (line 218) | renderLinkAttachment() {
method getType (line 237) | getType() {
function select (line 311) | function select(store, props) {
FILE: js/tabs/notifications/PushNUXModal.js
constant WINDOW_WIDTH (line 34) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant MODAL_PADDING_H (line 34) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant MODAL_WIDTH (line 34) | const WINDOW_WIDTH = Dimensions.get("window").width,
class PushNUXModal (line 41) | class PushNUXModal extends React.Component {
FILE: js/tabs/notifications/RateSessionsCell.js
function RateSessionsCell (line 40) | function RateSessionsCell({ numberOfSessions, onPress }: Props) {
FILE: js/tabs/notifications/unseenNotificationsCount.js
function unseenNotificationsCount (line 34) | function unseenNotificationsCount(
FILE: js/tabs/schedule/AddToScheduleButton.js
constant SAVED_LABEL (line 42) | const SAVED_LABEL = "Added to my F8";
constant ADD_LABEL (line 43) | const ADD_LABEL = "Add to my F8";
class AddToScheduleButton (line 45) | class AddToScheduleButton extends React.Component {
method constructor (line 49) | constructor(props: Props) {
method render (line 56) | render() {
method componentWillReceiveProps (line 76) | componentWillReceiveProps(nextProps: Props) {
FILE: js/tabs/schedule/EmptySchedule.js
class EmptySchedule (line 32) | class EmptySchedule extends React.Component {
FILE: js/tabs/schedule/F8FriendGoing.js
class F8FriendGoing (line 34) | class F8FriendGoing extends React.Component {
FILE: js/tabs/schedule/F8GanttGrid.js
constant LABELS_WIDTH (line 32) | const LABELS_WIDTH = 30,
constant LABELS_HEIGHT (line 32) | const LABELS_WIDTH = 30,
class F8GanttGrid (line 39) | class F8GanttGrid extends React.Component {
method render (line 40) | render() {
method renderColumns (line 52) | renderColumns(momentStart: moment, count: number) {
FILE: js/tabs/schedule/F8GanttNowMarker.js
constant NOW_MARKER_DOT (line 32) | const NOW_MARKER_DOT = 6,
constant NOW_MARKER_LINE (line 32) | const NOW_MARKER_DOT = 6,
constant LABELS_HEIGHT (line 32) | const NOW_MARKER_DOT = 6,
class F8GanttNowMarker (line 40) | class F8GanttNowMarker extends React.Component {
method render (line 41) | render() {
FILE: js/tabs/schedule/F8GanttRow.js
constant ROW_HEIGHT (line 34) | const ROW_HEIGHT = 26;
class F8GanttRow (line 40) | class F8GanttRow extends React.Component {
method calculateSize (line 41) | calculateSize() {
method render (line 65) | render() {
FILE: js/tabs/schedule/F8ScheduleGantt.js
constant ROW_HEIGHT (line 33) | const ROW_HEIGHT = 26,
constant ROW_GUTTERS (line 33) | const ROW_HEIGHT = 26,
constant GRID_PADDING (line 33) | const ROW_HEIGHT = 26,
constant LABELS_HEIGHT (line 33) | const ROW_HEIGHT = 26,
class F8ScheduleGantt (line 46) | class F8ScheduleGantt extends React.Component {
method constructor (line 47) | constructor(props) {
method componentWillReceiveProps (line 59) | componentWillReceiveProps(nextProps) {
method shouldComponentUpdate (line 77) | shouldComponentUpdate(nextProps, nextState) {
method filterSessions (line 81) | filterSessions(all) {
method groupSessionsIntoRows (line 133) | groupSessionsIntoRows(all) {
method render (line 158) | render() {
method renderRow (line 196) | renderRow(session, i) {
method renderGrid (line 215) | renderGrid(height, start, end) {
method renderNow (line 226) | renderNow(now, start, end) {
FILE: js/tabs/schedule/F8SessionCell.js
constant CELL_PADDING_TOP (line 39) | const CELL_PADDING_TOP = 8,
constant CELL_PADDING_RIGHT (line 39) | const CELL_PADDING_TOP = 8,
constant CELL_PADDING_BOTTOM (line 39) | const CELL_PADDING_TOP = 8,
constant DURATION_FONT_SIZE (line 39) | const CELL_PADDING_TOP = 8,
constant CELL_LEFT (line 39) | const CELL_PADDING_TOP = 8,
constant TIMELINE_LEFT (line 39) | const CELL_PADDING_TOP = 8,
constant TIMELINE_DOT_TOP (line 39) | const CELL_PADDING_TOP = 8,
class F8SessionCell (line 51) | class F8SessionCell extends React.Component {
function select (line 215) | function select(store, props) {
FILE: js/tabs/schedule/F8SessionDetails.js
constant WINDOW_WIDTH (line 47) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant HORIZONTAL_BREAKPOINT (line 47) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant CONTENT_PADDING_H (line 47) | const WINDOW_WIDTH = Dimensions.get("window").width,
method renderLocation (line 85) | renderLocation() {
method renderTitle (line 100) | renderTitle() {
method renderDescription (line 110) | renderDescription() {
method renderSpeakers (line 118) | renderSpeakers() {
method renderFriendsGoing (line 135) | renderFriendsGoing() {
method renderMap (line 150) | renderMap() {
method renderActions (line 158) | renderActions() {
method renderScrollingHeader (line 179) | renderScrollingHeader() {
method renderModals (line 190) | renderModals() {
class Section (line 239) | class Section extends React.Component {
function select (line 326) | function select(store, props) {
function actions (line 344) | function actions(dispatch, props) {
FILE: js/tabs/schedule/FilterHeader.js
constant CONTAINER_HEIGHT (line 35) | const CONTAINER_HEIGHT = 39;
class FilterHeader (line 40) | class FilterHeader extends React.Component {
method render (line 46) | render() {
FILE: js/tabs/schedule/FriendCell.js
class FriendCell (line 35) | class FriendCell extends React.Component {
FILE: js/tabs/schedule/FriendsListView.js
method constructor (line 47) | constructor(props: Props) {
method render (line 58) | render() {
method renderRow (line 71) | renderRow(friend: Friend) {
method ReactElement (line 80) | ReactElement {
method if (line 84) | if (!this.props.loggedIn) {
FILE: js/tabs/schedule/FriendsScheduleView.js
class FriendsScheduleView (line 52) | class FriendsScheduleView extends React.Component {
method constructor (line 55) | constructor(props) {
method render (line 60) | render() {
method renderEmptyList (line 109) | renderEmptyList(day, containerHeight) {
function select (line 127) | function select(store, props) {
FILE: js/tabs/schedule/FriendsUsingApp.js
constant PROFILE_PICTURE_SIZE (line 30) | const PROFILE_PICTURE_SIZE = 30;
function select (line 142) | function select(store) {
FILE: js/tabs/schedule/GeneralScheduleView.js
constant GANTT_PADDDING_H (line 59) | const GANTT_PADDDING_H = 14,
constant GANTT_WIDTH (line 59) | const GANTT_PADDDING_H = 14,
class GeneralScheduleView (line 71) | class GeneralScheduleView extends React.Component {
method constructor (line 74) | constructor(props) {
method componentWillReceiveProps (line 90) | componentWillReceiveProps(nextProps) {
method render (line 105) | render() {
method renderStickyHeader (line 169) | renderStickyHeader() {
method renderGanttChart (line 197) | renderGanttChart(day: number, sessions: Array<Session>) {
method renderEmptyList (line 233) | renderEmptyList(day: number, containerHeight: number) {
method openFilterScreen (line 251) | openFilterScreen() {
method switchDay (line 264) | switchDay(page: number) {
function select (line 269) | function select(store) {
function actions (line 278) | function actions(dispatch) {
FILE: js/tabs/schedule/HideCompleted.js
constant CONTAINER_HEIGHT (line 30) | const CONTAINER_HEIGHT = 46;
class HideCompleted (line 36) | class HideCompleted extends React.Component {
method render (line 47) | render() {
method renderSwitch (line 59) | renderSwitch() {
FILE: js/tabs/schedule/InviteFriendsButton.js
class InviteFriendsButton (line 33) | class InviteFriendsButton extends React.Component {
function select (line 69) | function select(store) {
FILE: js/tabs/schedule/MyScheduleView.js
constant PRIVACY_ICON_SIZE (line 60) | const PRIVACY_ICON_SIZE = 20;
class MyScheduleView (line 74) | class MyScheduleView extends React.Component {
method constructor (line 77) | constructor(props) {
method componentWillReceiveProps (line 99) | componentWillReceiveProps(nextProps) {
method render (line 114) | render() {
method renderContent (line 153) | renderContent() {
method renderHeaderContent (line 190) | renderHeaderContent() {
method renderStickyHeader (line 228) | renderStickyHeader() {
method renderNotLoggedIn (line 242) | renderNotLoggedIn(containerHeight: number) {
method renderEmptySessionsList (line 258) | renderEmptySessionsList(day: number, containerHeight: number) {
method renderPrivacyModal (line 315) | renderPrivacyModal() {
method openSharingSettings (line 328) | openSharingSettings() {
method dismiss (line 332) | dismiss() {
method handleSegmentChanged (line 336) | handleSegmentChanged(segment: number) {
function select (line 376) | function select(store) {
function actions (line 388) | function actions(dispatch) {
FILE: js/tabs/schedule/PrivacyIcon.js
constant DEFAULT_SIZE (line 39) | const DEFAULT_SIZE = 48,
constant DEFAULT_BGCOLOR (line 39) | const DEFAULT_SIZE = 48,
constant ICON_COLOR (line 39) | const DEFAULT_SIZE = 48,
constant ICON_WIDTH (line 39) | const DEFAULT_SIZE = 48,
constant ICON_HEIGHT (line 39) | const DEFAULT_SIZE = 48,
constant ICON_WIDTH_RATIO (line 39) | const DEFAULT_SIZE = 48,
constant ICON_HEIGHT_RATIO (line 39) | const DEFAULT_SIZE = 48,
class PrivacyIcon (line 59) | class PrivacyIcon extends React.Component {
method render (line 69) | render() {
method renderIconImage (line 99) | renderIconImage(width, height, tintColor) {
FILE: js/tabs/schedule/ProfileButton.js
class ProfileButton (line 29) | class ProfileButton extends React.Component {
method render (line 30) | render() {
FILE: js/tabs/schedule/ScheduleListView.js
class ScheduleListView (line 46) | class ScheduleListView extends React.Component {
method constructor (line 51) | constructor(props: Props) {
method componentWillReceiveProps (line 67) | componentWillReceiveProps(nextProps: Props) {
method render (line 80) | render() {
method renderSectionHeader (line 93) | renderSectionHeader(sectionData: any, sectionID: string) {
method renderRow (line 102) | renderRow(session: Session, day: number) {
method ReactElement (line 112) | ReactElement {
FILE: js/tabs/schedule/SessionsCarousel.js
class SessionsCarusel (line 58) | class SessionsCarusel extends React.Component {
FILE: js/tabs/schedule/SessionsSectionHeader.js
class SessionsSectionHeader (line 32) | class SessionsSectionHeader extends React.Component {
FILE: js/tabs/schedule/SharingSettingsCommon.js
class SharingSettingsCommon (line 33) | class SharingSettingsCommon extends React.Component {
function select (line 106) | function select(store) {
FILE: js/tabs/schedule/SharingSettingsModal.js
constant WINDOW_WIDTH (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant WINDOW_HEIGHT (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant VERTICAL_BREAKPOINT (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant CONTENT_SPACING_SCALE (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant MODAL_PADDING_H (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant MODAL_WIDTH (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant HEADER_HEIGHT (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant PROFILE_PICTURE_SIZE (line 39) | const WINDOW_WIDTH = Dimensions.get("window").width,
class SharingSettingsModal (line 51) | class SharingSettingsModal extends React.Component {
function select (line 180) | function select(store) {
FILE: js/tabs/schedule/SharingSettingsScreen.js
constant WIN_HEIGHT (line 40) | const WIN_HEIGHT = Dimensions.get("window").height;
constant FRIENDS_AREA_SCALING (line 41) | const FRIENDS_AREA_SCALING = WIN_HEIGHT <= 600 ? 0.5 : 1;
constant PROFILE_PICTURE_SIZE (line 42) | const PROFILE_PICTURE_SIZE = WIN_HEIGHT <= 600 ? 120 : 158;
class SharingSettingsScreen (line 44) | class SharingSettingsScreen extends React.Component {
function select (line 127) | function select(store) {
FILE: js/tabs/schedule/filterSessions.js
function byDay (line 30) | function byDay(sessions: Array<Session>, day: number): Array<Session> {
function byTopics (line 34) | function byTopics(sessions: Array<Session>, topics: StringMap): Array<Se...
function bySchedule (line 47) | function bySchedule(
function byCompleted (line 54) | function byCompleted(sessions: Array<Session>, time: number): Array<Sess...
FILE: js/tabs/schedule/formatDuration.js
function naivePlural (line 26) | function naivePlural(text: string, count: number): string {
function formatDuration (line 33) | function formatDuration(startMs: number, endMs: number): string {
FILE: js/tabs/schedule/formatTime.js
function formatTime (line 29) | function formatTime(unix: number, hideAMPM: boolean): string {
FILE: js/tabs/videos/F8EmptyVideosView.js
constant HEADER_IMAGE_RATIO (line 36) | const HEADER_IMAGE_RATIO = 257 / 375,
constant WIN_WIDTH (line 36) | const HEADER_IMAGE_RATIO = 257 / 375,
constant HEADER_IMAGE_WIDTH (line 36) | const HEADER_IMAGE_RATIO = 257 / 375,
constant HEADER_IMAGE_HEIGHT (line 36) | const HEADER_IMAGE_RATIO = 257 / 375,
class F8EmptyVideosView (line 44) | class F8EmptyVideosView extends React.Component {
method render (line 49) | render() {
FILE: js/tabs/videos/F8VideoThumb.js
constant WINDOW_WIDTH (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant CONTAINER_PADDING_H (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant GUTTER (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant ROW_SPACING (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant WIDTH_LARGE (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant WIDTH_SMALL (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant IMAGE_ASPECT_RATIO_SMALL (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant IMAGE_ASPECT_RATIO_LARGE (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant NUMLINES_SMALL (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant NUMLINES_LARGE (line 33) | const WINDOW_WIDTH = Dimensions.get("window").width,
class F8VideoThumb (line 58) | class F8VideoThumb extends React.Component {
method render (line 64) | render() {
method renderImage (line 92) | renderImage(src, width, height) {
method renderLength (line 105) | renderLength(type, length, watched) {
method renderTitle (line 115) | renderTitle(type, title) {
method getImageSize (line 133) | getImageSize(type) {
FILE: js/tabs/videos/F8VideoView.js
class F8VideoView (line 39) | class F8VideoView extends React.Component {
method render (line 40) | render() {
method renderTitle (line 88) | renderTitle() {
method renderDescription (line 97) | renderDescription() {
FILE: js/tabs/videos/F8VideosView.js
class F8VideosView (line 50) | class F8VideosView extends React.Component {
method constructor (line 51) | constructor() {
method render (line 65) | render() {
method renderRow (line 118) | renderRow(row: Array, sid, rid) {
method renderStickyHeader (line 142) | renderStickyHeader() {
method onPressEmptyCTA (line 156) | onPressEmptyCTA() {
method onPress (line 160) | onPress(selected) {
method openFilterScreen (line 165) | openFilterScreen() {
function sortFeatured (line 187) | function sortFeatured(videos = []) {
function actions (line 200) | function actions(dispatch) {
function select (line 208) | function select(store) {
FILE: js/tabs/videos/filterVideos.js
method if (line 91) | if (Object.keys(topics).length === 0) {
FILE: js/video/F8VideoPlayer.js
constant WINDOW_WIDTH (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
constant VIDEO_ASPECT_RATIO (line 40) | const WINDOW_WIDTH = Dimensions.get("window").width,
class F8VideoPlayer (line 55) | class F8VideoPlayer extends React.Component {
method render (line 63) | render() {
method componentWillUnmount (line 74) | componentWillUnmount() {
method renderBackgroundImage (line 79) | renderBackgroundImage() {
method renderPlayButton (line 88) | renderPlayButton() {
FILE: js/video/VideoControls.js
class VideoControls (line 20) | class VideoControls extends React.Component {
method constructor (line 25) | constructor(props) {
method render (line 37) | render() {
method renderActions (line 48) | renderActions() {
method renderSkipButtons (line 73) | renderSkipButtons() {
method renderPlayButton (line 92) | renderPlayButton() {
method renderFullscreenButton (line 101) | renderFullscreenButton() {
method onHitbox (line 117) | onHitbox() {
class PlayPauseButton (line 133) | class PlayPauseButton extends React.Component {
method render (line 134) | render() {
FILE: js/video/VideoLoader.js
function loopingAnimation (line 7) | function loopingAnimation(animations = []) {
class VideoLoader (line 22) | class VideoLoader extends React.Component {
method constructor (line 27) | constructor(props) {
method render (line 35) | render() {
method componentDidMount (line 45) | componentDidMount() {
FILE: server/graphql/src/schema/typeRegistry.js
method register (line 26) | register(type) {
method lookup (line 29) | lookup(name) {
FILE: server/parse-server/cloud/functions/agenda.js
function queryAgenda (line 13) | function queryAgenda() {
function buildSchedule (line 28) | function buildSchedule(schedule) {
FILE: server/parse-server/cloud/functions/friends.js
function fetchSchedule (line 51) | function fetchSchedule(user) {
FILE: server/parse-server/cloud/functions/meetups.js
function queryMeetups (line 11) | function queryMeetups() {
function querySponsors (line 22) | function querySponsors() {
FILE: server/parse-server/cloud/functions/messengerbot.js
function fetchSchedule (line 39) | function fetchSchedule(user) {
function hasSavedSession (line 183) | function hasSavedSession(user, sid) {
FILE: server/parse-server/cloud/functions/surveys.js
function sendSurveys (line 110) | function sendSurveys(attendees, survey, session) {
function toSurveys (line 155) | function toSurveys(emptyResults) {
FILE: server/parse-server/cloud/functions/tests.js
function pickRandom (line 117) | function pickRandom(list) {
FILE: server/parse-server/cloud/jobs/installationSync.js
function findUserChannels (line 33) | function findUserChannels(user) {
FILE: server/parse-server/cloud/jobs/updateVideoSources.js
constant GRAPH_BASE_URL (line 4) | const Video = Parse.Object.extend("Video"),
constant GRAPH_FIELDS_PARAM (line 4) | const Video = Parse.Object.extend("Video"),
constant GRAPH_ACCESS_PARAM (line 4) | const Video = Parse.Object.extend("Video"),
Condensed preview — 331 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (879K chars).
[
{
"path": ".babelrc",
"chars": 58,
"preview": "{\n \"plugins\": [\"relay\"],\n \"presets\": [\"react-native\"]\n}\n"
},
{
"path": ".buckconfig",
"chars": 114,
"preview": "\n[android]\n target = Google Inc.:Google APIs:23\n\n[maven_repositories]\n central = https://repo1.maven.org/maven2\n"
},
{
"path": ".circleci/config.yml",
"chars": 845,
"preview": "version: 2\njobs:\n build:\n working_directory: ~/f8app\n docker:\n - image: circleci/node:7.10\n steps:\n "
},
{
"path": ".eslintignore",
"chars": 19,
"preview": "**/node_modules/**\n"
},
{
"path": ".eslintrc",
"chars": 15337,
"preview": "{\n \"parser\": \"babel-eslint\",\n\n \"ecmaFeatures\": {\n \"jsx\": true\n },\n\n \"env\": {\n \"es6\": true,\n \"jasmine\": true"
},
{
"path": ".flowconfig",
"chars": 1486,
"preview": "[ignore]\n; We fork some components by platform\n.*/*[.]android.js\n\n; Ignore \"BUCK\" generated dirs\n<PROJECT_ROOT>/\\.buckd/"
},
{
"path": ".gitattributes",
"chars": 16,
"preview": "*.pbxproj -text\n"
},
{
"path": ".gitignore",
"chars": 792,
"preview": "# OSX\n#\n.DS_Store\n\n# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.p"
},
{
"path": ".watchmanconfig",
"chars": 2,
"preview": "{}"
},
{
"path": "CODE_OF_CONDUCT.md",
"chars": 249,
"preview": "# Code of Conduct\n\nFacebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read "
},
{
"path": "CONTRIBUTING.md",
"chars": 2857,
"preview": "# Contributing to F8 App\n\nWe want to make contributing to this project as easy and transparent as\npossible.\n\n## Code of "
},
{
"path": "LICENSE",
"chars": 1010,
"preview": "Copyright 2016 Facebook, Inc.\n\nYou are hereby granted a non-exclusive, worldwide, royalty-free license to\nuse, copy, mod"
},
{
"path": "README.md",
"chars": 626,
"preview": "# F8 App 2017\n\nThis is the entire source code of the official [F8](https://fbf8.com/) app of 2017, available on [Google "
},
{
"path": "__mocks__/react-native.js",
"chars": 363,
"preview": "import rn from \"react-native\";\n\njest.mock(\"Linking\", () => {\n return {\n addEventListener: jest.fn(),\n removeEvent"
},
{
"path": "android/app/BUCK",
"chars": 1499,
"preview": "import re\n\n# To learn about Buck see [Docs](https://buckbuild.com/).\n# To run your application with Buck:\n# - install Bu"
},
{
"path": "android/app/build.gradle",
"chars": 6322,
"preview": "apply plugin: \"com.android.application\"\n\nimport com.android.build.OutputFile\n\n/**\n * The react.gradle file registers a t"
},
{
"path": "android/app/proguard-rules.pro",
"chars": 2480,
"preview": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /u"
},
{
"path": "android/app/src/debug/res/values/strings.xml",
"chars": 131,
"preview": "<resources>\n <string name=\"app_name\">F8 Debug</string>\n <string name=\"facebook_app_id\">619048868222429</string>\n</"
},
{
"path": "android/app/src/debug/res/values/styles.xml",
"chars": 192,
"preview": "<resources>\n\n <!-- Base application theme. -->\n <style name=\"AppTheme\" parent=\"Theme.ReactNative.AppCompat.Light\">"
},
{
"path": "android/app/src/main/AndroidManifest.xml",
"chars": 3443,
"preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:tools=\"http://schemas.android.com/tools\"\n"
},
{
"path": "android/app/src/main/java/com/facebook/f8/MainActivity.java",
"chars": 759,
"preview": "package com.facebook.f8;\n\nimport com.facebook.react.ReactActivity;\nimport android.content.Intent;\n/*import com.facebook."
},
{
"path": "android/app/src/main/java/com/facebook/f8/MainApplication.java",
"chars": 1846,
"preview": "package com.facebook.f8;\n\nimport android.app.Application;\n\nimport com.facebook.react.ReactApplication;\nimport com.BV.Lin"
},
{
"path": "android/app/src/main/res/values/strings.xml",
"chars": 125,
"preview": "<resources>\n <string name=\"app_name\">F8</string>\n <string name=\"facebook_app_id\">619048868222429</string>\n</resour"
},
{
"path": "android/app/src/main/res/values/styles.xml",
"chars": 192,
"preview": "<resources>\n\n <!-- Base application theme. -->\n <style name=\"AppTheme\" parent=\"Theme.ReactNative.AppCompat.Light\">"
},
{
"path": "android/build.gradle",
"chars": 676,
"preview": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\nbuildscript {\n r"
},
{
"path": "android/gradle/wrapper/gradle-wrapper.properties",
"chars": 230,
"preview": "#Tue Jan 17 15:39:05 EST 2017\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_"
},
{
"path": "android/gradle.properties",
"chars": 1053,
"preview": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will o"
},
{
"path": "android/gradlew",
"chars": 5080,
"preview": "#!/usr/bin/env bash\n\n##############################################################################\n##\n## Gradle start "
},
{
"path": "android/gradlew.bat",
"chars": 2404,
"preview": "@if \"%DEBUG%\" == \"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@r"
},
{
"path": "android/keystores/BUCK",
"chars": 138,
"preview": "keystore(\n name = 'debug',\n store = 'debug.keystore',\n properties = 'debug.keystore.properties',\n visibility = [\n "
},
{
"path": "android/keystores/debug.keystore.properties",
"chars": 105,
"preview": "key.store=debug.keystore\nkey.alias=androiddebugkey\nkey.store.password=android\nkey.alias.password=android\n"
},
{
"path": "android/settings.gradle",
"chars": 932,
"preview": "rootProject.name = 'F82017'\ninclude ':react-native-linear-gradient'\nproject(':react-native-linear-gradient').projectDir "
},
{
"path": "app.json",
"chars": 49,
"preview": "{\n \"name\": \"F82017\",\n \"displayName\": \"F82017\"\n}"
},
{
"path": "docker-compose.yml",
"chars": 510,
"preview": "version: \"3\"\nservices:\n mongo:\n image: mongo\n networks:\n default:\n aliases:\n - mongo\n mongo"
},
{
"path": "index.android.js",
"chars": 125,
"preview": "import { AppRegistry } from \"react-native\";\nimport setup from \"./js/setup\";\n\nAppRegistry.registerComponent(\"F82017\", set"
},
{
"path": "index.ios.js",
"chars": 125,
"preview": "import { AppRegistry } from \"react-native\";\nimport setup from \"./js/setup\";\n\nAppRegistry.registerComponent(\"F82017\", set"
},
{
"path": "ios/F82017/AppDelegate.h",
"chars": 451,
"preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the B"
},
{
"path": "ios/F82017/AppDelegate.m",
"chars": 5081,
"preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the B"
},
{
"path": "ios/F82017/Base.lproj/LaunchScreen.xib",
"chars": 2570,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe"
},
{
"path": "ios/F82017/F82017.entitlements",
"chars": 246,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "ios/F82017/Images.xcassets/AppIcon.appiconset/Contents.json",
"chars": 1104,
"preview": "{\n \"images\" : [\n {\n \"size\" : \"20x20\",\n \"idiom\" : \"iphone\",\n \"filename\" : \"20@2x.png\",\n \"scale\" :"
},
{
"path": "ios/F82017/Info.plist",
"chars": 2141,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "ios/F82017/main.m",
"chars": 510,
"preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the B"
},
{
"path": "ios/F82017-tvOS/Info.plist",
"chars": 1611,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "ios/F82017-tvOSTests/Info.plist",
"chars": 765,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "ios/F82017.xcodeproj/project.pbxproj",
"chars": 65872,
"preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
},
{
"path": "ios/F82017.xcodeproj/xcshareddata/xcschemes/F82017-tvOS.xcscheme",
"chars": 4968,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0820\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "ios/F82017.xcodeproj/xcshareddata/xcschemes/F82017.xcscheme",
"chars": 4903,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0620\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "ios/F82017Tests/F82017Tests.m",
"chars": 2070,
"preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the B"
},
{
"path": "ios/F82017Tests/Info.plist",
"chars": 765,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "js/F8Analytics.js",
"chars": 1269,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/F8App.js",
"chars": 3570,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/F8Navigator.js",
"chars": 5794,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/FacebookSDK.js",
"chars": 4758,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/Playground.js",
"chars": 2136,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/PushNotificationsController.js",
"chars": 3471,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/config.js",
"chars": 1463,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/filter.js",
"chars": 1778,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/index.js",
"chars": 1856,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/installation.js",
"chars": 1778,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/login.js",
"chars": 4226,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/navigation.js",
"chars": 1367,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/notifications.js",
"chars": 3382,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/parse.js",
"chars": 3026,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/schedule.js",
"chars": 5321,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/surveys.js",
"chars": 1609,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/test.js",
"chars": 3037,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/types.js",
"chars": 2853,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/actions/video.js",
"chars": 1124,
"preview": "import F8Analytics from \"../F8Analytics\";\nimport { Platform, Share, ActionSheetIOS } from \"react-native\";\n\nimport type {"
},
{
"path": "js/common/ActionsOverlay.js",
"chars": 4427,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/Carousel.js",
"chars": 1946,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8ActionSheet.js",
"chars": 5929,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8BackgroundRepeat.js",
"chars": 3546,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Button.js",
"chars": 9550,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Colors.js",
"chars": 3934,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8DrawerLayout.js",
"chars": 2873,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Fonts.js",
"chars": 2267,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Header.js",
"chars": 11674,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Linking.js",
"chars": 1759,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Modal.js",
"chars": 3359,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8PageControl.js",
"chars": 2591,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8ScrollingHeader.js",
"chars": 3950,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8SegmentedControl.js",
"chars": 4483,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8StyleSheet.js",
"chars": 1644,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Text.js",
"chars": 4577,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8TimelineBackground.js",
"chars": 2662,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8TimelineSegment.js",
"chars": 4278,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Toast.js",
"chars": 4554,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Tooltip.js",
"chars": 4996,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8Touchable.js",
"chars": 1556,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/F8WebView.js",
"chars": 11314,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/Hitbox.js",
"chars": 1867,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/ItemsWithSeparator.js",
"chars": 1954,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/LaunchScreen.js",
"chars": 2551,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/ListContainer.js",
"chars": 6293,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/LoginButton.js",
"chars": 2885,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/MapView.js",
"chars": 5685,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/MessengerChatHead.js",
"chars": 3362,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/MessengerModal.js",
"chars": 4112,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/ParallaxBackground.js",
"chars": 5109,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/PlayButton.js",
"chars": 4865,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/ProfilePicture.js",
"chars": 2107,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/PureListView.js",
"chars": 4968,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/ViewPager.js",
"chars": 5367,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/__tests__/convertTimes-test.js",
"chars": 5007,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/common/convertTimes.js",
"chars": 1542,
"preview": "import moment from \"moment-timezone\";\nimport { timezone } from \"../env.js\";\n\nimport type { Session } from \"../reducers/s"
},
{
"path": "js/env.js",
"chars": 1481,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/FilterScreen.android.js",
"chars": 5817,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/FilterScreen.ios.js",
"chars": 5704,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/FriendsList.js",
"chars": 2992,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/Header.js",
"chars": 2927,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/Section.js",
"chars": 1774,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/TopicItem.js",
"chars": 3156,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/filter/topicIcons.js",
"chars": 1213,
"preview": "const TOPIC_ICONS = {\n default: [require(\"./img/default/1.png\")],\n active: [\n require(\"./img/active/1.png\"),\n re"
},
{
"path": "js/flow-lib.js",
"chars": 1540,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/login/LoginModal.js",
"chars": 4257,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/login/LoginScreen.js",
"chars": 6616,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/Header.js",
"chars": 3389,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/RadioButtons.js",
"chars": 3408,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/RatingQuestion.js",
"chars": 4030,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/RatingScreen.js",
"chars": 5873,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/StarRating.js",
"chars": 3599,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/StarRatings.js",
"chars": 3095,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/rating/WrittenResponse.js",
"chars": 3152,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/__mocks__/parse.js",
"chars": 1615,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/__tests__/maps-test.js",
"chars": 1750,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/__tests__/notifications-test.js",
"chars": 2651,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/__tests__/schedule-test.js",
"chars": 2350,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/config.js",
"chars": 2397,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/createParseReducer.js",
"chars": 1612,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/faqs.js",
"chars": 1445,
"preview": "/**\n * Copyright 2014 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/friendsSchedules.js",
"chars": 1553,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/index.js",
"chars": 1849,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/maps.js",
"chars": 1677,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/navigation.js",
"chars": 1714,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/notifications.js",
"chars": 3561,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/pages.js",
"chars": 1499,
"preview": "/**\n * Copyright 2014 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/policies.js",
"chars": 1449,
"preview": "/**\n * Copyright 2014 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/schedule.js",
"chars": 1752,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/scheduleFilter.js",
"chars": 1603,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/scheduleTopics.js",
"chars": 1575,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/sessions.js",
"chars": 2867,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/surveys.js",
"chars": 1752,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/testEventDates.js",
"chars": 1387,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/user.js",
"chars": 2192,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/videoFilter.js",
"chars": 1605,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/videoTopics.js",
"chars": 1569,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/reducers/videos.js",
"chars": 1863,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/relay-environment.js",
"chars": 1726,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/setup.js",
"chars": 2766,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/store/analytics.js",
"chars": 1207,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/store/array.js",
"chars": 1191,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/store/compatibility.js",
"chars": 1177,
"preview": "import { AsyncStorage } from \"react-native\";\nimport { compatibleStoreVersion } from \"../env\";\n\nconst LS_GROUP = \"F8Store"
},
{
"path": "js/store/configureStore.js",
"chars": 2127,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/store/promise.js",
"chars": 1488,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/store/track.js",
"chars": 2347,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/F8TabsView.js",
"chars": 10015,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/MenuItem.js",
"chars": 2750,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/demos/DemosCarousel.js",
"chars": 4160,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/demos/F8DemoDetails.js",
"chars": 7562,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/demos/F8DemosView.js",
"chars": 9534,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/demos/__generated__/F8DemosViewQuery.graphql.js",
"chars": 5927,
"preview": "/**\n * @flow\n * @relayHash d1f7b51cfc6f9fe392e405fc2f8b3967\n */\n\n/* eslint-disable */\n\n\"use strict\";\n\n/*::\nimport type {"
},
{
"path": "js/tabs/info/AboutLocation.js",
"chars": 3015,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/CommonQuestions.js",
"chars": 2785,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/DirectionsLink.js",
"chars": 3498,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/F8AboutView.js",
"chars": 5790,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/F8InfoView.js",
"chars": 4146,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/LinksList.js",
"chars": 4300,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/Section.js",
"chars": 1923,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/info/WiFiDetails.js",
"chars": 2815,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/maps/F8MapView.js",
"chars": 4290,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/maps/F8VenueMap.js",
"chars": 3760,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/maps/ZoomableImage.js",
"chars": 3102,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/F8NotificationsView.js",
"chars": 5156,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/NotificationCell.js",
"chars": 8902,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/PushNUXModal.js",
"chars": 3874,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/RateSessionsCell.js",
"chars": 2353,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/allNotifications.js",
"chars": 1888,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/findSessionByURI.js",
"chars": 1530,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/notifications/unseenNotificationsCount.js",
"chars": 1596,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/AddToScheduleButton.js",
"chars": 2902,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/EmptySchedule.js",
"chars": 2517,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8FriendGoing.js",
"chars": 2166,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8GanttGrid.js",
"chars": 3997,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8GanttNowMarker.js",
"chars": 2970,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8GanttRow.js",
"chars": 4244,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8ScheduleGantt.js",
"chars": 7330,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8SessionCell.js",
"chars": 6272,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8SessionDetails.js",
"chars": 9711,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/F8SpeakerProfile.js",
"chars": 1882,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/FilterHeader.js",
"chars": 3041,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/FriendCell.js",
"chars": 2758,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/FriendsListView.js",
"chars": 3764,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/FriendsScheduleView.js",
"chars": 4210,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/FriendsUsingApp.js",
"chars": 4530,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/GeneralScheduleView.js",
"chars": 8656,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/HideCompleted.js",
"chars": 4061,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/InviteFriendsButton.js",
"chars": 2291,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/MyScheduleView.js",
"chars": 11917,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
},
{
"path": "js/tabs/schedule/PrivacyIcon.js",
"chars": 4113,
"preview": "/**\n * Copyright 2016 Facebook, Inc.\n *\n * You are hereby granted a non-exclusive, worldwide, royalty-free license to\n *"
}
]
// ... and 131 more files (download for full content)
About this extraction
This page contains the full source code of the fbsamples/f8app GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 331 files (800.1 KB), approximately 207.2k tokens, and a symbol index with 709 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.