├── .DS_Store ├── .gitignore ├── Comment.js ├── README.md ├── commentsTestApp ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── ExampleActions.js ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── testapp │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── commentsTestApp.code-workspace ├── index.js ├── ios │ ├── testApp-tvOS │ │ └── Info.plist │ ├── testApp-tvOSTests │ │ └── Info.plist │ ├── testApp.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── testApp-tvOS.xcscheme │ │ │ └── testApp.xcscheme │ ├── testApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── testAppTests │ │ ├── Info.plist │ │ └── testAppTests.m ├── package.json ├── sampleComments.json └── styles.js ├── index.js ├── no-user.png ├── package.json ├── sampleComments.json └── styles.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | commentsTestApp/package-lock\.json 3 | 4 | \.eslintrc 5 | -------------------------------------------------------------------------------- /Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/Comment.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/README.md -------------------------------------------------------------------------------- /commentsTestApp/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /commentsTestApp/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/.buckconfig -------------------------------------------------------------------------------- /commentsTestApp/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/.flowconfig -------------------------------------------------------------------------------- /commentsTestApp/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /commentsTestApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/.gitignore -------------------------------------------------------------------------------- /commentsTestApp/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /commentsTestApp/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/App.js -------------------------------------------------------------------------------- /commentsTestApp/ExampleActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ExampleActions.js -------------------------------------------------------------------------------- /commentsTestApp/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/__tests__/App.js -------------------------------------------------------------------------------- /commentsTestApp/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/BUCK -------------------------------------------------------------------------------- /commentsTestApp/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/build.gradle -------------------------------------------------------------------------------- /commentsTestApp/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/java/com/testapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/java/com/testapp/MainActivity.java -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/java/com/testapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/java/com/testapp/MainApplication.java -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /commentsTestApp/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /commentsTestApp/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/build.gradle -------------------------------------------------------------------------------- /commentsTestApp/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/gradle.properties -------------------------------------------------------------------------------- /commentsTestApp/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /commentsTestApp/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /commentsTestApp/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/gradlew -------------------------------------------------------------------------------- /commentsTestApp/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/gradlew.bat -------------------------------------------------------------------------------- /commentsTestApp/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/keystores/BUCK -------------------------------------------------------------------------------- /commentsTestApp/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /commentsTestApp/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/android/settings.gradle -------------------------------------------------------------------------------- /commentsTestApp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/app.json -------------------------------------------------------------------------------- /commentsTestApp/commentsTestApp.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/commentsTestApp.code-workspace -------------------------------------------------------------------------------- /commentsTestApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/index.js -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp-tvOS/Info.plist -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp-tvOS.xcscheme -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp.xcodeproj/xcshareddata/xcschemes/testApp.xcscheme -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/AppDelegate.h -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/AppDelegate.m -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/Info.plist -------------------------------------------------------------------------------- /commentsTestApp/ios/testApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testApp/main.m -------------------------------------------------------------------------------- /commentsTestApp/ios/testAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testAppTests/Info.plist -------------------------------------------------------------------------------- /commentsTestApp/ios/testAppTests/testAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/ios/testAppTests/testAppTests.m -------------------------------------------------------------------------------- /commentsTestApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/package.json -------------------------------------------------------------------------------- /commentsTestApp/sampleComments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/sampleComments.json -------------------------------------------------------------------------------- /commentsTestApp/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/commentsTestApp/styles.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/index.js -------------------------------------------------------------------------------- /no-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/no-user.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/package.json -------------------------------------------------------------------------------- /sampleComments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/sampleComments.json -------------------------------------------------------------------------------- /styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokict/react-native-comments/HEAD/styles.js --------------------------------------------------------------------------------