├── .gitignore ├── .vscode └── settings.json ├── README.md ├── backend ├── .firebaserc ├── .gitignore ├── README.md ├── firebase.api.json ├── firebase.job.json ├── functions │ ├── .gitignore │ ├── package.json │ ├── src │ │ ├── api.function.ts │ │ ├── api.start.ts │ │ ├── backend.init.ts │ │ ├── helpers │ │ │ ├── apollo.ts │ │ │ ├── config.ts │ │ │ ├── constants.ts │ │ │ ├── firebase.ts │ │ │ ├── index.ts │ │ │ └── logger.ts │ │ ├── job.function.ts │ │ ├── job.start.ts │ │ ├── jobs │ │ │ ├── dataload │ │ │ │ ├── dataload.data.ts │ │ │ │ ├── dataload.job.ts │ │ │ │ ├── dataload.map.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── job.manager.ts │ │ │ └── ssrurls │ │ │ │ ├── index.ts │ │ │ │ └── ssrurls.job.ts │ │ ├── middleware │ │ │ ├── auth.middleware.ts │ │ │ ├── express.server.ts │ │ │ ├── graphql.middleware.ts │ │ │ └── index.ts │ │ └── services │ │ │ ├── donation │ │ │ ├── donation.graphql.client.ts │ │ │ ├── donation.graphql.resolver.ts │ │ │ ├── donation.graphql.schema.ts │ │ │ ├── donation.graphql.typedefs.gql │ │ │ ├── donation.service.models.ts │ │ │ ├── donation.service.ts │ │ │ └── index.ts │ │ │ ├── gathering │ │ │ ├── gathering.graphql.client.ts │ │ │ ├── gathering.graphql.resolver.ts │ │ │ ├── gathering.graphql.schema.ts │ │ │ ├── gathering.graphql.typedefs.gql │ │ │ ├── gathering.service.models.ts │ │ │ ├── gathering.service.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── love │ │ │ ├── index.ts │ │ │ ├── love.graphql.client.ts │ │ │ ├── love.graphql.resolver.ts │ │ │ ├── love.graphql.schema.ts │ │ │ ├── love.graphql.typedefs.gql │ │ │ ├── love.service.models.ts │ │ │ └── love.service.ts │ │ │ ├── sketch │ │ │ ├── index.ts │ │ │ ├── sketch.graphql.client.ts │ │ │ ├── sketch.graphql.e2e.ts │ │ │ ├── sketch.graphql.resolver.ts │ │ │ ├── sketch.graphql.schema.ts │ │ │ ├── sketch.graphql.typedefs.gql │ │ │ ├── sketch.service.models.ts │ │ │ └── sketch.service.ts │ │ │ ├── sponsored │ │ │ ├── index.ts │ │ │ ├── sponsored.graphql.client.ts │ │ │ ├── sponsored.graphql.resolver.ts │ │ │ ├── sponsored.graphql.schema.ts │ │ │ ├── sponsored.graphql.typedefs.gql │ │ │ ├── sponsored.service.models.ts │ │ │ └── sponsored.service.ts │ │ │ ├── tag │ │ │ ├── index.ts │ │ │ ├── tag.graphql.client.ts │ │ │ ├── tag.graphql.resolver.ts │ │ │ ├── tag.graphql.schema.ts │ │ │ ├── tag.graphql.typedefs.gql │ │ │ ├── tag.service.models.ts │ │ │ └── tag.service.ts │ │ │ └── user │ │ │ ├── index.ts │ │ │ ├── user.graphql.client.ts │ │ │ ├── user.graphql.e2e.ts │ │ │ ├── user.graphql.resolver.ts │ │ │ ├── user.graphql.schema.ts │ │ │ ├── user.graphql.typedefs.gql │ │ │ ├── user.service.integration.ts │ │ │ ├── user.service.models.ts │ │ │ └── user.service.ts │ ├── test │ │ ├── jest.e2e.json │ │ ├── jest.e2e.setup.ts │ │ ├── jest.integration.json │ │ ├── jest.integration.setup.ts │ │ └── jest.unit.json │ ├── tsconfig.json │ └── tslint.json ├── host │ └── index.html └── package.json ├── frontend ├── .angular-cli.json ├── .angular_cli165.tgz ├── .editorconfig ├── .firebaserc ├── .gitignore ├── .prettierrc ├── .vscode │ └── settings.json ├── LICENSE ├── README.md ├── apps │ ├── nativescript-artist │ │ ├── .gitignore │ │ ├── app │ │ │ ├── App_Resources │ │ │ │ ├── Android │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── app.gradle │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── google-services.json │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ └── iOS │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-40.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-50.png │ │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-72.png │ │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ │ ├── icon-76.png │ │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ │ ├── Default-812h@3x.png │ │ │ │ │ │ ├── Default-Landscape.png │ │ │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ │ │ ├── Default-Portrait.png │ │ │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ ├── Default@2x.png │ │ │ │ │ │ └── Landscape-812h@3x.png │ │ │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ │ │ ├── GoogleService-Info.plist │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ ├── arrow-top-flip.png │ │ │ │ │ ├── arrow-top-flip@2x.png │ │ │ │ │ ├── arrow-top-flip@3x.png │ │ │ │ │ ├── build.xcconfig │ │ │ │ │ └── nativescriptartist.entitlements │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.android.scss │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.ios.scss │ │ │ ├── app.module.ts │ │ │ ├── app.routing.ts │ │ │ ├── assets │ │ │ │ ├── colorwheel.png │ │ │ │ ├── i18n │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── ru.json │ │ │ │ │ └── zh.json │ │ │ │ ├── images │ │ │ │ │ ├── backgrounds │ │ │ │ │ │ ├── graphpaper.png │ │ │ │ │ │ └── linedpaper.png │ │ │ │ │ ├── coin.png │ │ │ │ │ ├── logo-top.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── page.png │ │ │ │ │ ├── pulse-stream.gif │ │ │ │ │ └── unlock.gif │ │ │ │ └── ionicons.min.css │ │ │ ├── core │ │ │ │ └── core.module.ts │ │ │ ├── features │ │ │ │ ├── home │ │ │ │ │ └── home.loader.module.ts │ │ │ │ ├── login │ │ │ │ │ └── login.loader.module.ts │ │ │ │ ├── shared │ │ │ │ │ ├── components │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── modal-background │ │ │ │ │ │ │ ├── modal-background.component.html │ │ │ │ │ │ │ └── modal-background.component.ts │ │ │ │ │ └── shared.module.ts │ │ │ │ ├── tags │ │ │ │ │ ├── components │ │ │ │ │ │ └── artist │ │ │ │ │ │ │ ├── artist.component.html │ │ │ │ │ │ │ └── artist.component.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── artist.service.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tags.loader.module.ts │ │ │ │ └── user │ │ │ │ │ └── user.loader.module.ts │ │ │ ├── fonts │ │ │ │ ├── RobotoRegular.ttf │ │ │ │ └── ionicons.ttf │ │ │ ├── main.aot.ts │ │ │ ├── main.ts │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _action-bar.scss │ │ │ │ ├── _artist-view.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _overrides.android.scss │ │ │ │ ├── _sidedrawer.scss │ │ │ │ ├── _tags.scss │ │ │ │ └── _variables.scss │ │ │ ├── vendor-platform.android.ts │ │ │ ├── vendor-platform.ios.ts │ │ │ └── vendor.ts │ │ ├── firebase.nativescript.json │ │ ├── package.json │ │ ├── references.d.ts │ │ ├── tsconfig.aot.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── nativescript-viewer │ │ ├── .gitignore │ │ ├── app │ │ │ ├── App_Resources │ │ │ │ ├── Android │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── app.gradle │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── ic_add_white.png │ │ │ │ │ │ ├── ic_ellipsis.png │ │ │ │ │ │ ├── ic_play.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── ic_add_white.png │ │ │ │ │ │ ├── ic_ellipsis.png │ │ │ │ │ │ ├── ic_play.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── ic_add_white.png │ │ │ │ │ │ ├── ic_ellipsis.png │ │ │ │ │ │ ├── ic_play.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── google-services.json │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ └── iOS │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-40.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-50.png │ │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-72.png │ │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ │ ├── icon-76.png │ │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ │ ├── Default-812h@3x.png │ │ │ │ │ │ ├── Default-Landscape.png │ │ │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ │ │ ├── Default-Portrait.png │ │ │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ ├── Default@2x.png │ │ │ │ │ │ └── Landscape-812h@3x.png │ │ │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ │ │ ├── GoogleService-Info.plist │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ ├── arrow-top-flip.png │ │ │ │ │ ├── arrow-top-flip@2x.png │ │ │ │ │ ├── arrow-top-flip@3x.png │ │ │ │ │ ├── build.xcconfig │ │ │ │ │ ├── ic_add_white.png │ │ │ │ │ ├── ic_badge_change.png │ │ │ │ │ ├── ic_badge_change@2x.png │ │ │ │ │ ├── ic_ellipsis.png │ │ │ │ │ ├── ic_play.png │ │ │ │ │ └── nativescriptviewer.entitlements │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.android.scss │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.ios.scss │ │ │ ├── app.module.ts │ │ │ ├── app.routing.ts │ │ │ ├── assets │ │ │ │ ├── i18n │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── ru.json │ │ │ │ │ └── zh.json │ │ │ │ ├── images │ │ │ │ │ ├── coin.png │ │ │ │ │ ├── coin10.png │ │ │ │ │ ├── coin3.png │ │ │ │ │ ├── coin5.png │ │ │ │ │ ├── demo-frame.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── like.png │ │ │ │ │ ├── logo-drawer.png │ │ │ │ │ ├── logo-top.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── ng.png │ │ │ │ │ ├── smile.png │ │ │ │ │ ├── star.png │ │ │ │ │ └── unlock.gif │ │ │ │ └── ionicons.min.css │ │ │ ├── core │ │ │ │ └── core.module.ts │ │ │ ├── features │ │ │ │ ├── home │ │ │ │ │ └── home.loader.module.ts │ │ │ │ ├── login │ │ │ │ │ └── login.loader.module.ts │ │ │ │ ├── shared │ │ │ │ │ ├── components │ │ │ │ │ │ ├── badge │ │ │ │ │ │ │ ├── badge.component.html │ │ │ │ │ │ │ └── badge.component.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── modal-badges │ │ │ │ │ │ │ ├── modal-badges.component.html │ │ │ │ │ │ │ └── modal-badges.component.ts │ │ │ │ │ └── shared.module.ts │ │ │ │ ├── tags │ │ │ │ │ ├── components │ │ │ │ │ │ └── viewer │ │ │ │ │ │ │ ├── viewer.component.html │ │ │ │ │ │ │ └── viewer.component.ts │ │ │ │ │ └── tags.loader.module.ts │ │ │ │ └── user │ │ │ │ │ └── user.loader.module.ts │ │ │ ├── fonts │ │ │ │ ├── RobotoRegular.ttf │ │ │ │ └── ionicons.ttf │ │ │ ├── main.aot.ts │ │ │ ├── main.ts │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _overrides.android.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── _viewer.scss │ │ │ ├── vendor-platform.android.ts │ │ │ ├── vendor-platform.ios.ts │ │ │ └── vendor.ts │ │ ├── firebase.nativescript.json │ │ ├── package.json │ │ ├── references.d.ts │ │ ├── tsconfig.aot.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ └── web-viewer │ │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ │ └── src │ │ ├── app │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ └── features │ │ │ ├── core │ │ │ └── core.module.ts │ │ │ ├── home │ │ │ └── home.loader.module.ts │ │ │ ├── login │ │ │ └── login.loader.module.ts │ │ │ ├── shared │ │ │ └── shared.module.ts │ │ │ ├── tags │ │ │ └── tags.loader.module.ts │ │ │ └── user │ │ │ └── user.loader.module.ts │ │ ├── assets │ │ ├── .gitkeep │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── ru.json │ │ │ └── zh.json │ │ ├── images │ │ │ ├── launcher-icon-4x.png │ │ │ └── logo-drawer.png │ │ └── nx-logo.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── manifest.json │ │ ├── ngsw-config.json │ │ ├── polyfills.ts │ │ ├── scss │ │ ├── _index.scss │ │ └── _variables.scss │ │ ├── styles.scss │ │ └── tsconfig.app.json ├── firebase.nativescript.json ├── firebase.pwa.json ├── karma.conf.js ├── libs │ ├── api │ │ ├── api.module.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── services │ │ │ ├── donation │ │ │ ├── donation.graphql.service.ts │ │ │ └── donation.model.ts │ │ │ ├── gathering │ │ │ ├── gathering.graphql.service.ts │ │ │ └── gathering.model.ts │ │ │ ├── index.ts │ │ │ ├── love │ │ │ ├── love.graphql.service.ts │ │ │ └── love.model.ts │ │ │ ├── sketch │ │ │ ├── sketch.graphql.service.ts │ │ │ └── sketch.model.ts │ │ │ ├── sponsored │ │ │ ├── sponsored.graphql.service.ts │ │ │ └── sponsored.model.ts │ │ │ ├── tag │ │ │ ├── tag.graphql.service.ts │ │ │ └── tag.model.ts │ │ │ └── user │ │ │ ├── user.graphql.service.ts │ │ │ └── user.model.ts │ ├── core │ │ ├── base │ │ │ ├── base-component.ts │ │ │ ├── index.ts │ │ │ ├── login.base-component.ts │ │ │ └── profile.base-component.ts │ │ ├── core.module.spec.ts │ │ ├── core.module.ts │ │ ├── environments │ │ │ └── environment.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── routes.ts │ │ ├── services │ │ │ ├── auth.guard.ts │ │ │ ├── firebase.service.ts │ │ │ ├── http-interceptor.service.ts │ │ │ ├── index.ts │ │ │ ├── locale.service.ts │ │ │ ├── log.service.spec.ts │ │ │ ├── log.service.ts │ │ │ ├── modal.service.ts │ │ │ ├── network.service.ts │ │ │ ├── tokens.ts │ │ │ ├── user.service.ts │ │ │ └── window.service.ts │ │ └── state │ │ │ ├── index.ts │ │ │ ├── locale.action.ts │ │ │ ├── locale.state.ts │ │ │ ├── modal.action.ts │ │ │ ├── modal.state.ts │ │ │ ├── router.action.ts │ │ │ ├── ui.action.ts │ │ │ ├── ui.effect.ts │ │ │ ├── ui.reducer.spec.ts │ │ │ ├── ui.reducer.ts │ │ │ ├── ui.state.ts │ │ │ ├── user.action.ts │ │ │ ├── user.effect.ts │ │ │ ├── user.reducer.ts │ │ │ └── user.state.ts │ ├── features │ │ ├── index.ts │ │ ├── models │ │ │ ├── index.ts │ │ │ └── product.model.ts │ │ ├── package.json │ │ ├── tags │ │ │ ├── base │ │ │ │ ├── gathering-detail.base-component.ts │ │ │ │ ├── gatherings.base-component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sketch-viewer.base-component.ts │ │ │ │ ├── tag-detail.base-component.ts │ │ │ │ └── tags.base-component.ts │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── routes.ts │ │ │ ├── services │ │ │ │ ├── frame.service.ts │ │ │ │ ├── index.ts │ │ │ │ └── tag.service.ts │ │ │ └── state │ │ │ │ ├── index.ts │ │ │ │ ├── tag-state.module.ts │ │ │ │ ├── tag.action.ts │ │ │ │ ├── tag.effect.ts │ │ │ │ ├── tag.reducer.ts │ │ │ │ └── tag.state.ts │ │ └── ui │ │ │ ├── base │ │ │ ├── header.base-component.ts │ │ │ ├── index.ts │ │ │ ├── layout.base-component.ts │ │ │ ├── modal-badges.base-component.ts │ │ │ └── modal.base-component.ts │ │ │ ├── directives │ │ │ ├── index.ts │ │ │ └── route-vcref.directive.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── help-tip.model.ts │ │ │ ├── index.ts │ │ │ └── modal.model.ts │ │ │ ├── package.json │ │ │ ├── pipes │ │ │ ├── date-order.pipe.ts │ │ │ └── index.ts │ │ │ └── ui.module.ts │ ├── scss │ │ ├── _common.scss │ │ ├── _variables.scss │ │ └── package.json │ └── utils │ │ ├── angular.ts │ │ ├── arrays.ts │ │ ├── dates.ts │ │ ├── index.ts │ │ ├── objects.ts │ │ ├── package.json │ │ ├── platform.ts │ │ ├── sketch.util.ts │ │ ├── strings.ts │ │ └── tracking.ts ├── package.json ├── protractor.conf.js ├── references.d.ts ├── test.js ├── tsconfig.json ├── tsconfig.spec.json ├── tslint.json └── xplat │ ├── nativescript │ ├── core │ │ ├── core.module.spec.ts │ │ ├── core.module.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── app.service.ts │ │ │ ├── drawer.service.ts │ │ │ ├── index.ts │ │ │ ├── tns-firebase.service.ts │ │ │ ├── tns-modal.service.ts │ │ │ └── tns-window.service.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ └── tns-translate-loader.ts │ ├── features │ │ ├── home │ │ │ ├── components │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── gathering-list-nav │ │ │ │ │ ├── gathering-list-nav.component.html │ │ │ │ │ └── gathering-list-nav.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout │ │ │ │ │ ├── layout.component.html │ │ │ │ │ └── layout.component.ts │ │ │ │ └── sidebar-header │ │ │ │ │ ├── sidebar-header.component.html │ │ │ │ │ └── sidebar-header.component.ts │ │ │ ├── home.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── login │ │ │ ├── components │ │ │ │ ├── index.ts │ │ │ │ └── login │ │ │ │ │ ├── login.component.html │ │ │ │ │ └── login.component.ts │ │ │ ├── index.ts │ │ │ └── login.module.ts │ │ ├── tags │ │ │ ├── components │ │ │ │ ├── gatherings │ │ │ │ │ ├── gatherings.component.html │ │ │ │ │ └── gatherings.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── tag-detail │ │ │ │ │ ├── tag-detail.component.html │ │ │ │ │ └── tag-detail.component.ts │ │ │ │ └── tags │ │ │ │ │ ├── tags.component.html │ │ │ │ │ └── tags.component.ts │ │ │ ├── index.ts │ │ │ └── tags.module.ts │ │ ├── ui │ │ │ ├── base │ │ │ │ ├── app.base-component.ts │ │ │ │ ├── index.ts │ │ │ │ └── tns-modal.base-component.ts │ │ │ ├── components │ │ │ │ ├── header │ │ │ │ │ ├── header-back.component.android.html │ │ │ │ │ ├── header-back.component.ios.html │ │ │ │ │ ├── header-back.component.ts │ │ │ │ │ ├── header-logo.component.android.html │ │ │ │ │ ├── header-logo.component.ios.html │ │ │ │ │ ├── header-logo.component.ts │ │ │ │ │ ├── header.component.android.html │ │ │ │ │ ├── header.component.ios.html │ │ │ │ │ └── header.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modal-title-bar │ │ │ │ │ ├── modal-title-bar.component.html │ │ │ │ │ └── modal-title-bar.component.ts │ │ │ │ └── modal-webview │ │ │ │ │ ├── modal-webview.component.html │ │ │ │ │ └── modal-webview.component.ts │ │ │ ├── index.ts │ │ │ ├── ui.module.spec.ts │ │ │ └── ui.module.ts │ │ └── user │ │ │ ├── components │ │ │ ├── index.ts │ │ │ └── profile │ │ │ │ ├── profile.component.html │ │ │ │ └── profile.component.ts │ │ │ ├── index.ts │ │ │ └── user.module.ts │ ├── index.ts │ ├── package.json │ ├── plugins │ │ ├── nativescript-image-zoom-1.1.1.tgz │ │ └── nativescript-plugin-firebase-5.1.8-ios-cls.tgz │ ├── scss │ │ ├── _cards.scss │ │ ├── _common.scss │ │ ├── _fonts.scss │ │ ├── _forms.scss │ │ ├── _index.android.scss │ │ ├── _index.ios.scss │ │ ├── _labels.scss │ │ ├── _list.scss │ │ ├── _modals.scss │ │ ├── _overrides.android.scss │ │ ├── _overrides.ios.scss │ │ ├── _sidedrawer.scss │ │ ├── _tags.scss │ │ └── _variables.scss │ └── utils │ │ ├── icons.ts │ │ ├── images.ts │ │ └── index.ts │ └── web │ ├── core │ ├── base │ │ ├── app.base-component.ts │ │ └── index.ts │ ├── core.module.spec.ts │ ├── core.module.ts │ ├── index.ts │ └── services │ │ ├── firebase-web.service.ts │ │ ├── index.ts │ │ └── link.service.ts │ ├── features │ ├── home │ │ ├── components │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ └── footer.component.ts │ │ │ ├── gathering-list-nav │ │ │ │ ├── gathering-list-nav.component.html │ │ │ │ └── gathering-list-nav.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ └── header.component.ts │ │ │ ├── index.ts │ │ │ └── layout │ │ │ │ ├── layout.component.html │ │ │ │ └── layout.component.ts │ │ ├── home.module.ts │ │ └── index.ts │ ├── index.ts │ ├── login │ │ ├── components │ │ │ ├── index.ts │ │ │ └── login │ │ │ │ ├── login.component.html │ │ │ │ └── login.component.ts │ │ ├── index.ts │ │ └── login.module.ts │ ├── tags │ │ ├── components │ │ │ ├── gathering-detail │ │ │ │ ├── gathering-detail.component.html │ │ │ │ └── gathering-detail.component.ts │ │ │ ├── gatherings │ │ │ │ ├── gatherings.component.html │ │ │ │ └── gatherings.component.ts │ │ │ ├── index.ts │ │ │ ├── tag-detail │ │ │ │ ├── tag-detail.component.html │ │ │ │ └── tag-detail.component.ts │ │ │ └── tags │ │ │ │ ├── tags.component.html │ │ │ │ └── tags.component.ts │ │ ├── index.ts │ │ └── tags.module.ts │ ├── ui │ │ ├── components │ │ │ ├── index.ts │ │ │ └── modal-badges │ │ │ │ ├── modal-badges.component.html │ │ │ │ └── modal-badges.component.ts │ │ ├── directives │ │ │ ├── index.ts │ │ │ └── read-more.directive.ts │ │ ├── index.ts │ │ ├── pipes │ │ │ ├── index.ts │ │ │ └── safe.pipe.ts │ │ ├── ui.module.spec.ts │ │ └── ui.module.ts │ └── user │ │ ├── components │ │ ├── index.ts │ │ └── profile │ │ │ ├── profile.component.html │ │ │ └── profile.component.ts │ │ ├── index.ts │ │ └── user.module.ts │ ├── index.ts │ └── scss │ ├── _animations.scss │ ├── _footer.scss │ ├── _forms.scss │ ├── _header.scss │ ├── _index.scss │ ├── _layout.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _spacing.scss │ ├── _tags.scss │ ├── _text.scss │ ├── _variables.scss │ └── _viewer.scss └── prettier.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/README.md -------------------------------------------------------------------------------- /backend/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/.firebaserc -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/firebase.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/firebase.api.json -------------------------------------------------------------------------------- /backend/firebase.job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/firebase.job.json -------------------------------------------------------------------------------- /backend/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/.gitignore -------------------------------------------------------------------------------- /backend/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/package.json -------------------------------------------------------------------------------- /backend/functions/src/api.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/api.function.ts -------------------------------------------------------------------------------- /backend/functions/src/api.start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/api.start.ts -------------------------------------------------------------------------------- /backend/functions/src/backend.init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/backend.init.ts -------------------------------------------------------------------------------- /backend/functions/src/helpers/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/helpers/apollo.ts -------------------------------------------------------------------------------- /backend/functions/src/helpers/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/helpers/config.ts -------------------------------------------------------------------------------- /backend/functions/src/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/helpers/constants.ts -------------------------------------------------------------------------------- /backend/functions/src/helpers/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/helpers/firebase.ts -------------------------------------------------------------------------------- /backend/functions/src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/helpers/index.ts -------------------------------------------------------------------------------- /backend/functions/src/helpers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/helpers/logger.ts -------------------------------------------------------------------------------- /backend/functions/src/job.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/job.function.ts -------------------------------------------------------------------------------- /backend/functions/src/job.start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/job.start.ts -------------------------------------------------------------------------------- /backend/functions/src/jobs/dataload/dataload.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/jobs/dataload/dataload.data.ts -------------------------------------------------------------------------------- /backend/functions/src/jobs/dataload/dataload.job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/jobs/dataload/dataload.job.ts -------------------------------------------------------------------------------- /backend/functions/src/jobs/dataload/dataload.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/jobs/dataload/dataload.map.ts -------------------------------------------------------------------------------- /backend/functions/src/jobs/dataload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dataload.job'; 2 | -------------------------------------------------------------------------------- /backend/functions/src/jobs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/jobs/index.ts -------------------------------------------------------------------------------- /backend/functions/src/jobs/job.manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/jobs/job.manager.ts -------------------------------------------------------------------------------- /backend/functions/src/jobs/ssrurls/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ssrurls.job'; 2 | -------------------------------------------------------------------------------- /backend/functions/src/jobs/ssrurls/ssrurls.job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/jobs/ssrurls/ssrurls.job.ts -------------------------------------------------------------------------------- /backend/functions/src/middleware/auth.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/middleware/auth.middleware.ts -------------------------------------------------------------------------------- /backend/functions/src/middleware/express.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/middleware/express.server.ts -------------------------------------------------------------------------------- /backend/functions/src/middleware/graphql.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/middleware/graphql.middleware.ts -------------------------------------------------------------------------------- /backend/functions/src/middleware/index.ts: -------------------------------------------------------------------------------- 1 | export * from './express.server'; 2 | -------------------------------------------------------------------------------- /backend/functions/src/services/donation/donation.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/donation.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/donation/donation.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/donation.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/donation/donation.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/donation.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/donation/donation.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/donation.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/donation/donation.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/donation.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/donation/donation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/donation.service.ts -------------------------------------------------------------------------------- /backend/functions/src/services/donation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/donation/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/gathering.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/gathering.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/gathering.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/gathering.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/gathering.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/gathering.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/gathering.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/gathering.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/gathering.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/gathering.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/gathering.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/gathering.service.ts -------------------------------------------------------------------------------- /backend/functions/src/services/gathering/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/gathering/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/love/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/love/love.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/love.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/love/love.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/love.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/love/love.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/love.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/love/love.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/love.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/love/love.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/love.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/love/love.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/love/love.service.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.graphql.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.graphql.e2e.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sketch/sketch.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sketch/sketch.service.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/sponsored.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/sponsored.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/sponsored.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/sponsored.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/sponsored.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/sponsored.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/sponsored.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/sponsored.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/sponsored.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/sponsored.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/sponsored/sponsored.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/sponsored/sponsored.service.ts -------------------------------------------------------------------------------- /backend/functions/src/services/tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/tag/tag.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/tag.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/tag/tag.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/tag.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/tag/tag.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/tag.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/tag/tag.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/tag.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/tag/tag.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/tag.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/tag/tag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/tag/tag.service.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/index.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.graphql.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.graphql.client.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.graphql.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.graphql.e2e.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.graphql.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.graphql.resolver.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.graphql.schema.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.graphql.typedefs.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.graphql.typedefs.gql -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.service.integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.service.integration.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.service.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.service.models.ts -------------------------------------------------------------------------------- /backend/functions/src/services/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/src/services/user/user.service.ts -------------------------------------------------------------------------------- /backend/functions/test/jest.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/test/jest.e2e.json -------------------------------------------------------------------------------- /backend/functions/test/jest.e2e.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/test/jest.e2e.setup.ts -------------------------------------------------------------------------------- /backend/functions/test/jest.integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/test/jest.integration.json -------------------------------------------------------------------------------- /backend/functions/test/jest.integration.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/test/jest.integration.setup.ts -------------------------------------------------------------------------------- /backend/functions/test/jest.unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/test/jest.unit.json -------------------------------------------------------------------------------- /backend/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/tsconfig.json -------------------------------------------------------------------------------- /backend/functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/functions/tslint.json -------------------------------------------------------------------------------- /backend/host/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/host/index.html -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/backend/package.json -------------------------------------------------------------------------------- /frontend/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.angular-cli.json -------------------------------------------------------------------------------- /frontend/.angular_cli165.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.angular_cli165.tgz -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.firebaserc -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/LICENSE -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/.gitignore -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/google-services.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-812h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-812h@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Landscape-812h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Landscape-812h@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/GoogleService-Info.plist -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/arrow-top-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/arrow-top-flip.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/arrow-top-flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/arrow-top-flip@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/arrow-top-flip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/arrow-top-flip@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/App_Resources/iOS/nativescriptartist.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/App_Resources/iOS/nativescriptartist.entitlements -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/LICENSE -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/README.md -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/app.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/app.android.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/app.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/app.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/app.ios.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/app.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/app.routing.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/colorwheel.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/i18n/en.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/i18n/es.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/i18n/ru.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/i18n/zh.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/backgrounds/graphpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/backgrounds/graphpaper.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/backgrounds/linedpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/backgrounds/linedpaper.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/coin.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/logo-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/logo-top.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/page.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/pulse-stream.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/pulse-stream.gif -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/images/unlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/images/unlock.gif -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/assets/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/assets/ionicons.min.css -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/core/core.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/home/home.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/home/home.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/login/login.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/login/login.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/shared/components/index.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/shared/components/modal-background/modal-background.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/shared/components/modal-background/modal-background.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/shared/components/modal-background/modal-background.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/shared/components/modal-background/modal-background.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/shared/shared.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/tags/components/artist/artist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/tags/components/artist/artist.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/tags/components/artist/artist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/tags/components/artist/artist.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/tags/services/artist.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/tags/services/artist.service.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/tags/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/tags/services/index.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/tags/tags.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/tags/tags.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/features/user/user.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/features/user/user.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/fonts/RobotoRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/fonts/RobotoRegular.ttf -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/fonts/ionicons.ttf -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/main.aot.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/main.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/package.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_action-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/scss/_action-bar.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_artist-view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/scss/_artist-view.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/scss/_index.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_overrides.android.scss: -------------------------------------------------------------------------------- 1 | // android overrides -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_sidedrawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/scss/_sidedrawer.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/scss/_tags.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/vendor-platform.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/vendor-platform.android.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/vendor-platform.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/vendor-platform.ios.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/app/vendor.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/firebase.nativescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/firebase.nativescript.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/package.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/references.d.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/tsconfig.aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/tsconfig.aot.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/tsconfig.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-artist/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-artist/webpack.config.js -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/.gitignore -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/ic_add_white.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/ic_ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/ic_ellipsis.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/ic_play.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/ic_add_white.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/ic_ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/ic_ellipsis.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/ic_play.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/ic_add_white.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/ic_ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/ic_ellipsis.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/ic_play.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/google-services.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/values/strings.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-812h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-812h@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Landscape-812h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Landscape-812h@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/GoogleService-Info.plist -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/arrow-top-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/arrow-top-flip.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/arrow-top-flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/arrow-top-flip@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/arrow-top-flip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/arrow-top-flip@3x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_add_white.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_badge_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_badge_change.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_badge_change@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_badge_change@2x.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_ellipsis.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/ic_play.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/App_Resources/iOS/nativescriptviewer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/App_Resources/iOS/nativescriptviewer.entitlements -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/LICENSE -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/README.md -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/app.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/app.android.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/app.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/app.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/app.ios.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/app.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/app.routing.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/i18n/en.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/i18n/es.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/i18n/ru.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/i18n/zh.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/coin.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/coin10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/coin10.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/coin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/coin3.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/coin5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/coin5.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/demo-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/demo-frame.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/heart.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/like.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/logo-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/logo-drawer.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/logo-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/logo-top.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/logo.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/ng.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/smile.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/star.png -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/images/unlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/images/unlock.gif -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/assets/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/assets/ionicons.min.css -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/core/core.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/home/home.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/home/home.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/login/login.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/login/login.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/shared/components/badge/badge.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/shared/components/badge/badge.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/shared/components/badge/badge.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/shared/components/badge/badge.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/shared/components/index.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/shared/components/modal-badges/modal-badges.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/shared/components/modal-badges/modal-badges.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/shared/components/modal-badges/modal-badges.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/shared/components/modal-badges/modal-badges.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/shared/shared.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/tags/components/viewer/viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/tags/components/viewer/viewer.component.html -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/tags/components/viewer/viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/tags/components/viewer/viewer.component.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/tags/tags.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/tags/tags.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/features/user/user.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/features/user/user.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/fonts/RobotoRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/fonts/RobotoRegular.ttf -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/fonts/ionicons.ttf -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/main.aot.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/main.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/package.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/scss/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/scss/_index.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/scss/_overrides.android.scss: -------------------------------------------------------------------------------- 1 | // android overrides -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // app specific: override or add new variables... -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/scss/_viewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/scss/_viewer.scss -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/vendor-platform.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/vendor-platform.android.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/vendor-platform.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/vendor-platform.ios.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/app/vendor.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/firebase.nativescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/firebase.nativescript.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/package.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/references.d.ts -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/tsconfig.aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/tsconfig.aot.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/tsconfig.json -------------------------------------------------------------------------------- /frontend/apps/nativescript-viewer/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/nativescript-viewer/webpack.config.js -------------------------------------------------------------------------------- /frontend/apps/web-viewer/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/e2e/app.po.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/app.component.html -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/app.routing.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/features/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/features/core/core.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/features/home/home.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/features/home/home.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/features/login/login.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/features/login/login.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/features/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/features/shared/shared.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/features/tags/tags.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/features/tags/tags.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/app/features/user/user.loader.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/app/features/user/user.loader.module.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/i18n/en.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/i18n/es.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/i18n/ru.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/i18n/zh.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/images/launcher-icon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/images/launcher-icon-4x.png -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/images/logo-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/images/logo-drawer.png -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/assets/nx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/assets/nx-logo.png -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/environments/environment.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/favicon.ico -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/index.html -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/main.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/manifest.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/ngsw-config.json -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/scss/_index.scss: -------------------------------------------------------------------------------- 1 | @import 'variables'; 2 | 3 | // app specific styles -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/styles.scss: -------------------------------------------------------------------------------- 1 | @import 'scss/index'; 2 | -------------------------------------------------------------------------------- /frontend/apps/web-viewer/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/apps/web-viewer/src/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/firebase.nativescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/firebase.nativescript.json -------------------------------------------------------------------------------- /frontend/firebase.pwa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/firebase.pwa.json -------------------------------------------------------------------------------- /frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/karma.conf.js -------------------------------------------------------------------------------- /frontend/libs/api/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/api.module.ts -------------------------------------------------------------------------------- /frontend/libs/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/index.ts -------------------------------------------------------------------------------- /frontend/libs/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/package.json -------------------------------------------------------------------------------- /frontend/libs/api/services/donation/donation.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/donation/donation.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/donation/donation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/donation/donation.model.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/gathering/gathering.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/gathering/gathering.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/gathering/gathering.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/gathering/gathering.model.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/index.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/love/love.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/love/love.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/love/love.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/love/love.model.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/sketch/sketch.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/sketch/sketch.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/sketch/sketch.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/sketch/sketch.model.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/sponsored/sponsored.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/sponsored/sponsored.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/sponsored/sponsored.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/sponsored/sponsored.model.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/tag/tag.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/tag/tag.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/tag/tag.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/tag/tag.model.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/user/user.graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/user/user.graphql.service.ts -------------------------------------------------------------------------------- /frontend/libs/api/services/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/api/services/user/user.model.ts -------------------------------------------------------------------------------- /frontend/libs/core/base/base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/base/base-component.ts -------------------------------------------------------------------------------- /frontend/libs/core/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/base/index.ts -------------------------------------------------------------------------------- /frontend/libs/core/base/login.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/base/login.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/core/base/profile.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/base/profile.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/core/core.module.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/libs/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/core.module.ts -------------------------------------------------------------------------------- /frontend/libs/core/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/environments/environment.ts -------------------------------------------------------------------------------- /frontend/libs/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/index.ts -------------------------------------------------------------------------------- /frontend/libs/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/package.json -------------------------------------------------------------------------------- /frontend/libs/core/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/routes.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/auth.guard.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/firebase.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/http-interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/http-interceptor.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/index.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/locale.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/locale.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/log.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/log.service.spec.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/log.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/log.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/modal.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/network.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/network.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/tokens.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/user.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/services/window.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/services/window.service.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/index.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/locale.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/locale.action.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/locale.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/locale.state.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/modal.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/modal.action.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/modal.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/modal.state.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/router.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/router.action.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/ui.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/ui.action.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/ui.effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/ui.effect.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/ui.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/ui.reducer.spec.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/ui.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/ui.reducer.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/ui.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/ui.state.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/user.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/user.action.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/user.effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/user.effect.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/user.reducer.ts -------------------------------------------------------------------------------- /frontend/libs/core/state/user.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/core/state/user.state.ts -------------------------------------------------------------------------------- /frontend/libs/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './product.model'; 2 | -------------------------------------------------------------------------------- /frontend/libs/features/models/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/models/product.model.ts -------------------------------------------------------------------------------- /frontend/libs/features/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/package.json -------------------------------------------------------------------------------- /frontend/libs/features/tags/base/gathering-detail.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/base/gathering-detail.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/base/gatherings.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/base/gatherings.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/base/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/base/sketch-viewer.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/base/sketch-viewer.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/base/tag-detail.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/base/tag-detail.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/base/tags.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/base/tags.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/package.json -------------------------------------------------------------------------------- /frontend/libs/features/tags/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/routes.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/services/frame.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/services/frame.service.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/services/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/services/tag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/services/tag.service.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/state/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/state/tag-state.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/state/tag-state.module.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/state/tag.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/state/tag.action.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/state/tag.effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/state/tag.effect.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/state/tag.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/state/tag.reducer.ts -------------------------------------------------------------------------------- /frontend/libs/features/tags/state/tag.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/tags/state/tag.state.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/base/header.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/base/header.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/base/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/base/layout.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/base/layout.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/base/modal-badges.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/base/modal-badges.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/base/modal.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/base/modal.base-component.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/directives/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/directives/route-vcref.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/directives/route-vcref.directive.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/models/help-tip.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/models/help-tip.model.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/models/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/models/modal.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/models/modal.model.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/package.json -------------------------------------------------------------------------------- /frontend/libs/features/ui/pipes/date-order.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/pipes/date-order.pipe.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/pipes/index.ts -------------------------------------------------------------------------------- /frontend/libs/features/ui/ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/features/ui/ui.module.ts -------------------------------------------------------------------------------- /frontend/libs/scss/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/scss/_common.scss -------------------------------------------------------------------------------- /frontend/libs/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/libs/scss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/scss/package.json -------------------------------------------------------------------------------- /frontend/libs/utils/angular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/angular.ts -------------------------------------------------------------------------------- /frontend/libs/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/arrays.ts -------------------------------------------------------------------------------- /frontend/libs/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/dates.ts -------------------------------------------------------------------------------- /frontend/libs/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/index.ts -------------------------------------------------------------------------------- /frontend/libs/utils/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/objects.ts -------------------------------------------------------------------------------- /frontend/libs/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/package.json -------------------------------------------------------------------------------- /frontend/libs/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/platform.ts -------------------------------------------------------------------------------- /frontend/libs/utils/sketch.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/sketch.util.ts -------------------------------------------------------------------------------- /frontend/libs/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/strings.ts -------------------------------------------------------------------------------- /frontend/libs/utils/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/libs/utils/tracking.ts -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/protractor.conf.js -------------------------------------------------------------------------------- /frontend/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/references.d.ts -------------------------------------------------------------------------------- /frontend/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/test.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/tslint.json -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/core.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/core.module.spec.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/core.module.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/services/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/services/app.service.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/services/drawer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/services/drawer.service.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/services/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/services/tns-firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/services/tns-firebase.service.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/services/tns-modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/services/tns-modal.service.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/services/tns-window.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/services/tns-window.service.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tns-translate-loader'; 2 | -------------------------------------------------------------------------------- /frontend/xplat/nativescript/core/utils/tns-translate-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/core/utils/tns-translate-loader.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/footer/footer.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/footer/footer.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/gathering-list-nav/gathering-list-nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/gathering-list-nav/gathering-list-nav.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/gathering-list-nav/gathering-list-nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/gathering-list-nav/gathering-list-nav.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/layout/layout.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/layout/layout.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/sidebar-header/sidebar-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/sidebar-header/sidebar-header.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/components/sidebar-header/sidebar-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/components/sidebar-header/sidebar-header.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/home.module.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/home/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/login/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/login/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/login/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/login/components/login/login.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/login/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/login/components/login/login.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/login/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/login/login.module.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/gatherings/gatherings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/gatherings/gatherings.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/gatherings/gatherings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/gatherings/gatherings.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/tag-detail/tag-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/tag-detail/tag-detail.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/tag-detail/tag-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/tag-detail/tag-detail.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/tags/tags.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/tags/tags.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/components/tags/tags.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/components/tags/tags.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/tags/tags.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/tags/tags.module.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/base/app.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/base/app.base-component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/base/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/base/tns-modal.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/base/tns-modal.base-component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header-back.component.android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header-back.component.android.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header-back.component.ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header-back.component.ios.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header-back.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header-back.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header-logo.component.android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header-logo.component.android.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header-logo.component.ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header-logo.component.ios.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header-logo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header-logo.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header.component.android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header.component.android.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header.component.ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header.component.ios.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/header/header.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/modal-title-bar/modal-title-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/modal-title-bar/modal-title-bar.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/modal-title-bar/modal-title-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/modal-title-bar/modal-title-bar.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/modal-webview/modal-webview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/modal-webview/modal-webview.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/components/modal-webview/modal-webview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/components/modal-webview/modal-webview.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/ui.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/ui.module.spec.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/ui/ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/ui/ui.module.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/user/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/user/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/user/components/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/user/components/profile/profile.component.html -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/user/components/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/user/components/profile/profile.component.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/user/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/features/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/features/user/user.module.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/index.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/package.json -------------------------------------------------------------------------------- /frontend/xplat/nativescript/plugins/nativescript-image-zoom-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/plugins/nativescript-image-zoom-1.1.1.tgz -------------------------------------------------------------------------------- /frontend/xplat/nativescript/plugins/nativescript-plugin-firebase-5.1.8-ios-cls.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/plugins/nativescript-plugin-firebase-5.1.8-ios-cls.tgz -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_cards.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_common.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_fonts.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_forms.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_index.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_index.android.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_index.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_index.ios.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_labels.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_list.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_modals.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_overrides.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_overrides.android.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_overrides.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_overrides.ios.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_sidedrawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_sidedrawer.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_tags.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/xplat/nativescript/utils/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/utils/icons.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/utils/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/utils/images.ts -------------------------------------------------------------------------------- /frontend/xplat/nativescript/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/nativescript/utils/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/base/app.base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/base/app.base-component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/base/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app.base-component'; 2 | -------------------------------------------------------------------------------- /frontend/xplat/web/core/core.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/core.module.spec.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/core.module.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/services/firebase-web.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/services/firebase-web.service.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/services/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/core/services/link.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/core/services/link.service.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/footer/footer.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/footer/footer.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/gathering-list-nav/gathering-list-nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/gathering-list-nav/gathering-list-nav.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/gathering-list-nav/gathering-list-nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/gathering-list-nav/gathering-list-nav.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/header/header.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/header/header.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/layout/layout.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/components/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/components/layout/layout.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/home.module.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/home/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/login/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/login/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/login/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/login/components/login/login.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/login/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/login/components/login/login.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/login/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/login/login.module.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/gathering-detail/gathering-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/gathering-detail/gathering-detail.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/gathering-detail/gathering-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/gathering-detail/gathering-detail.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/gatherings/gatherings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/gatherings/gatherings.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/gatherings/gatherings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/gatherings/gatherings.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/tag-detail/tag-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/tag-detail/tag-detail.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/tag-detail/tag-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/tag-detail/tag-detail.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/tags/tags.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/tags/tags.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/components/tags/tags.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/components/tags/tags.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/tags/tags.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/tags/tags.module.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/components/modal-badges/modal-badges.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/components/modal-badges/modal-badges.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/components/modal-badges/modal-badges.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/components/modal-badges/modal-badges.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/directives/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/directives/read-more.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/directives/read-more.directive.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/pipes/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/pipes/safe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/pipes/safe.pipe.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/ui.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/ui.module.spec.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/ui/ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/ui/ui.module.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/user/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/user/components/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/user/components/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/user/components/profile/profile.component.html -------------------------------------------------------------------------------- /frontend/xplat/web/features/user/components/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/user/components/profile/profile.component.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/user/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/features/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/features/user/user.module.ts -------------------------------------------------------------------------------- /frontend/xplat/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/index.ts -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_animations.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_footer.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_forms.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_header.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_index.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_layout.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_list.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_mixins.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_spacing.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_tags.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_text.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/xplat/web/scss/_viewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/frontend/xplat/web/scss/_viewer.scss -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/xplat-sample/HEAD/prettier.config.js --------------------------------------------------------------------------------