├── .DS_Store ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── README.md ├── client ├── components │ ├── AppBody.jsx │ ├── AppLoading.jsx │ ├── AppNotFound.jsx │ ├── Home.jsx │ ├── Other.jsx │ ├── Settings.jsx │ └── main.html ├── router.jsx └── styles │ └── styles.scss ├── kadira.js ├── lib ├── app.browserify.js ├── app.browserify.js.cached ├── app.browserify.js.map ├── app.browserify.options.json └── collection.jsx ├── packages.json ├── packages └── npm-container │ ├── .npm │ └── package │ │ ├── .gitignore │ │ ├── README │ │ └── npm-shrinkwrap.json │ ├── index.js │ └── package.js └── server └── server.jsx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcorcos/meteor-react-ionic-tinder-4/411cf917527dca1c69222cc21be097921eb4f2ec/.DS_Store -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- 1 | # This file contains information which helps Meteor properly upgrade your 2 | # app when you run 'meteor update'. You should check it into version control 3 | # with your project. 4 | 5 | notices-for-0.9.0 6 | notices-for-0.9.1 7 | 0.9.4-platform-file 8 | notices-for-facebook-graph-api-2 9 | -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- 1 | # This file contains a token that is unique to your project. 2 | # Check it into your repository along with the rest of this directory. 3 | # It can be used for purposes such as: 4 | # - ensuring you don't accidentally deploy one app on top of another 5 | # - providing package authors with aggregated statistics 6 | 7 | ncurrb1bapm89trkp67 8 | -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- 1 | # Meteor packages used by this project, one per line. 2 | # Check this file (and the other files in this directory) into your repository. 3 | # 4 | # 'meteor add' and 'meteor remove' will edit this file for you, 5 | # but you can also edit it by hand. 6 | 7 | meteor-platform 8 | insecure 9 | cosmos:browserify 10 | fourseven:scss@2.0.0 11 | meteorhacks:npm 12 | meteoric:ionic-sass 13 | meteoric:ionicons-sass 14 | react 15 | 16 | 17 | npm-container 18 | digilord:faker 19 | meteorhacks:kadira 20 | -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.1.0.3 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- 1 | autoupdate@1.2.1 2 | babel-compiler@5.8.3_1 3 | babel-runtime@0.1.3 4 | base64@1.0.3 5 | binary-heap@1.0.3 6 | blaze@2.1.2 7 | blaze-tools@1.0.3 8 | boilerplate-generator@1.0.3 9 | callback-hook@1.0.3 10 | check@1.0.5 11 | coffeescript@1.0.6 12 | cosmos:browserify@0.5.0 13 | ddp@1.1.0 14 | deps@1.0.7 15 | digilord:faker@1.0.7 16 | ejson@1.0.6 17 | email@1.0.6 18 | fastclick@1.0.3 19 | fourseven:scss@2.1.1 20 | geojson-utils@1.0.3 21 | html-tools@1.0.4 22 | htmljs@1.0.4 23 | http@1.1.0 24 | id-map@1.0.3 25 | insecure@1.0.3 26 | jquery@1.11.3_2 27 | json@1.0.3 28 | jsx@0.1.5 29 | launch-screen@1.0.2 30 | livedata@1.0.13 31 | localstorage@1.0.3 32 | logging@1.0.7 33 | meteor@1.1.6 34 | meteor-platform@1.2.2 35 | meteorhacks:async@1.0.0 36 | meteorhacks:kadira@2.23.0 37 | meteorhacks:meteorx@1.3.1 38 | meteorhacks:npm@1.4.0 39 | meteoric:ionic-sass@0.1.9 40 | meteoric:ionicons-sass@0.1.6 41 | minifiers@1.1.5 42 | minimongo@1.0.8 43 | mobile-status-bar@1.0.3 44 | mongo@1.1.0 45 | mongo-livedata@1.0.8 46 | npm-container@1.1.0 47 | observe-sequence@1.0.6 48 | ordered-dict@1.0.3 49 | random@1.0.3 50 | react@0.1.7 51 | react-meteor-data@0.1.5 52 | react-runtime@0.13.3_4 53 | react-runtime-dev@0.13.3_3 54 | react-runtime-prod@0.13.3_2 55 | reactive-dict@1.1.0 56 | reactive-var@1.0.5 57 | reload@1.1.3 58 | retry@1.0.3 59 | routepolicy@1.0.5 60 | session@1.1.0 61 | spacebars@1.0.6 62 | spacebars-compiler@1.0.6 63 | templating@1.1.1 64 | tracker@1.0.7 65 | ui@1.0.6 66 | underscore@1.0.3 67 | url@1.0.4 68 | webapp@1.2.0 69 | webapp-hashing@1.0.3 70 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Meteor-React-Ionic Tinder Clone 2 | 3 | This is kind of a tinder clone. Just the animations mostly. 4 | -------------------------------------------------------------------------------- /client/components/AppBody.jsx: -------------------------------------------------------------------------------- 1 | AppBody = React.createClass({ 2 | render() { 3 | return ( 4 |
{this.props.card.details}
118 |{user.details}
24 |