├── .bundle └── config ├── .detoxrc.js ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .svgrrc ├── .watchmanconfig ├── Gemfile ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── sqlplay │ │ │ └── DetoxTest.java │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── sqlplay │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── Ionicons.ttf │ │ │ │ └── MaterialIcons.ttf │ │ │ ├── hello.txt │ │ │ ├── query-support.md │ │ │ └── www │ │ │ │ └── prepop.db │ │ ├── java │ │ │ └── com │ │ │ │ └── sqlplay │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── MeasureSize.kt │ │ │ │ └── MyAppPackage.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── baseline_3p_24.xml │ │ │ ├── baseline_auto_awesome_24.xml │ │ │ ├── baseline_dataset_24.xml │ │ │ ├── baseline_help_center_24.xml │ │ │ ├── baseline_unarchive_24.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── logo.png │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── network_security_config.xml │ │ └── release │ │ └── java │ │ └── com │ │ └── sqlplay │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── artifacts ├── android.emu.release.2023-04-06 12-03-45Z │ └── ✓ Test Command Search panel Tap on the first result │ │ └── element.png.png └── android.emu.release.2023-04-06 12-04-55Z │ └── ✓ Test Command Search panel Tap on the first result │ └── element.png ├── babel.config.js ├── bun.lockb ├── declaration.d.ts ├── e2e ├── ids.ts ├── init.ts ├── jest.config.js ├── ui │ ├── 1_runCommand.e2e.ts │ ├── 2_commandList.e2e.ts │ ├── 3_queryExamples.e2e.ts │ ├── sql-lessons.e2e.ts │ └── support-request.e2e.ts └── utils.ts ├── global.css ├── index.js ├── ios ├── .xcode.env ├── GoogleService-Info.plist ├── MeasureSize.m ├── MeasureSize.swift ├── MyModule.swift ├── Podfile ├── Podfile.lock ├── SqlPlay-Bridging-Header.h ├── SqlPlay.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SqlPlay.xcscheme ├── SqlPlay.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── SqlPlay │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── BootSplashLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── bootsplash_logo.png │ │ │ ├── bootsplash_logo@2x.png │ │ │ └── bootsplash_logo@3x.png │ │ ├── Contents.json │ │ ├── PngIcon.imageset │ │ │ ├── Contents.json │ │ │ └── sql playground logo with transparent bg.png │ │ └── appstore.imageset │ │ │ ├── Contents.json │ │ │ └── appstore.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ ├── SqlPlay.entitlements │ └── main.m └── SqlPlayTests │ ├── Info.plist │ └── SqlPlayTests.m ├── jest.config.js ├── logo.png ├── md-pages ├── supported-query.js └── supported-query.md ├── metro.config.js ├── nativewind-env.d.ts ├── package.json ├── patches ├── zipcelx-on-steroids+1.0.4.patch └── zipcelx-on-steroids@1.0.4.patch ├── scripts ├── generate-icons.js ├── md2js.ts └── run-e2e-ios-release.sh ├── src ├── App.tsx ├── RootStackNav.tsx ├── api │ ├── lessons-api.ts │ └── support-api.ts ├── app.d.ts ├── assets │ └── icons │ │ ├── backspace.svg │ │ ├── caret-up.svg │ │ ├── crown-simple.svg │ │ ├── crown.svg │ │ ├── dots-three-vertical.svg │ │ ├── magnifying-glass.svg │ │ ├── paper-plane-right.svg │ │ └── trash.svg ├── component │ ├── Button │ │ ├── ExtendedFab.tsx │ │ ├── PrimaryButton.tsx │ │ └── SecondaryButton.tsx │ ├── CommandList.tsx │ ├── CustomHandle.tsx │ ├── ExportData.tsx │ ├── FeatureListItem.tsx │ ├── GoPremium.tsx │ ├── Icons │ │ ├── BaseIcon.tsx │ │ ├── SVGIconList.tsx │ │ └── SVGIconNames.ts │ ├── InputContainer.tsx │ ├── Inputs │ │ ├── BaseTextInput.tsx │ │ ├── SearchBox.tsx │ │ └── SpportMessageInput.tsx │ ├── MenuOptions.tsx │ ├── OptionsMenu.tsx │ ├── RunButton.tsx │ ├── SearchSheet.tsx │ ├── ShortcutsBar.tsx │ ├── Skeletons │ │ └── HomePageSkeleton.tsx │ ├── TabBar.tsx │ ├── Table.tsx │ └── TopicCard.tsx ├── data │ ├── colors.json │ ├── commands.csv │ ├── commands.json │ └── commands.jsonl ├── images │ ├── autocomplete.png │ └── sqlpro.png ├── screens │ ├── CodeRunner.tsx │ ├── Export.tsx │ ├── LearnStackNav.tsx │ ├── Lesson.tsx │ ├── LessonsList.tsx │ ├── Purchase.tsx │ └── SupportTickets │ │ ├── NewSupportTicket.tsx │ │ ├── SupportTicketDetails.tsx │ │ └── SupportTicketsList.tsx ├── store │ ├── index.ts │ ├── input.ts │ └── mmkv.ts ├── types │ ├── env.d.ts │ ├── lesson-type.ts │ ├── nav.ts │ ├── ticket-form-schema.ts │ └── ticket.ts └── utils │ ├── appReviewer.tsx │ ├── clipboard.ts │ ├── const.ts │ ├── db.ts │ ├── device-info.ts │ ├── fil.ts │ ├── formatter.ts │ ├── index.ts │ ├── keyboard-status.ts │ ├── measureTextSize.ts │ ├── notif.ts │ ├── platform.ts │ ├── run-query.ts │ ├── storage.tsx │ ├── updateChecker.tsx │ ├── utils.tsx │ └── xlsx.ts ├── tailwind.config.js ├── tsconfig.json ├── www └── prepop.db └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/.bundle/config -------------------------------------------------------------------------------- /.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/.detoxrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.svgrrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/.svgrrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/sqlplay/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/androidTest/java/com/sqlplay/DetoxTest.java -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/sqlplay/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/debug/java/com/sqlplay/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/assets/query-support.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/assets/www/prepop.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/assets/www/prepop.db -------------------------------------------------------------------------------- /android/app/src/main/java/com/sqlplay/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/java/com/sqlplay/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/sqlplay/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/java/com/sqlplay/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/sqlplay/MeasureSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/java/com/sqlplay/MeasureSize.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/sqlplay/MyAppPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/java/com/sqlplay/MyAppPackage.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/baseline_3p_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/baseline_3p_24.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/baseline_auto_awesome_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/baseline_auto_awesome_24.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/baseline_dataset_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/baseline_dataset_24.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/baseline_help_center_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/baseline_help_center_24.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/baseline_unarchive_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/baseline_unarchive_24.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/sqlplay/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/app/src/release/java/com/sqlplay/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/app.json -------------------------------------------------------------------------------- /artifacts/android.emu.release.2023-04-06 12-03-45Z/✓ Test Command Search panel Tap on the first result/element.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/artifacts/android.emu.release.2023-04-06 12-03-45Z/✓ Test Command Search panel Tap on the first result/element.png.png -------------------------------------------------------------------------------- /artifacts/android.emu.release.2023-04-06 12-04-55Z/✓ Test Command Search panel Tap on the first result/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/artifacts/android.emu.release.2023-04-06 12-04-55Z/✓ Test Command Search panel Tap on the first result/element.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/babel.config.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/bun.lockb -------------------------------------------------------------------------------- /declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/declaration.d.ts -------------------------------------------------------------------------------- /e2e/ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/ids.ts -------------------------------------------------------------------------------- /e2e/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/init.ts -------------------------------------------------------------------------------- /e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/jest.config.js -------------------------------------------------------------------------------- /e2e/ui/1_runCommand.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/ui/1_runCommand.e2e.ts -------------------------------------------------------------------------------- /e2e/ui/2_commandList.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/ui/2_commandList.e2e.ts -------------------------------------------------------------------------------- /e2e/ui/3_queryExamples.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/ui/3_queryExamples.e2e.ts -------------------------------------------------------------------------------- /e2e/ui/sql-lessons.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/ui/sql-lessons.e2e.ts -------------------------------------------------------------------------------- /e2e/ui/support-request.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/ui/support-request.e2e.ts -------------------------------------------------------------------------------- /e2e/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/e2e/utils.ts -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/global.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/MeasureSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/MeasureSize.m -------------------------------------------------------------------------------- /ios/MeasureSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/MeasureSize.swift -------------------------------------------------------------------------------- /ios/MyModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/MyModule.swift -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/SqlPlay-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay-Bridging-Header.h -------------------------------------------------------------------------------- /ios/SqlPlay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SqlPlay.xcodeproj/xcshareddata/xcschemes/SqlPlay.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay.xcodeproj/xcshareddata/xcschemes/SqlPlay.xcscheme -------------------------------------------------------------------------------- /ios/SqlPlay.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/SqlPlay.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/SqlPlay.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/SqlPlay/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/AppDelegate.h -------------------------------------------------------------------------------- /ios/SqlPlay/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/AppDelegate.mm -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/PngIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/PngIcon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/PngIcon.imageset/sql playground logo with transparent bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/PngIcon.imageset/sql playground logo with transparent bg.png -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/appstore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/appstore.imageset/Contents.json -------------------------------------------------------------------------------- /ios/SqlPlay/Images.xcassets/appstore.imageset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Images.xcassets/appstore.imageset/appstore.png -------------------------------------------------------------------------------- /ios/SqlPlay/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/Info.plist -------------------------------------------------------------------------------- /ios/SqlPlay/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/SqlPlay/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/SqlPlay/SqlPlay.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/SqlPlay.entitlements -------------------------------------------------------------------------------- /ios/SqlPlay/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlay/main.m -------------------------------------------------------------------------------- /ios/SqlPlayTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlayTests/Info.plist -------------------------------------------------------------------------------- /ios/SqlPlayTests/SqlPlayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/ios/SqlPlayTests/SqlPlayTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/logo.png -------------------------------------------------------------------------------- /md-pages/supported-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/md-pages/supported-query.js -------------------------------------------------------------------------------- /md-pages/supported-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/md-pages/supported-query.md -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/metro.config.js -------------------------------------------------------------------------------- /nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/nativewind-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/package.json -------------------------------------------------------------------------------- /patches/zipcelx-on-steroids+1.0.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/patches/zipcelx-on-steroids+1.0.4.patch -------------------------------------------------------------------------------- /patches/zipcelx-on-steroids@1.0.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/patches/zipcelx-on-steroids@1.0.4.patch -------------------------------------------------------------------------------- /scripts/generate-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/scripts/generate-icons.js -------------------------------------------------------------------------------- /scripts/md2js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/scripts/md2js.ts -------------------------------------------------------------------------------- /scripts/run-e2e-ios-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/scripts/run-e2e-ios-release.sh -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/RootStackNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/RootStackNav.tsx -------------------------------------------------------------------------------- /src/api/lessons-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/api/lessons-api.ts -------------------------------------------------------------------------------- /src/api/support-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/api/support-api.ts -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/assets/icons/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/backspace.svg -------------------------------------------------------------------------------- /src/assets/icons/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/caret-up.svg -------------------------------------------------------------------------------- /src/assets/icons/crown-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/crown-simple.svg -------------------------------------------------------------------------------- /src/assets/icons/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/crown.svg -------------------------------------------------------------------------------- /src/assets/icons/dots-three-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/dots-three-vertical.svg -------------------------------------------------------------------------------- /src/assets/icons/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/magnifying-glass.svg -------------------------------------------------------------------------------- /src/assets/icons/paper-plane-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/paper-plane-right.svg -------------------------------------------------------------------------------- /src/assets/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/assets/icons/trash.svg -------------------------------------------------------------------------------- /src/component/Button/ExtendedFab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Button/ExtendedFab.tsx -------------------------------------------------------------------------------- /src/component/Button/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Button/PrimaryButton.tsx -------------------------------------------------------------------------------- /src/component/Button/SecondaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Button/SecondaryButton.tsx -------------------------------------------------------------------------------- /src/component/CommandList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/CommandList.tsx -------------------------------------------------------------------------------- /src/component/CustomHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/CustomHandle.tsx -------------------------------------------------------------------------------- /src/component/ExportData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/ExportData.tsx -------------------------------------------------------------------------------- /src/component/FeatureListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/FeatureListItem.tsx -------------------------------------------------------------------------------- /src/component/GoPremium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/GoPremium.tsx -------------------------------------------------------------------------------- /src/component/Icons/BaseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Icons/BaseIcon.tsx -------------------------------------------------------------------------------- /src/component/Icons/SVGIconList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Icons/SVGIconList.tsx -------------------------------------------------------------------------------- /src/component/Icons/SVGIconNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Icons/SVGIconNames.ts -------------------------------------------------------------------------------- /src/component/InputContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/InputContainer.tsx -------------------------------------------------------------------------------- /src/component/Inputs/BaseTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Inputs/BaseTextInput.tsx -------------------------------------------------------------------------------- /src/component/Inputs/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Inputs/SearchBox.tsx -------------------------------------------------------------------------------- /src/component/Inputs/SpportMessageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Inputs/SpportMessageInput.tsx -------------------------------------------------------------------------------- /src/component/MenuOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/MenuOptions.tsx -------------------------------------------------------------------------------- /src/component/OptionsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/OptionsMenu.tsx -------------------------------------------------------------------------------- /src/component/RunButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/RunButton.tsx -------------------------------------------------------------------------------- /src/component/SearchSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/SearchSheet.tsx -------------------------------------------------------------------------------- /src/component/ShortcutsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/ShortcutsBar.tsx -------------------------------------------------------------------------------- /src/component/Skeletons/HomePageSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Skeletons/HomePageSkeleton.tsx -------------------------------------------------------------------------------- /src/component/TabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/TabBar.tsx -------------------------------------------------------------------------------- /src/component/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/Table.tsx -------------------------------------------------------------------------------- /src/component/TopicCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/component/TopicCard.tsx -------------------------------------------------------------------------------- /src/data/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/data/colors.json -------------------------------------------------------------------------------- /src/data/commands.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/data/commands.csv -------------------------------------------------------------------------------- /src/data/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/data/commands.json -------------------------------------------------------------------------------- /src/data/commands.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/data/commands.jsonl -------------------------------------------------------------------------------- /src/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/images/autocomplete.png -------------------------------------------------------------------------------- /src/images/sqlpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/images/sqlpro.png -------------------------------------------------------------------------------- /src/screens/CodeRunner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/CodeRunner.tsx -------------------------------------------------------------------------------- /src/screens/Export.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/Export.tsx -------------------------------------------------------------------------------- /src/screens/LearnStackNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/LearnStackNav.tsx -------------------------------------------------------------------------------- /src/screens/Lesson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/Lesson.tsx -------------------------------------------------------------------------------- /src/screens/LessonsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/LessonsList.tsx -------------------------------------------------------------------------------- /src/screens/Purchase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/Purchase.tsx -------------------------------------------------------------------------------- /src/screens/SupportTickets/NewSupportTicket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/SupportTickets/NewSupportTicket.tsx -------------------------------------------------------------------------------- /src/screens/SupportTickets/SupportTicketDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/SupportTickets/SupportTicketDetails.tsx -------------------------------------------------------------------------------- /src/screens/SupportTickets/SupportTicketsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/screens/SupportTickets/SupportTicketsList.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/store/input.ts -------------------------------------------------------------------------------- /src/store/mmkv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/store/mmkv.ts -------------------------------------------------------------------------------- /src/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/types/env.d.ts -------------------------------------------------------------------------------- /src/types/lesson-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/types/lesson-type.ts -------------------------------------------------------------------------------- /src/types/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/types/nav.ts -------------------------------------------------------------------------------- /src/types/ticket-form-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/types/ticket-form-schema.ts -------------------------------------------------------------------------------- /src/types/ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/types/ticket.ts -------------------------------------------------------------------------------- /src/utils/appReviewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/appReviewer.tsx -------------------------------------------------------------------------------- /src/utils/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/clipboard.ts -------------------------------------------------------------------------------- /src/utils/const.ts: -------------------------------------------------------------------------------- 1 | export const productId = 'premium'; 2 | -------------------------------------------------------------------------------- /src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/db.ts -------------------------------------------------------------------------------- /src/utils/device-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/device-info.ts -------------------------------------------------------------------------------- /src/utils/fil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/fil.ts -------------------------------------------------------------------------------- /src/utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/formatter.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/keyboard-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/keyboard-status.ts -------------------------------------------------------------------------------- /src/utils/measureTextSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/measureTextSize.ts -------------------------------------------------------------------------------- /src/utils/notif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/notif.ts -------------------------------------------------------------------------------- /src/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/platform.ts -------------------------------------------------------------------------------- /src/utils/run-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/run-query.ts -------------------------------------------------------------------------------- /src/utils/storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/storage.tsx -------------------------------------------------------------------------------- /src/utils/updateChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/updateChecker.tsx -------------------------------------------------------------------------------- /src/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/utils.tsx -------------------------------------------------------------------------------- /src/utils/xlsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/src/utils/xlsx.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/tsconfig.json -------------------------------------------------------------------------------- /www/prepop.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/www/prepop.db -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLPlay/SQL-Play/HEAD/yarn.lock --------------------------------------------------------------------------------