├── src
├── app
│ ├── app.component.scss
│ ├── pages
│ │ ├── tab1
│ │ │ ├── tab1.page.scss
│ │ │ ├── agenda-item
│ │ │ │ ├── agenda-item-routing.module.ts
│ │ │ │ ├── agenda-item.module.ts
│ │ │ │ ├── agenda-item.page.spec.ts
│ │ │ │ ├── agenda-item.page.scss
│ │ │ │ ├── agenda-item.page.html
│ │ │ │ └── agenda-item.page.ts
│ │ │ ├── tab1-routing.module.ts
│ │ │ ├── tab1.page.html
│ │ │ ├── tab1.module.ts
│ │ │ ├── tab1.page.spec.ts
│ │ │ └── tab1.page.ts
│ │ ├── tabs
│ │ │ ├── tabs.page.scss
│ │ │ ├── tabs.page.ts
│ │ │ ├── tabs.module.ts
│ │ │ ├── tabs.page.html
│ │ │ ├── tabs.page.spec.ts
│ │ │ └── tabs-routing.module.ts
│ │ ├── speakers
│ │ │ ├── speakers.page.scss
│ │ │ ├── speakers-routing.module.ts
│ │ │ ├── speakers.page.html
│ │ │ ├── speakers.page.ts
│ │ │ ├── speakers.page.spec.ts
│ │ │ └── speakers.module.ts
│ │ ├── sponsors
│ │ │ ├── sponsors.page.scss
│ │ │ ├── sponsors-routing.module.ts
│ │ │ ├── sponsors.page.spec.ts
│ │ │ ├── sponsors.module.ts
│ │ │ ├── sponsors.page.ts
│ │ │ └── sponsors.page.html
│ │ └── swag
│ │ │ ├── swag-routing.module.ts
│ │ │ ├── swag.module.ts
│ │ │ ├── swag.page.scss
│ │ │ ├── swag.page.spec.ts
│ │ │ ├── swag.page.html
│ │ │ └── swag.page.ts
│ ├── app.component.html
│ ├── components
│ │ ├── agenda-avatars
│ │ │ ├── agenda-avatars.component.html
│ │ │ ├── agenda-avatars.component.ts
│ │ │ ├── agenda-avatars.module.ts
│ │ │ ├── agenda-avatars.component.scss
│ │ │ └── agenda-avatars.component.spec.ts
│ │ ├── sponsor-card
│ │ │ ├── sponsor-card.component.html
│ │ │ ├── sponsor-card.module.ts
│ │ │ ├── sponsor-card.component.scss
│ │ │ ├── sponsor-card.component.spec.ts
│ │ │ └── sponsor-card.component.ts
│ │ ├── swag-modal
│ │ │ ├── swag-modal.page.scss
│ │ │ ├── swag-modal-routing.module.ts
│ │ │ ├── swag-modal.module.ts
│ │ │ ├── swag-modal.page.spec.ts
│ │ │ └── swag-modal.page.ts
│ │ ├── permissions-modal
│ │ │ ├── permissions-modal.component.scss
│ │ │ ├── permissions-modal.module.ts
│ │ │ ├── permissions-modal.component.html
│ │ │ ├── permissions-modal.component.ts
│ │ │ └── permissions-modal.component.spec.ts
│ │ ├── speaker-card
│ │ │ ├── speaker-card.module.ts
│ │ │ ├── speaker-card.component.html
│ │ │ ├── speaker-card.component.spec.ts
│ │ │ ├── speaker-card.component.ts
│ │ │ └── speaker-card.component.scss
│ │ ├── agenda-card
│ │ │ ├── agenda-card.module.ts
│ │ │ ├── agenda-card.component.scss
│ │ │ ├── agenda-card.component.html
│ │ │ ├── agenda-card.component.spec.ts
│ │ │ └── agenda-card.component.ts
│ │ ├── speaker-view
│ │ │ ├── speaker-view.module.ts
│ │ │ ├── speaker-view.component.scss
│ │ │ ├── speaker-view.component.spec.ts
│ │ │ ├── speaker-view.component.ts
│ │ │ └── speaker-view.component.html
│ │ └── sponsor-view
│ │ │ ├── sponsor-view.module.ts
│ │ │ ├── sponsor-view.component.scss
│ │ │ ├── sponsor-view.component.spec.ts
│ │ │ ├── sponsor-view.component.ts
│ │ │ └── sponsor-view.component.html
│ ├── services
│ │ ├── storage.service.ts
│ │ ├── talk-reminder.service.ts
│ │ ├── company.service.ts
│ │ ├── push-notification.service.ts
│ │ ├── hubspot.service.ts
│ │ └── sponsor.service.ts
│ ├── app.module.ts
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app-routing.module.ts
│ └── types
│ │ └── index.ts
├── assets
│ ├── raffle.png
│ ├── photos
│ │ ├── eric.jpg
│ │ ├── jan.jpg
│ │ ├── liam.jpg
│ │ ├── max.jpg
│ │ ├── rob.jpg
│ │ ├── tom.jpg
│ │ ├── brandon.jpg
│ │ ├── dallas.jpg
│ │ ├── daniel.jpg
│ │ ├── erich.jpeg
│ │ ├── josht.jpeg
│ │ ├── kremer.jpeg
│ │ ├── maria.jpg
│ │ ├── michael.jpg
│ │ ├── netkow.jpg
│ │ ├── paulina.jpg
│ │ ├── ralph.jpeg
│ │ ├── robert.jpg
│ │ ├── sesha.jpg
│ │ ├── stanci.jpg
│ │ ├── fernando.jpg
│ │ ├── jedidiah.jpg
│ │ ├── johannes.jpg
│ │ ├── matthias.jpg
│ │ └── thorsten.jpg
│ ├── icon
│ │ └── favicon.png
│ └── logos
│ │ ├── company-aaa.png
│ │ ├── company-ionic.png
│ │ ├── company-man.png
│ │ ├── company-modus.png
│ │ ├── sponsor-auth0.png
│ │ ├── sponsor-modus.png
│ │ ├── sponsor-nrwl.png
│ │ ├── company-amazon.png
│ │ ├── company-bobcat.png
│ │ ├── company-norwex.png
│ │ ├── sponsor-briebug.png
│ │ ├── sponsor-jnesis.png
│ │ ├── sponsor-strapi.png
│ │ ├── company-openforge.png
│ │ ├── company-t-mobile.png
│ │ ├── company-us-foods.png
│ │ ├── company-volkswagen.png
│ │ ├── sponsor-couchbase.png
│ │ ├── sponsor-hybridmob.png
│ │ ├── sponsor-openforge.png
│ │ ├── sponsor-vue-mastery.png
│ │ ├── sponsor-launchpad-lab.png
│ │ └── sponsor-benoveltylimited.png
├── environments
│ ├── environment.prod.ts
│ └── environment.ts
├── zone-flags.ts
├── main.ts
├── index.html
├── test.ts
├── polyfills.ts
└── global.scss
├── android
├── app
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── drawable
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-land-hdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-land-mdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-port-hdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-port-mdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── ic_launcher_round.png
│ │ │ │ │ ├── ic_launcher_background.png
│ │ │ │ │ └── ic_launcher_foreground.png
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── ic_launcher_round.png
│ │ │ │ │ ├── ic_launcher_background.png
│ │ │ │ │ └── ic_launcher_foreground.png
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── ic_launcher_round.png
│ │ │ │ │ ├── ic_launcher_background.png
│ │ │ │ │ └── ic_launcher_foreground.png
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── ic_launcher_round.png
│ │ │ │ │ ├── ic_launcher_background.png
│ │ │ │ │ └── ic_launcher_foreground.png
│ │ │ │ ├── drawable-land-xhdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-land-xxhdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-port-xhdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-port-xxhdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ ├── ic_launcher_round.png
│ │ │ │ │ ├── ic_launcher_background.png
│ │ │ │ │ └── ic_launcher_foreground.png
│ │ │ │ ├── drawable-land-xxxhdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── drawable-port-xxxhdpi
│ │ │ │ │ └── splash.png
│ │ │ │ ├── values
│ │ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── styles.xml
│ │ │ │ ├── xml
│ │ │ │ │ ├── file_paths.xml
│ │ │ │ │ └── config.xml
│ │ │ │ ├── mipmap-anydpi-v26
│ │ │ │ │ ├── ic_launcher.xml
│ │ │ │ │ └── ic_launcher_round.xml
│ │ │ │ ├── layout
│ │ │ │ │ └── activity_main.xml
│ │ │ │ └── drawable-v24
│ │ │ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── assets
│ │ │ │ ├── capacitor.config.json
│ │ │ │ └── capacitor.plugins.json
│ │ │ ├── java
│ │ │ │ └── io
│ │ │ │ │ └── ionic
│ │ │ │ │ └── conferences
│ │ │ │ │ └── eas2021
│ │ │ │ │ └── MainActivity.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── getcapacitor
│ │ │ │ └── myapp
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── com
│ │ │ └── getcapacitor
│ │ │ └── myapp
│ │ │ └── ExampleInstrumentedTest.java
│ ├── proguard-rules.pro
│ ├── google-services.json
│ ├── capacitor.build.gradle
│ └── build.gradle
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── misc.xml
│ └── jarRepositories.xml
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── settings.gradle
├── variables.gradle
├── build.gradle
├── gradle.properties
├── capacitor.settings.gradle
├── .gitignore
└── gradlew.bat
├── resources
├── icon.png
├── splash.png
├── ios
│ ├── icon
│ │ ├── icon.png
│ │ ├── icon-20.png
│ │ ├── icon-29.png
│ │ ├── icon-40.png
│ │ ├── icon-50.png
│ │ ├── icon-60.png
│ │ ├── icon-72.png
│ │ ├── icon-76.png
│ │ ├── icon@2x.png
│ │ ├── icon-1024.png
│ │ ├── icon-108@2x.png
│ │ ├── icon-20@2x.png
│ │ ├── icon-20@3x.png
│ │ ├── icon-24@2x.png
│ │ ├── icon-29@2x.png
│ │ ├── icon-29@3x.png
│ │ ├── icon-40@2x.png
│ │ ├── icon-40@3x.png
│ │ ├── icon-44@2x.png
│ │ ├── icon-50@2x.png
│ │ ├── icon-60@2x.png
│ │ ├── icon-60@3x.png
│ │ ├── icon-72@2x.png
│ │ ├── icon-76@2x.png
│ │ ├── icon-86@2x.png
│ │ ├── icon-98@2x.png
│ │ ├── icon-27.5@2x.png
│ │ └── icon-83.5@2x.png
│ └── splash
│ │ ├── Default-2436h.png
│ │ ├── Default-667h.png
│ │ ├── Default-736h.png
│ │ ├── Default~iphone.png
│ │ ├── Default@2x~iphone.png
│ │ ├── Default-1792h~iphone.png
│ │ ├── Default-2688h~iphone.png
│ │ ├── Default-Portrait~ipad.png
│ │ ├── Default-568h@2x~iphone.png
│ │ ├── Default-Landscape-2436h.png
│ │ ├── Default-Landscape-736h.png
│ │ ├── Default-Landscape~ipad.png
│ │ ├── Default-Portrait@2x~ipad.png
│ │ ├── Default-Landscape@2x~ipad.png
│ │ ├── Default-Landscape@~ipadpro.png
│ │ ├── Default-Portrait@~ipadpro.png
│ │ ├── Default@2x~universal~anyany.png
│ │ ├── Default-Landscape-1792h~iphone.png
│ │ └── Default-Landscape-2688h~iphone.png
└── android
│ ├── icon-background.png
│ ├── icon-foreground.png
│ ├── icon
│ ├── hdpi-background.png
│ ├── hdpi-foreground.png
│ ├── ldpi-background.png
│ ├── ldpi-foreground.png
│ ├── mdpi-background.png
│ ├── mdpi-foreground.png
│ ├── xhdpi-background.png
│ ├── xhdpi-foreground.png
│ ├── xxhdpi-background.png
│ ├── xxhdpi-foreground.png
│ ├── drawable-hdpi-icon.png
│ ├── drawable-ldpi-icon.png
│ ├── drawable-mdpi-icon.png
│ ├── drawable-xhdpi-icon.png
│ ├── xxxhdpi-background.png
│ ├── xxxhdpi-foreground.png
│ ├── drawable-xxhdpi-icon.png
│ └── drawable-xxxhdpi-icon.png
│ └── splash
│ ├── drawable-land-hdpi-screen.png
│ ├── drawable-land-ldpi-screen.png
│ ├── drawable-land-mdpi-screen.png
│ ├── drawable-port-hdpi-screen.png
│ ├── drawable-port-ldpi-screen.png
│ ├── drawable-port-mdpi-screen.png
│ ├── drawable-land-xhdpi-screen.png
│ ├── drawable-land-xxhdpi-screen.png
│ ├── drawable-port-xhdpi-screen.png
│ ├── drawable-port-xxhdpi-screen.png
│ ├── drawable-land-xxxhdpi-screen.png
│ └── drawable-port-xxxhdpi-screen.png
├── ios
├── App
│ ├── App
│ │ ├── Assets.xcassets
│ │ │ ├── Contents.json
│ │ │ ├── Splash.imageset
│ │ │ │ ├── splash-2732x2732.png
│ │ │ │ ├── splash-2732x2732-1.png
│ │ │ │ ├── splash-2732x2732-2.png
│ │ │ │ └── Contents.json
│ │ │ └── AppIcon.appiconset
│ │ │ │ ├── AppIcon-512@2x.png
│ │ │ │ ├── AppIcon-20x20@1x.png
│ │ │ │ ├── AppIcon-20x20@2x-1.png
│ │ │ │ ├── AppIcon-20x20@2x.png
│ │ │ │ ├── AppIcon-20x20@3x.png
│ │ │ │ ├── AppIcon-29x29@1x.png
│ │ │ │ ├── AppIcon-29x29@2x-1.png
│ │ │ │ ├── AppIcon-29x29@2x.png
│ │ │ │ ├── AppIcon-29x29@3x.png
│ │ │ │ ├── AppIcon-40x40@1x.png
│ │ │ │ ├── AppIcon-40x40@2x-1.png
│ │ │ │ ├── AppIcon-40x40@2x.png
│ │ │ │ ├── AppIcon-40x40@3x.png
│ │ │ │ ├── AppIcon-60x60@2x.png
│ │ │ │ ├── AppIcon-60x60@3x.png
│ │ │ │ ├── AppIcon-76x76@1x.png
│ │ │ │ ├── AppIcon-76x76@2x.png
│ │ │ │ ├── AppIcon-83.5x83.5@2x.png
│ │ │ │ └── Contents.json
│ │ ├── capacitor.config.json
│ │ ├── App.entitlements
│ │ ├── config.xml
│ │ ├── Base.lproj
│ │ │ ├── Main.storyboard
│ │ │ └── LaunchScreen.storyboard
│ │ ├── GoogleService-Info.plist
│ │ ├── Info.plist
│ │ └── AppDelegate.swift
│ ├── App.xcodeproj
│ │ └── project.xcworkspace
│ │ │ └── contents.xcworkspacedata
│ ├── App.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── Podfile
└── .gitignore
├── ionic.config.json
├── e2e
├── tsconfig.json
├── src
│ ├── app.po.ts
│ └── app.e2e-spec.ts
└── protractor.conf.js
├── .editorconfig
├── tsconfig.app.json
├── capacitor.config.ts
├── tsconfig.spec.json
├── .gitignore
├── .browserslistrc
├── tsconfig.json
├── LICENSE
├── .eslintrc.json
├── karma.conf.js
├── package.json
├── README.md
└── angular.json
/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/tab1.page.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/pages/tabs/tabs.page.scss:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/app/pages/speakers/speakers.page.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/pages/sponsors/sponsors.page.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/android/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build/*
2 | !/build/.npmkeep
3 |
--------------------------------------------------------------------------------
/android/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/resources/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/icon.png
--------------------------------------------------------------------------------
/resources/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/splash.png
--------------------------------------------------------------------------------
/src/assets/raffle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/raffle.png
--------------------------------------------------------------------------------
/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/src/assets/photos/eric.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/eric.jpg
--------------------------------------------------------------------------------
/src/assets/photos/jan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/jan.jpg
--------------------------------------------------------------------------------
/src/assets/photos/liam.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/liam.jpg
--------------------------------------------------------------------------------
/src/assets/photos/max.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/max.jpg
--------------------------------------------------------------------------------
/src/assets/photos/rob.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/rob.jpg
--------------------------------------------------------------------------------
/src/assets/photos/tom.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/tom.jpg
--------------------------------------------------------------------------------
/resources/ios/icon/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon.png
--------------------------------------------------------------------------------
/src/assets/icon/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/icon/favicon.png
--------------------------------------------------------------------------------
/src/assets/photos/brandon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/brandon.jpg
--------------------------------------------------------------------------------
/src/assets/photos/dallas.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/dallas.jpg
--------------------------------------------------------------------------------
/src/assets/photos/daniel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/daniel.jpg
--------------------------------------------------------------------------------
/src/assets/photos/erich.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/erich.jpeg
--------------------------------------------------------------------------------
/src/assets/photos/josht.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/josht.jpeg
--------------------------------------------------------------------------------
/src/assets/photos/kremer.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/kremer.jpeg
--------------------------------------------------------------------------------
/src/assets/photos/maria.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/maria.jpg
--------------------------------------------------------------------------------
/src/assets/photos/michael.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/michael.jpg
--------------------------------------------------------------------------------
/src/assets/photos/netkow.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/netkow.jpg
--------------------------------------------------------------------------------
/src/assets/photos/paulina.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/paulina.jpg
--------------------------------------------------------------------------------
/src/assets/photos/ralph.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/ralph.jpeg
--------------------------------------------------------------------------------
/src/assets/photos/robert.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/robert.jpg
--------------------------------------------------------------------------------
/src/assets/photos/sesha.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/sesha.jpg
--------------------------------------------------------------------------------
/src/assets/photos/stanci.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/stanci.jpg
--------------------------------------------------------------------------------
/resources/ios/icon/icon-20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-20.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-29.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-40.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-50.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-60.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-72.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-76.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon@2x.png
--------------------------------------------------------------------------------
/src/assets/photos/fernando.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/fernando.jpg
--------------------------------------------------------------------------------
/src/assets/photos/jedidiah.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/jedidiah.jpg
--------------------------------------------------------------------------------
/src/assets/photos/johannes.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/johannes.jpg
--------------------------------------------------------------------------------
/src/assets/photos/matthias.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/matthias.jpg
--------------------------------------------------------------------------------
/src/assets/photos/thorsten.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/photos/thorsten.jpg
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/resources/ios/icon/icon-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-1024.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-108@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-108@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-20@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-20@3x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-24@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-24@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-29@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-29@3x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-40@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-40@3x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-44@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-44@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-50@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-50@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-60@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-60@3x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-72@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-72@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-76@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-86@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-86@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-98@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-98@2x.png
--------------------------------------------------------------------------------
/src/assets/logos/company-aaa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-aaa.png
--------------------------------------------------------------------------------
/src/assets/logos/company-ionic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-ionic.png
--------------------------------------------------------------------------------
/src/assets/logos/company-man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-man.png
--------------------------------------------------------------------------------
/src/assets/logos/company-modus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-modus.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-auth0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-auth0.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-modus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-modus.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-nrwl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-nrwl.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-27.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-27.5@2x.png
--------------------------------------------------------------------------------
/resources/ios/icon/icon-83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/icon/icon-83.5@2x.png
--------------------------------------------------------------------------------
/src/assets/logos/company-amazon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-amazon.png
--------------------------------------------------------------------------------
/src/assets/logos/company-bobcat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-bobcat.png
--------------------------------------------------------------------------------
/src/assets/logos/company-norwex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-norwex.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-briebug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-briebug.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-jnesis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-jnesis.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-strapi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-strapi.png
--------------------------------------------------------------------------------
/resources/android/icon-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon-background.png
--------------------------------------------------------------------------------
/resources/android/icon-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon-foreground.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-2436h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-2436h.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-667h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-667h.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-736h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-736h.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default~iphone.png
--------------------------------------------------------------------------------
/src/assets/logos/company-openforge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-openforge.png
--------------------------------------------------------------------------------
/src/assets/logos/company-t-mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-t-mobile.png
--------------------------------------------------------------------------------
/src/assets/logos/company-us-foods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-us-foods.png
--------------------------------------------------------------------------------
/src/assets/logos/company-volkswagen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/company-volkswagen.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-couchbase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-couchbase.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-hybridmob.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-hybridmob.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-openforge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-openforge.png
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-vue-mastery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-vue-mastery.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable/splash.png
--------------------------------------------------------------------------------
/resources/android/icon/hdpi-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/hdpi-background.png
--------------------------------------------------------------------------------
/resources/android/icon/hdpi-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/hdpi-foreground.png
--------------------------------------------------------------------------------
/resources/android/icon/ldpi-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/ldpi-background.png
--------------------------------------------------------------------------------
/resources/android/icon/ldpi-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/ldpi-foreground.png
--------------------------------------------------------------------------------
/resources/android/icon/mdpi-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/mdpi-background.png
--------------------------------------------------------------------------------
/resources/android/icon/mdpi-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/mdpi-foreground.png
--------------------------------------------------------------------------------
/resources/android/icon/xhdpi-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/xhdpi-background.png
--------------------------------------------------------------------------------
/resources/android/icon/xhdpi-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/xhdpi-foreground.png
--------------------------------------------------------------------------------
/resources/android/icon/xxhdpi-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/xxhdpi-background.png
--------------------------------------------------------------------------------
/resources/android/icon/xxhdpi-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/xxhdpi-foreground.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default@2x~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default@2x~iphone.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-launchpad-lab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-launchpad-lab.png
--------------------------------------------------------------------------------
/resources/android/icon/drawable-hdpi-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/drawable-hdpi-icon.png
--------------------------------------------------------------------------------
/resources/android/icon/drawable-ldpi-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/drawable-ldpi-icon.png
--------------------------------------------------------------------------------
/resources/android/icon/drawable-mdpi-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/drawable-mdpi-icon.png
--------------------------------------------------------------------------------
/resources/android/icon/drawable-xhdpi-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/drawable-xhdpi-icon.png
--------------------------------------------------------------------------------
/resources/android/icon/xxxhdpi-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/xxxhdpi-background.png
--------------------------------------------------------------------------------
/resources/android/icon/xxxhdpi-foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/xxxhdpi-foreground.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-1792h~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-1792h~iphone.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-2688h~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-2688h~iphone.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Portrait~ipad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Portrait~ipad.png
--------------------------------------------------------------------------------
/src/assets/logos/sponsor-benoveltylimited.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/src/assets/logos/sponsor-benoveltylimited.png
--------------------------------------------------------------------------------
/resources/android/icon/drawable-xxhdpi-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/drawable-xxhdpi-icon.png
--------------------------------------------------------------------------------
/resources/android/icon/drawable-xxxhdpi-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-568h@2x~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-568h@2x~iphone.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape-2436h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape-2436h.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape-736h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape-736h.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape~ipad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape~ipad.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Portrait@2x~ipad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape@2x~ipad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape@~ipadpro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape@~ipadpro.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Portrait@~ipadpro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Portrait@~ipadpro.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-land-hdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-land-hdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-land-mdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-land-mdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-port-hdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-port-hdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-port-mdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-port-mdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-land-hdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-land-hdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-land-ldpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-land-ldpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-land-mdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-land-mdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-port-hdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-port-hdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-port-ldpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-port-ldpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-port-mdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-port-mdpi-screen.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default@2x~universal~anyany.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default@2x~universal~anyany.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-land-xhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-land-xhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-land-xxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-land-xxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-port-xhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-port-xhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-port-xxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-port-xxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-land-xhdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-land-xxhdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-port-xhdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-port-xxhdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape-1792h~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape-1792h~iphone.png
--------------------------------------------------------------------------------
/resources/ios/splash/Default-Landscape-2688h~iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/ios/splash/Default-Landscape-2688h~iphone.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-land-xxxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-land-xxxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-port-xxxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/drawable-port-xxxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/ios/App/App/capacitor.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "appId": "io.ionic.conferences.eas2021",
3 | "appName": "EAS 21",
4 | "webDir": "www",
5 | "bundledWebRuntime": false
6 | }
7 |
--------------------------------------------------------------------------------
/resources/android/splash/drawable-land-xxxhdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png
--------------------------------------------------------------------------------
/resources/android/splash/drawable-port-xxxhdpi-screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/ionic.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "enterprise-summit-2021",
3 | "integrations": {
4 | "capacitor": {}
5 | },
6 | "type": "angular",
7 | "id": "60e11038"
8 | }
9 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/capacitor.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "appId": "io.ionic.conferences.eas2021",
3 | "appName": "EAS 21",
4 | "webDir": "www",
5 | "bundledWebRuntime": false
6 | }
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFFFFF
4 |
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/eas-2021/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/android/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/android/app/src/main/java/io/ionic/conferences/eas2021/MainActivity.java:
--------------------------------------------------------------------------------
1 | package io.ionic.conferences.eas2021;
2 |
3 | import com.getcapacitor.BridgeActivity;
4 |
5 | public class MainActivity extends BridgeActivity {}
6 |
--------------------------------------------------------------------------------
/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/app/components/agenda-avatars/agenda-avatars.component.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/zone-flags.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Prevents Angular change detection from
3 | * running with certain Web Component callbacks
4 | */
5 | // eslint-disable-next-line no-underscore-dangle
6 | (window as any).__Zone_disable_customElements = true;
7 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 | include ':capacitor-cordova-android-plugins'
3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/')
4 |
5 | apply from: 'capacitor.settings.gradle'
--------------------------------------------------------------------------------
/android/app/src/main/res/xml/file_paths.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https://services.gradle.org/distributions/gradle-7.4.2-bin.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/e2e/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../tsconfig.json",
3 | "compilerOptions": {
4 | "outDir": "../out-tsc/e2e",
5 | "module": "commonjs",
6 | "target": "es2018",
7 | "types": [
8 | "jasmine",
9 | "node"
10 | ]
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | App/build
2 | App/Pods
3 | App/Podfile.lock
4 | App/App/public
5 | DerivedData
6 | xcuserdata
7 |
8 | # Cordova plugins for Capacitor
9 | capacitor-cordova-ios-plugins
10 | # Generated Config files
11 | App/App/capacitor.config.json
12 | App/App/config.xml
13 |
--------------------------------------------------------------------------------
/src/app/pages/tabs/tabs.page.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-tabs',
5 | templateUrl: 'tabs.page.html',
6 | styleUrls: ['tabs.page.scss']
7 | })
8 | export class TabsPage {
9 |
10 | constructor() {}
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
1 | import { browser, by, element } from 'protractor';
2 |
3 | export class AppPage {
4 | navigateTo() {
5 | return browser.get('/');
6 | }
7 |
8 | getParagraphText() {
9 | return element(by.deepCss('app-root ion-content')).getText();
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/ios/App/App/App.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | aps-environment
6 | development
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-card/sponsor-card.component.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/App/App.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # Editor configuration, see https://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | indent_style = space
7 | indent_size = 2
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
11 | [*.ts]
12 | quote_type = single
13 |
14 | [*.md]
15 | max_line_length = off
16 | trim_trailing_whitespace = false
17 |
--------------------------------------------------------------------------------
/ios/App/App/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
1 | import { AppPage } from './app.po';
2 |
3 | describe('new App', () => {
4 | let page: AppPage;
5 |
6 | beforeEach(() => {
7 | page = new AppPage();
8 | });
9 |
10 | it('should be blank', () => {
11 | page.navigateTo();
12 | expect(page.getParagraphText()).toContain('Start with Ionic UI Components');
13 | });
14 | });
15 |
--------------------------------------------------------------------------------
/tsconfig.app.json:
--------------------------------------------------------------------------------
1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */
2 | {
3 | "extends": "./tsconfig.json",
4 | "compilerOptions": {
5 | "outDir": "./out-tsc/app",
6 | "types": []
7 | },
8 | "files": [
9 | "src/main.ts",
10 | "src/polyfills.ts"
11 | ],
12 | "include": [
13 | "src/**/*.d.ts"
14 | ]
15 | }
16 |
--------------------------------------------------------------------------------
/capacitor.config.ts:
--------------------------------------------------------------------------------
1 | import { CapacitorConfig } from '@capacitor/cli';
2 |
3 | const config: CapacitorConfig = {
4 | appId: 'io.ionic.conferences.eas2021',
5 | appName: 'EAS 21',
6 | webDir: 'www',
7 | bundledWebRuntime: false,
8 | // cordova: {
9 | // preferences: {
10 | // "DisableDeploy": "true"
11 | // }
12 | // }
13 | };
14 |
15 | export default config;
16 |
--------------------------------------------------------------------------------
/android/app/src/main/res/xml/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
1 | import { enableProdMode } from '@angular/core';
2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3 |
4 | import { AppModule } from './app/app.module';
5 | import { environment } from './environments/environment';
6 |
7 | if (environment.production) {
8 | enableProdMode();
9 | }
10 |
11 | platformBrowserDynamic().bootstrapModule(AppModule)
12 | .catch(err => console.log(err));
13 |
--------------------------------------------------------------------------------
/tsconfig.spec.json:
--------------------------------------------------------------------------------
1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */
2 | {
3 | "extends": "./tsconfig.json",
4 | "compilerOptions": {
5 | "outDir": "./out-tsc/spec",
6 | "types": [
7 | "jasmine"
8 | ]
9 | },
10 | "files": [
11 | "src/test.ts",
12 | "src/polyfills.ts"
13 | ],
14 | "include": [
15 | "src/**/*.spec.ts",
16 | "src/**/*.d.ts"
17 | ]
18 | }
19 |
--------------------------------------------------------------------------------
/src/app/pages/swag/swag-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { Routes, RouterModule } from '@angular/router';
3 |
4 | import { SwagPage } from './swag.page';
5 |
6 | const routes: Routes = [
7 | {
8 | path: '',
9 | component: SwagPage
10 | }
11 | ];
12 |
13 | @NgModule({
14 | imports: [RouterModule.forChild(routes)],
15 | exports: [RouterModule],
16 | })
17 | export class SwagPageRoutingModule {}
18 |
--------------------------------------------------------------------------------
/src/app/components/swag-modal/swag-modal.page.scss:
--------------------------------------------------------------------------------
1 | ion-list-header {
2 | font-size: 12px;
3 | font-weight: 400;
4 |
5 | margin: 0;
6 |
7 | text-transform: uppercase;
8 |
9 | color: var(--ion-color-step-500);
10 | }
11 |
12 | ion-list {
13 | margin-top: 8px !important;
14 | }
15 |
16 | /**
17 | * This might be an Ionic bug
18 | */
19 | ion-item {
20 | --padding-start: 16px !important;
21 | --border-color: var(--ion-color-step-200);
22 | }
23 |
--------------------------------------------------------------------------------
/src/app/components/permissions-modal/permissions-modal.component.scss:
--------------------------------------------------------------------------------
1 | ion-header::after {
2 | content: none;
3 | }
4 |
5 | ion-toolbar {
6 | --padding-top: 8px;
7 | --background: transparent;
8 | --border-color: transparent;
9 | }
10 |
11 | .ios h1 {
12 | margin: 0 0 0 5px;
13 | }
14 |
15 | .md h1 {
16 | margin: 0 0 0 16px;
17 | }
18 |
19 | ion-text {
20 | color: var(--ion-color-step-650);
21 | font-size: 16px;
22 | line-height: 22px;
23 | }
24 |
--------------------------------------------------------------------------------
/src/app/pages/speakers/speakers-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { Routes, RouterModule } from '@angular/router';
3 |
4 | import { SpeakersPage } from './speakers.page';
5 |
6 | const routes: Routes = [
7 | {
8 | path: '',
9 | component: SpeakersPage
10 | }
11 | ];
12 |
13 | @NgModule({
14 | imports: [RouterModule.forChild(routes)],
15 | exports: [RouterModule],
16 | })
17 | export class SpeakersPageRoutingModule {}
18 |
--------------------------------------------------------------------------------
/src/app/pages/sponsors/sponsors-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { Routes, RouterModule } from '@angular/router';
3 |
4 | import { SponsorsPage } from './sponsors.page';
5 |
6 | const routes: Routes = [
7 | {
8 | path: '',
9 | component: SponsorsPage
10 | }
11 | ];
12 |
13 | @NgModule({
14 | imports: [RouterModule.forChild(routes)],
15 | exports: [RouterModule],
16 | })
17 | export class SponsorsPageRoutingModule {}
18 |
--------------------------------------------------------------------------------
/src/app/components/swag-modal/swag-modal-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { Routes, RouterModule } from '@angular/router';
3 |
4 | import { SwagModalPage } from './swag-modal.page';
5 |
6 | const routes: Routes = [
7 | {
8 | path: '',
9 | component: SwagModalPage
10 | }
11 | ];
12 |
13 | @NgModule({
14 | imports: [RouterModule.forChild(routes)],
15 | exports: [RouterModule],
16 | })
17 | export class SwagModalPageRoutingModule {}
18 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/agenda-item/agenda-item-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { Routes, RouterModule } from '@angular/router';
3 |
4 | import { AgendaItemPage } from './agenda-item.page';
5 |
6 | const routes: Routes = [
7 | {
8 | path: '',
9 | component: AgendaItemPage
10 | }
11 | ];
12 |
13 | @NgModule({
14 | imports: [RouterModule.forChild(routes)],
15 | exports: [RouterModule],
16 | })
17 | export class AgendaItemPageRoutingModule {}
18 |
--------------------------------------------------------------------------------
/src/app/components/agenda-avatars/agenda-avatars.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, Input, OnInit } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-agenda-avatars',
5 | templateUrl: './agenda-avatars.component.html',
6 | styleUrls: ['./agenda-avatars.component.scss'],
7 | })
8 | export class AgendaAvatarsComponent implements OnInit {
9 | @Input() urls: string[] = [];
10 | @Input() size: string = '100%';
11 |
12 | constructor() { }
13 |
14 | ngOnInit() {}
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/android/variables.gradle:
--------------------------------------------------------------------------------
1 | ext {
2 | minSdkVersion = 22
3 | compileSdkVersion = 32
4 | targetSdkVersion = 32
5 | androidxActivityVersion = '1.4.0'
6 | androidxAppCompatVersion = '1.4.2'
7 | androidxCoordinatorLayoutVersion = '1.2.0'
8 | androidxCoreVersion = '1.8.0'
9 | androidxFragmentVersion = '1.4.1'
10 | junitVersion = '4.13.2'
11 | androidxJunitVersion = '1.1.3'
12 | androidxEspressoCoreVersion = '3.4.0'
13 | cordovaAndroidVersion = '10.1.1'
14 | coreSplashScreenVersion='1.0.0'
15 | }
--------------------------------------------------------------------------------
/src/app/services/storage.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable } from '@angular/core';
2 | import { Preferences } from '@capacitor/preferences';
3 |
4 | @Injectable({
5 | providedIn: 'root'
6 | })
7 | export class StorageService {
8 | async setPushNotesModalShown() {
9 | await Preferences.set({
10 | key: 'pushmodalshown',
11 | value: 'true'
12 | });
13 | }
14 |
15 | async getPushNotesModalShown() {
16 | const { value } = await Preferences.get({ key: 'pushmodalshown'});
17 | return value;
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.getcapacitor.myapp;
2 |
3 | import static org.junit.Assert.*;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 |
14 | @Test
15 | public void addition_isCorrect() throws Exception {
16 | assertEquals(4, 2 + 2);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/app/components/speaker-card/speaker-card.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SpeakerCardComponent } from './speaker-card.component';
8 |
9 | @NgModule({
10 | imports: [ CommonModule, FormsModule, IonicModule],
11 | declarations: [SpeakerCardComponent],
12 | exports: [SpeakerCardComponent]
13 | })
14 | export class SpeakerCardComponentModule {}
15 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-card/sponsor-card.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SponsorCardComponent } from './sponsor-card.component';
8 |
9 | @NgModule({
10 | imports: [ CommonModule, FormsModule, IonicModule],
11 | declarations: [SponsorCardComponent],
12 | exports: [SponsorCardComponent]
13 | })
14 | export class SponsorCardComponentModule {}
15 |
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "splash-2732x2732-2.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "splash-2732x2732-1.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "splash-2732x2732.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
--------------------------------------------------------------------------------
/src/app/components/agenda-avatars/agenda-avatars.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { AgendaAvatarsComponent } from './agenda-avatars.component';
8 |
9 | @NgModule({
10 | imports: [ CommonModule, FormsModule, IonicModule],
11 | declarations: [AgendaAvatarsComponent],
12 | exports: [AgendaAvatarsComponent]
13 | })
14 | export class AgendaAvatarsComponentModule {}
15 |
--------------------------------------------------------------------------------
/src/app/pages/tabs/tabs.module.ts:
--------------------------------------------------------------------------------
1 | import { IonicModule } from '@ionic/angular';
2 | import { NgModule } from '@angular/core';
3 | import { CommonModule } from '@angular/common';
4 | import { FormsModule } from '@angular/forms';
5 |
6 | import { TabsPageRoutingModule } from './tabs-routing.module';
7 |
8 | import { TabsPage } from './tabs.page';
9 |
10 | @NgModule({
11 | imports: [
12 | IonicModule,
13 | CommonModule,
14 | FormsModule,
15 | TabsPageRoutingModule
16 | ],
17 | declarations: [TabsPage]
18 | })
19 | export class TabsPageModule {}
20 |
--------------------------------------------------------------------------------
/src/app/pages/swag/swag.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SwagPageRoutingModule } from './swag-routing.module';
8 |
9 | import { SwagPage } from './swag.page';
10 |
11 | @NgModule({
12 | imports: [
13 | CommonModule,
14 | FormsModule,
15 | IonicModule,
16 | SwagPageRoutingModule
17 | ],
18 | declarations: [SwagPage]
19 | })
20 | export class SwagPageModule {}
21 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /.angular/cache
2 | # Specifies intentionally untracked files to ignore when using Git
3 | # http://git-scm.com/docs/gitignore
4 |
5 | *~
6 | *.sw[mnpcod]
7 | .tmp
8 | *.tmp
9 | *.tmp.*
10 | *.sublime-project
11 | *.sublime-workspace
12 | .DS_Store
13 | Thumbs.db
14 | UserInterfaceState.xcuserstate
15 | $RECYCLE.BIN/
16 |
17 | *.log
18 | log.txt
19 | npm-debug.log*
20 |
21 | /.idea
22 | /.ionic
23 | /.sass-cache
24 | /.sourcemaps
25 | /.versions
26 | /.vscode
27 | /coverage
28 | /dist
29 | /node_modules
30 | /platforms
31 | /plugins
32 | /www
33 |
34 | .vercel
35 |
--------------------------------------------------------------------------------
/src/app/components/permissions-modal/permissions-modal.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { PermissionsModalComponent } from './permissions-modal.component';
8 |
9 | @NgModule({
10 | imports: [ CommonModule, FormsModule, IonicModule],
11 | declarations: [PermissionsModalComponent],
12 | exports: [PermissionsModalComponent]
13 | })
14 | export class PermissionsModalComponentModule {}
15 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/tab1-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { RouterModule, Routes } from '@angular/router';
3 | import { Tab1Page } from './tab1.page';
4 |
5 | const routes: Routes = [
6 | {
7 | path: '',
8 | component: Tab1Page,
9 | },
10 | {
11 | path: ':agendaId',
12 | loadChildren: () => import('./agenda-item/agenda-item.module').then( m => m.AgendaItemPageModule)
13 | }
14 | ];
15 |
16 | @NgModule({
17 | imports: [RouterModule.forChild(routes)],
18 | exports: [RouterModule]
19 | })
20 | export class Tab1PageRoutingModule {}
21 |
--------------------------------------------------------------------------------
/src/app/pages/swag/swag.page.scss:
--------------------------------------------------------------------------------
1 | @use "sass:math";
2 | $card-margin: 16px;
3 |
4 | h2 {
5 | margin: 0;
6 | }
7 |
8 | ion-card {
9 | border-radius: 16px;
10 |
11 | background: var(--ion-background-color);
12 | box-shadow: none;
13 | }
14 |
15 | ion-card-title {
16 | margin: #{$card-margin} 0 math.div($card-margin, 2) 0;
17 |
18 | text-transform: none;
19 | }
20 |
21 | ion-card-subtitle {
22 | text-transform: none;
23 |
24 | font-weight: 400;
25 | font-size: 16px;
26 |
27 | color: var(--ion-color-step-650);
28 | }
29 |
30 | img {
31 | display: block;
32 | margin: 0 auto;
33 | }
34 |
--------------------------------------------------------------------------------
/src/app/components/speaker-card/speaker-card.component.html:
--------------------------------------------------------------------------------
1 |
10 |
11 | {{ speaker.firstName }} {{ speaker.lastName }}
12 | {{ speaker.role }}, {{ company.name }}
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/android/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/src/app/components/swag-modal/swag-modal.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SwagModalPageRoutingModule } from './swag-modal-routing.module';
8 |
9 | import { SwagModalPage } from './swag-modal.page';
10 |
11 | @NgModule({
12 | imports: [
13 | CommonModule,
14 | FormsModule,
15 | IonicModule,
16 | SwagModalPageRoutingModule
17 | ],
18 | declarations: [SwagModalPage]
19 | })
20 | export class SwagModalPageModule {}
21 |
--------------------------------------------------------------------------------
/.browserslistrc:
--------------------------------------------------------------------------------
1 | # This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2 | # For additional information regarding the format and rule options, please see:
3 | # https://github.com/browserslist/browserslist#queries
4 |
5 | # For the full list of supported browsers by the Angular framework, please see:
6 | # https://angular.io/guide/browser-support
7 |
8 | # You can see what browsers were selected by your queries by running:
9 | # npx browserslist
10 |
11 |
12 | Chrome >=60
13 | ChromeAndroid >=60
14 | Firefox >=63
15 | Firefox ESR
16 | Edge >=79
17 | Safari >=13
18 | iOS >=13
--------------------------------------------------------------------------------
/src/app/pages/tab1/tab1.page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Agenda
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Agenda
13 |
14 |
15 |
16 |
22 |
23 |
--------------------------------------------------------------------------------
/src/app/components/agenda-card/agenda-card.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { AgendaCardComponent } from './agenda-card.component';
8 | import { AgendaAvatarsComponentModule } from '../agenda-avatars/agenda-avatars.module';
9 |
10 | @NgModule({
11 | imports: [ CommonModule, FormsModule, IonicModule, AgendaAvatarsComponentModule],
12 | declarations: [AgendaCardComponent],
13 | exports: [AgendaCardComponent]
14 | })
15 | export class AgendaCardComponentModule {}
16 |
--------------------------------------------------------------------------------
/src/app/components/speaker-view/speaker-view.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SpeakerViewComponent } from './speaker-view.component';
8 | import { SpeakerCardComponentModule } from '../speaker-card/speaker-card.module';
9 |
10 | @NgModule({
11 | imports: [ CommonModule, FormsModule, IonicModule, SpeakerCardComponentModule],
12 | declarations: [SpeakerViewComponent],
13 | exports: [SpeakerViewComponent]
14 | })
15 | export class SpeakerViewComponentModule {}
16 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-view/sponsor-view.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SponsorViewComponent } from './sponsor-view.component';
8 | import { SponsorCardComponentModule } from '../sponsor-card/sponsor-card.module';
9 |
10 | @NgModule({
11 | imports: [ CommonModule, FormsModule, IonicModule, SponsorCardComponentModule],
12 | declarations: [SponsorViewComponent],
13 | exports: [SponsorViewComponent]
14 | })
15 | export class SponsorViewComponentModule {}
16 |
--------------------------------------------------------------------------------
/src/app/pages/speakers/speakers.page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Speakers
4 |
5 |
6 |
7 |
8 |
9 |
10 | Speakers
11 |
12 |
13 |
14 |
21 |
22 |
--------------------------------------------------------------------------------
/src/app/pages/speakers/speakers.page.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 | import { SpeakerService } from '../../services/speaker.service';
3 | import { Speaker } from '../../types';
4 |
5 | @Component({
6 | selector: 'app-speakers',
7 | templateUrl: './speakers.page.html',
8 | styleUrls: ['./speakers.page.scss'],
9 | })
10 | export class SpeakersPage {
11 | public speakers: Speaker[] = [];
12 |
13 | constructor(
14 | private speakerService: SpeakerService
15 | ) {
16 | this.speakers = speakerService.getSpeakers();
17 | }
18 |
19 | trackItems(index: number, itemObject: Speaker) {
20 | return itemObject.id;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/src/app/components/agenda-card/agenda-card.component.scss:
--------------------------------------------------------------------------------
1 | @use "sass:math";
2 | $card-margin: 16px;
3 |
4 | ion-card {
5 | border-radius: 16px;
6 |
7 | margin: 0 0 #{$card-margin} 0;
8 |
9 | background: var(--ion-background-color);
10 | box-shadow: none;
11 | }
12 |
13 | ion-card-header {
14 | padding-bottom: 2px;
15 | }
16 |
17 | ion-card-header ion-card-title {
18 | margin: #{$card-margin} 0 math.div($card-margin, 2) 0;
19 |
20 | font-size: 18px;
21 | }
22 |
23 | ion-card-header ion-card-subtitle {
24 | text-transform: none;
25 |
26 | font-weight: 500;
27 | font-size: 14px;
28 | }
29 |
30 | ion-card-content {
31 | font-size: 12px;
32 | }
33 |
--------------------------------------------------------------------------------
/src/app/app.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { BrowserModule } from '@angular/platform-browser';
3 | import { RouteReuseStrategy } from '@angular/router';
4 |
5 | import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
6 |
7 | import { AppComponent } from './app.component';
8 | import { AppRoutingModule } from './app-routing.module';
9 |
10 | @NgModule({
11 | declarations: [AppComponent],
12 | entryComponents: [],
13 | imports: [BrowserModule, IonicModule.forRoot(), AppRoutingModule],
14 | providers: [{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }],
15 | bootstrap: [AppComponent],
16 | })
17 | export class AppModule {}
18 |
--------------------------------------------------------------------------------
/src/app/components/agenda-card/agenda-card.component.html:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 | {{ agenda.title }}
8 |
9 |
10 | {{ speaker.firstName }} {{ speaker.lastName }}, {{ speaker.role }}, {{ getCompanyName(speaker.companyId) }}
11 |
12 |
13 |
14 | {{ formatTalkTime(agenda) }}
15 |
16 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | EAS 21
4 | EAS 21
5 | io.ionic.conferences.eas2021
6 | io.ionic.conferences.eas2021
7 | 60e11038
8 | Production
9 | background
10 | 2
11 | 30
12 | https://api.ionicjs.com
13 |
14 |
--------------------------------------------------------------------------------
/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2 | import { TestBed, waitForAsync } from '@angular/core/testing';
3 |
4 | import { AppComponent } from './app.component';
5 |
6 | describe('AppComponent', () => {
7 |
8 | beforeEach(waitForAsync(() => {
9 |
10 | TestBed.configureTestingModule({
11 | declarations: [AppComponent],
12 | schemas: [CUSTOM_ELEMENTS_SCHEMA],
13 | }).compileComponents();
14 | }));
15 |
16 | it('should create the app', () => {
17 | const fixture = TestBed.createComponent(AppComponent);
18 | const app = fixture.debugElement.componentInstance;
19 | expect(app).toBeTruthy();
20 | });
21 | // TODO: add more tests!
22 |
23 | });
24 |
--------------------------------------------------------------------------------
/src/app/components/agenda-avatars/agenda-avatars.component.scss:
--------------------------------------------------------------------------------
1 | :host {
2 | --outline-color: var(--ion-background-color);
3 | }
4 |
5 | .container {
6 | display: flex;
7 |
8 | align-items: center;
9 |
10 | width: fit-content;
11 | }
12 |
13 | ion-avatar {
14 | width: 100%;
15 | height: 100%;
16 |
17 | /**
18 | * Do not use outline here because
19 | * WebKit does not respect border
20 | * radius when using outline.
21 | */
22 | box-shadow: 0px 0px 0px 4px var(--outline-color);
23 | }
24 |
25 | /**
26 | * Possibly a better way to do this?
27 | */
28 | ion-avatar:nth-of-type(1) {
29 | z-index: 1;
30 | }
31 |
32 | ion-avatar:nth-of-type(2) {
33 | margin-left: -6px;
34 |
35 | z-index: 0;
36 | }
37 |
--------------------------------------------------------------------------------
/src/app/pages/tabs/tabs.page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Agenda
7 |
8 |
9 |
10 | Speakers
11 |
12 |
13 |
14 | Sponsors
15 |
16 |
17 |
18 | Swag
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */
2 | {
3 | "compileOnSave": false,
4 | "compilerOptions": {
5 | "baseUrl": "./",
6 | "outDir": "./dist/out-tsc",
7 | "sourceMap": true,
8 | "declaration": false,
9 | "downlevelIteration": true,
10 | "experimentalDecorators": true,
11 | "moduleResolution": "node",
12 | "importHelpers": true,
13 | "target": "es2015",
14 | "module": "es2020",
15 | "lib": ["es2018", "dom"]
16 | },
17 | "angularCompilerOptions": {
18 | "enableI18nLegacyMessageIdFormat": false,
19 | "strictInjectionParameters": true,
20 | "strictInputAccessModifiers": true,
21 | "strictTemplates": true
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-view/sponsor-view.component.scss:
--------------------------------------------------------------------------------
1 | #close-button {
2 | position: fixed;
3 |
4 | top: max(var(--ion-safe-area-top), 16px);
5 | right: 8px;
6 | }
7 |
8 | h2 {
9 | margin-top: 0;
10 | }
11 |
12 | ion-content {
13 | --padding-bottom: var(--ion-safe-area-bottom);
14 | }
15 |
16 | ion-text {
17 | color: var(--ion-color-step-650);
18 |
19 | font-size: 18px;
20 | font-weight: 400;
21 |
22 | line-height: 24px;
23 | }
24 |
25 | .connect-button {
26 | width: 80px;
27 | height: 56px;
28 |
29 | margin: 0 6px;
30 |
31 | font-size: 14px;
32 | }
33 |
34 | .connect-button div {
35 | color: var(--ion-color-primary);
36 | }
37 |
38 | .connect-button ion-icon {
39 | height: 22px;
40 | width: 100%;
41 | }
42 |
--------------------------------------------------------------------------------
/src/environments/environment.ts:
--------------------------------------------------------------------------------
1 | // This file can be replaced during build by using the `fileReplacements` array.
2 | // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
3 | // The list of file replacements can be found in `angular.json`.
4 |
5 | export const environment = {
6 | production: false
7 | };
8 |
9 | /*
10 | * For easier debugging in development mode, you can import the following file
11 | * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
12 | *
13 | * This import should be commented out in production mode because it will have a negative impact
14 | * on performance if an error is thrown.
15 | */
16 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI.
17 |
--------------------------------------------------------------------------------
/src/app/components/permissions-modal/permissions-modal.component.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | Get reminders when the event is about to start, talk recordings have been published,
14 | and more!
15 |
16 | Continue
17 |
18 |
--------------------------------------------------------------------------------
/src/app/pages/swag/swag.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SwagPage } from './swag.page';
5 |
6 | describe('SwagPage', () => {
7 | let component: SwagPage;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SwagPage ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SwagPage);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/agenda-item/agenda-item.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { AgendaItemPageRoutingModule } from './agenda-item-routing.module';
8 | import { AgendaAvatarsComponentModule } from '../../../components/agenda-avatars/agenda-avatars.module';
9 |
10 | import { AgendaItemPage } from './agenda-item.page';
11 |
12 | @NgModule({
13 | imports: [
14 | CommonModule,
15 | FormsModule,
16 | IonicModule,
17 | AgendaItemPageRoutingModule,
18 | AgendaAvatarsComponentModule
19 | ],
20 | declarations: [AgendaItemPage]
21 | })
22 | export class AgendaItemPageModule {}
23 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 |
5 | repositories {
6 | google()
7 | mavenCentral()
8 | }
9 | dependencies {
10 | classpath 'com.android.tools.build:gradle:7.2.1'
11 | classpath 'com.google.gms:google-services:4.3.13'
12 |
13 | // NOTE: Do not place your application dependencies here; they belong
14 | // in the individual module build.gradle files
15 | }
16 | }
17 |
18 | apply from: "variables.gradle"
19 |
20 | allprojects {
21 | repositories {
22 | google()
23 | mavenCentral()
24 | }
25 | }
26 |
27 | task clean(type: Delete) {
28 | delete rootProject.buildDir
29 | }
30 |
31 |
--------------------------------------------------------------------------------
/src/app/components/speaker-view/speaker-view.component.scss:
--------------------------------------------------------------------------------
1 | #close-button {
2 | position: fixed;
3 |
4 | top: max(var(--ion-safe-area-top), 16px);
5 | right: 8px;
6 | }
7 |
8 | h2 {
9 | margin-top: 0;
10 | }
11 |
12 | ion-content {
13 | --padding-bottom: var(--ion-safe-area-bottom);
14 | }
15 |
16 | ion-text {
17 | color: var(--ion-color-step-650);
18 |
19 | font-size: 18px;
20 | font-weight: 400;
21 |
22 | line-height: 24px;
23 |
24 | white-space: pre-wrap;
25 | }
26 |
27 | .connect-button {
28 | width: 80px;
29 | height: 56px;
30 |
31 | margin: 0 6px;
32 |
33 | font-size: 14px;
34 | }
35 |
36 | .connect-button div {
37 | color: var(--ion-color-primary);
38 | }
39 |
40 | .connect-button ion-icon {
41 | height: 22px;
42 | width: 100%;
43 | }
44 |
--------------------------------------------------------------------------------
/src/app/pages/speakers/speakers.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SpeakersPage } from './speakers.page';
5 |
6 | describe('SpeakersPage', () => {
7 | let component: SpeakersPage;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SpeakersPage ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SpeakersPage);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/pages/sponsors/sponsors.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SponsorsPage } from './sponsors.page';
5 |
6 | describe('SponsorsPage', () => {
7 | let component: SponsorsPage;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SponsorsPage ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SponsorsPage);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/pages/tabs/tabs.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
3 |
4 | import { TabsPage } from './tabs.page';
5 |
6 | describe('TabsPage', () => {
7 | let component: TabsPage;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [TabsPage],
13 | schemas: [CUSTOM_ELEMENTS_SCHEMA],
14 | }).compileComponents();
15 | }));
16 |
17 | beforeEach(() => {
18 | fixture = TestBed.createComponent(TabsPage);
19 | component = fixture.componentInstance;
20 | fixture.detectChanges();
21 | });
22 |
23 | it('should create', () => {
24 | expect(component).toBeTruthy();
25 | });
26 | });
27 |
--------------------------------------------------------------------------------
/src/app/components/swag-modal/swag-modal.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SwagModalPage } from './swag-modal.page';
5 |
6 | describe('SwagModalPage', () => {
7 | let component: SwagModalPage;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SwagModalPage ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SwagModalPage);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/agenda-item/agenda-item.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { AgendaItemPage } from './agenda-item.page';
5 |
6 | describe('AgendaItemPage', () => {
7 | let component: LiamPage;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ AgendaItemPage ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(AgendaItemPage);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/app.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 | import { Capacitor } from '@capacitor/core';
3 | import { SplashScreen } from '@capacitor/splash-screen';
4 |
5 | @Component({
6 | selector: 'app-root',
7 | templateUrl: 'app.component.html',
8 | styleUrls: ['app.component.scss'],
9 | })
10 | export class AppComponent {
11 | constructor() {
12 | this.initializeApp();
13 | }
14 |
15 | initializeApp() {
16 | if (Capacitor.isNativePlatform()) {
17 | /* To make sure we provide the fastest app loading experience
18 | for our users, hide the splash screen automatically
19 | when the app is ready to be used:
20 |
21 | https://capacitorjs.com/docs/apis/splash-screen#hiding-the-splash-screen
22 | */
23 | SplashScreen.hide();
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/tab1.module.ts:
--------------------------------------------------------------------------------
1 | import { IonicModule } from '@ionic/angular';
2 | import { NgModule } from '@angular/core';
3 | import { CommonModule } from '@angular/common';
4 | import { FormsModule } from '@angular/forms';
5 | import { Tab1Page } from './tab1.page';
6 | import { AgendaCardComponentModule } from '../../components/agenda-card/agenda-card.module';
7 |
8 | import { Tab1PageRoutingModule } from './tab1-routing.module';
9 | import { PermissionsModalComponentModule } from 'src/app/components/permissions-modal/permissions-modal.module';
10 |
11 | @NgModule({
12 | imports: [
13 | IonicModule,
14 | CommonModule,
15 | FormsModule,
16 | AgendaCardComponentModule,
17 | Tab1PageRoutingModule,
18 | PermissionsModalComponentModule
19 | ],
20 | declarations: [Tab1Page]
21 | })
22 | export class Tab1PageModule {}
23 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-card/sponsor-card.component.scss:
--------------------------------------------------------------------------------
1 | ion-card.card-button {
2 | border-radius: 16px;
3 | }
4 |
5 | ion-card {
6 | margin: 0;
7 |
8 | border-radius: 0px;
9 |
10 | background-size: cover;
11 | background-repeat: no-repeat;
12 | box-shadow: none;
13 |
14 | aspect-ratio: 1.5 / 1;
15 |
16 | display: flex;
17 | justify-content: center;
18 | align-items: center;
19 | }
20 |
21 | @supports not (aspect-ratio: 1.5 / 1) {
22 | ion-card::before {
23 | float: left;
24 | padding-top: 66.67%;
25 | content: '';
26 | }
27 |
28 | ion-card::after {
29 | display: block;
30 | content: '';
31 | clear: both;
32 | }
33 | }
34 |
35 | ion-card.card-button::part(native) {
36 | display: flex;
37 | justify-content: center;
38 | align-items: center;
39 | }
40 |
41 | img {
42 | width: 60%;
43 | }
44 |
--------------------------------------------------------------------------------
/src/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | EAS 2021
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
--------------------------------------------------------------------------------
/src/app/components/permissions-modal/permissions-modal.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit } from '@angular/core';
2 | import { ModalController } from '@ionic/angular';
3 | import { PushNotificationService } from 'src/app/services/push-notification.service';
4 |
5 | @Component({
6 | selector: 'app-permissions-modal',
7 | templateUrl: './permissions-modal.component.html',
8 | styleUrls: ['./permissions-modal.component.scss'],
9 | })
10 | export class PermissionsModalComponent implements OnInit {
11 |
12 | constructor(private modalController: ModalController, private pushService: PushNotificationService) { }
13 |
14 | ngOnInit() {}
15 |
16 | async onContinue() {
17 | await this.pushService.promptPushRegistration();
18 | this.closeModal();
19 | }
20 |
21 | async closeModal() {
22 | await this.modalController.dismiss(null);
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/app/components/agenda-card/agenda-card.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { AgendaCardComponent } from './agenda-card.component';
5 |
6 | describe('AgendaCardComponent', () => {
7 | let component: AgendaCardComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ AgendaCardComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(AgendaCardComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/pages/speakers/speakers.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SpeakersPageRoutingModule } from './speakers-routing.module';
8 |
9 | import { SpeakersPage } from './speakers.page';
10 | import { SpeakerCardComponentModule } from '../../components/speaker-card/speaker-card.module';
11 | import { SpeakerViewComponentModule } from '../../components/speaker-view/speaker-view.module';
12 |
13 | @NgModule({
14 | imports: [
15 | CommonModule,
16 | FormsModule,
17 | IonicModule,
18 | SpeakersPageRoutingModule,
19 | SpeakerCardComponentModule,
20 | SpeakerViewComponentModule
21 | ],
22 | declarations: [SpeakersPage]
23 | })
24 | export class SpeakersPageModule {}
25 |
--------------------------------------------------------------------------------
/src/app/pages/sponsors/sponsors.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 | import { FormsModule } from '@angular/forms';
4 |
5 | import { IonicModule } from '@ionic/angular';
6 |
7 | import { SponsorsPageRoutingModule } from './sponsors-routing.module';
8 |
9 | import { SponsorsPage } from './sponsors.page';
10 | import { SponsorCardComponentModule } from '../../components/sponsor-card/sponsor-card.module';
11 | import { SponsorViewComponentModule } from '../../components/sponsor-view/sponsor-view.module';
12 |
13 | @NgModule({
14 | imports: [
15 | CommonModule,
16 | FormsModule,
17 | IonicModule,
18 | SponsorsPageRoutingModule,
19 | SponsorCardComponentModule,
20 | SponsorViewComponentModule
21 | ],
22 | declarations: [SponsorsPage]
23 | })
24 | export class SponsorsPageModule {}
25 |
--------------------------------------------------------------------------------
/src/app/components/speaker-card/speaker-card.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SpeakerCardComponent } from './speaker-card.component';
5 |
6 | describe('SpeakerCardComponent', () => {
7 | let component: SpeakerCardComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SpeakerCardComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SpeakerCardComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/components/speaker-view/speaker-view.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SpeakerViewComponent } from './speaker-view.component';
5 |
6 | describe('SpeakerViewComponent', () => {
7 | let component: SpeakerViewComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SpeakerViewComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SpeakerViewComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-card/sponsor-card.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SponsorCardComponent } from './sponsor-card.component';
5 |
6 | describe('SponsorCardComponent', () => {
7 | let component: SponsorCardComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SponsorCardComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SponsorCardComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-view/sponsor-view.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { SponsorViewComponent } from './sponsor-view.component';
5 |
6 | describe('SponsorViewComponent', () => {
7 | let component: SponsorViewComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ SponsorViewComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(SponsorViewComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-view/sponsor-view.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, Input, OnInit } from '@angular/core';
2 | import { ModalController } from '@ionic/angular';
3 | import { SponsorService } from '../../services/sponsor.service';
4 | import { Sponsor } from '../../types';
5 |
6 | @Component({
7 | selector: 'app-sponsor-view',
8 | templateUrl: './sponsor-view.component.html',
9 | styleUrls: ['./sponsor-view.component.scss'],
10 | })
11 | export class SponsorViewComponent implements OnInit {
12 | @Input() id: number;
13 |
14 | public sponsor: Sponsor;
15 |
16 | constructor(
17 | private sponsorService: SponsorService,
18 | private modalController: ModalController
19 | ) { }
20 |
21 | ngOnInit() {
22 | this.sponsor = this.sponsorService.getSponsor(this.id);
23 | }
24 |
25 | closeModal() {
26 | this.modalController.dismiss();
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/src/app/components/agenda-avatars/agenda-avatars.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { AgendaAvatarsComponent } from './agenda-avatars.component';
5 |
6 | describe('AgendaAvatarsComponent', () => {
7 | let component: AgendaAvatarsComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ AgendaAvatarsComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(AgendaAvatarsComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/tab1.page.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 | import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
4 |
5 | import { Tab1Page } from './tab1.page';
6 |
7 | describe('Tab1Page', () => {
8 | let component: Tab1Page;
9 | let fixture: ComponentFixture;
10 |
11 | beforeEach(waitForAsync(() => {
12 | TestBed.configureTestingModule({
13 | declarations: [Tab1Page],
14 | imports: [IonicModule.forRoot(), ExploreContainerComponentModule]
15 | }).compileComponents();
16 |
17 | fixture = TestBed.createComponent(Tab1Page);
18 | component = fixture.componentInstance;
19 | fixture.detectChanges();
20 | }));
21 |
22 | it('should create', () => {
23 | expect(component).toBeTruthy();
24 | });
25 | });
26 |
--------------------------------------------------------------------------------
/src/test.ts:
--------------------------------------------------------------------------------
1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2 |
3 | import 'zone.js/dist/zone-testing';
4 | import { getTestBed } from '@angular/core/testing';
5 | import {
6 | BrowserDynamicTestingModule,
7 | platformBrowserDynamicTesting
8 | } from '@angular/platform-browser-dynamic/testing';
9 |
10 | declare const require: {
11 | context(path: string, deep?: boolean, filter?: RegExp): {
12 | keys(): string[];
13 | (id: string): T;
14 | };
15 | };
16 |
17 | // First, initialize the Angular testing environment.
18 | getTestBed().initTestEnvironment(
19 | BrowserDynamicTestingModule,
20 | platformBrowserDynamicTesting(), {
21 | teardown: { destroyAfterEach: false }
22 | }
23 | );
24 | // Then we find all the tests.
25 | const context = require.context('./', true, /\.spec\.ts$/);
26 | // And load the modules.
27 | context.keys().map(context);
28 |
--------------------------------------------------------------------------------
/src/app/components/permissions-modal/permissions-modal.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2 | import { IonicModule } from '@ionic/angular';
3 |
4 | import { PermissionsModalComponent } from './permissions-modal.component';
5 |
6 | describe('PermissionsModalComponent', () => {
7 | let component: PermissionsModalComponent;
8 | let fixture: ComponentFixture;
9 |
10 | beforeEach(waitForAsync(() => {
11 | TestBed.configureTestingModule({
12 | declarations: [ PermissionsModalComponent ],
13 | imports: [IonicModule.forRoot()]
14 | }).compileComponents();
15 |
16 | fixture = TestBed.createComponent(PermissionsModalComponent);
17 | component = fixture.componentInstance;
18 | fixture.detectChanges();
19 | }));
20 |
21 | it('should create', () => {
22 | expect(component).toBeTruthy();
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
17 |
18 |
19 |
22 |
--------------------------------------------------------------------------------
/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package com.getcapacitor.myapp;
2 |
3 | import static org.junit.Assert.*;
4 |
5 | import android.content.Context;
6 | import androidx.test.ext.junit.runners.AndroidJUnit4;
7 | import androidx.test.platform.app.InstrumentationRegistry;
8 | import org.junit.Test;
9 | import org.junit.runner.RunWith;
10 |
11 | /**
12 | * Instrumented test, which will execute on an Android device.
13 | *
14 | * @see Testing documentation
15 | */
16 | @RunWith(AndroidJUnit4.class)
17 | public class ExampleInstrumentedTest {
18 |
19 | @Test
20 | public void useAppContext() throws Exception {
21 | // Context of the app under test.
22 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
23 |
24 | assertEquals("com.getcapacitor.app", appContext.getPackageName());
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
3 |
4 | const routes: Routes = [
5 | {
6 | path: '',
7 | loadChildren: () => import('./pages/tabs/tabs.module').then(m => m.TabsPageModule)
8 | },
9 | {
10 | path: 'sponsors',
11 | loadChildren: () => import('./pages/sponsors/sponsors.module').then( m => m.SponsorsPageModule)
12 | },
13 | {
14 | path: 'swag',
15 | loadChildren: () => import('./pages/swag/swag.module').then( m => m.SwagPageModule)
16 | },
17 | {
18 | path: 'swag-modal',
19 | loadChildren: () => import('./components/swag-modal/swag-modal.module').then( m => m.SwagModalPageModule)
20 | },
21 | ];
22 |
23 | @NgModule({
24 | imports: [
25 | RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })
26 | ],
27 | exports: [RouterModule]
28 | })
29 | export class AppRoutingModule { }
30 |
--------------------------------------------------------------------------------
/src/app/pages/swag/swag.page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Swag
4 |
5 |
6 |
7 |
8 |
9 |
10 | Swag
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | EAS Swag
21 | Conference attendees, enter your info for a chance to win free Ionic and EAS21 swag!
22 |
23 |
24 |
25 | Note: Entries for the swag raffle are now closed.
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/src/app/components/speaker-view/speaker-view.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit, Input } from '@angular/core';
2 | import { ModalController } from '@ionic/angular';
3 | import { Speaker } from '../../types';
4 | import { SpeakerService } from '../../services/speaker.service';
5 | import { Browser } from '@capacitor/browser';
6 |
7 | @Component({
8 | selector: 'app-speaker-view',
9 | templateUrl: './speaker-view.component.html',
10 | styleUrls: ['./speaker-view.component.scss'],
11 | })
12 | export class SpeakerViewComponent implements OnInit {
13 | public speaker: Speaker;
14 |
15 | @Input() id: number;
16 |
17 | constructor(
18 | private speakerService: SpeakerService,
19 | private modalController: ModalController
20 | ) { }
21 |
22 | ngOnInit() {
23 | this.speaker = this.speakerService.getSpeaker(this.id);
24 | }
25 |
26 | closeModal() {
27 | this.modalController.dismiss();
28 | }
29 |
30 | async openLink(link: string) {
31 | await Browser.open({ url: link})
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/e2e/protractor.conf.js:
--------------------------------------------------------------------------------
1 | // @ts-check
2 | // Protractor configuration file, see link for more information
3 | // https://github.com/angular/protractor/blob/master/lib/config.ts
4 |
5 | const { SpecReporter, StacktraceOption } = require('jasmine-spec-reporter');
6 |
7 | /**
8 | * @type { import("protractor").Config }
9 | */
10 | exports.config = {
11 | allScriptsTimeout: 11000,
12 | specs: [
13 | './src/**/*.e2e-spec.ts'
14 | ],
15 | capabilities: {
16 | browserName: 'chrome'
17 | },
18 | directConnect: true,
19 | SELENIUM_PROMISE_MANAGER: false,
20 | baseUrl: 'http://localhost:4200/',
21 | framework: 'jasmine',
22 | jasmineNodeOpts: {
23 | showColors: true,
24 | defaultTimeoutInterval: 30000,
25 | print: function() {}
26 | },
27 | onPrepare() {
28 | require('ts-node').register({
29 | project: require('path').join(__dirname, './tsconfig.json')
30 | });
31 | jasmine.getEnv().addReporter(new SpecReporter({
32 | spec: {
33 | displayStacktrace: StacktraceOption.PRETTY
34 | }
35 | }));
36 | }
37 | };
38 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-card/sponsor-card.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, Input, OnInit } from '@angular/core';
2 | import { ModalController } from '@ionic/angular';
3 | import { Sponsor, SponsorTier } from '../../types';
4 | import { SponsorService } from '../../services/sponsor.service';
5 | import { SponsorViewComponent } from '../sponsor-view/sponsor-view.component';
6 | import { Browser } from '@capacitor/browser';
7 |
8 | @Component({
9 | selector: 'app-sponsor-card',
10 | templateUrl: './sponsor-card.component.html',
11 | styleUrls: ['./sponsor-card.component.scss'],
12 | })
13 | export class SponsorCardComponent implements OnInit {
14 | @Input() id: number;
15 | @Input() button: boolean = false;
16 |
17 | public sponsor: Sponsor;
18 |
19 | constructor(
20 | private sponsorService: SponsorService,
21 | private modalController: ModalController
22 | ) { }
23 |
24 | ngOnInit() {
25 | this.sponsor = this.sponsorService.getSponsor(this.id);
26 | }
27 |
28 | async openLink(link: string) {
29 | await Browser.open({ url: link})
30 | }
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/ios/App/App/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2015-present Drifty Co.
2 | http://drifty.com/
3 |
4 | MIT License
5 |
6 | Permission is hereby granted, free of charge, to any person obtaining
7 | a copy of this software and associated documentation files (the
8 | "Software"), to deal in the Software without restriction, including
9 | without limitation the rights to use, copy, modify, merge, publish,
10 | distribute, sublicense, and/or sell copies of the Software, and to
11 | permit persons to whom the Software is furnished to do so, subject to
12 | the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be
15 | included in all copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 |
--------------------------------------------------------------------------------
/android/app/google-services.json:
--------------------------------------------------------------------------------
1 | {
2 | "project_info": {
3 | "project_number": "747479840904",
4 | "project_id": "eas-2021",
5 | "storage_bucket": "eas-2021.appspot.com"
6 | },
7 | "client": [
8 | {
9 | "client_info": {
10 | "mobilesdk_app_id": "1:747479840904:android:c355a7e8920f2258b1073d",
11 | "android_client_info": {
12 | "package_name": "io.ionic.conferences.eas2021"
13 | }
14 | },
15 | "oauth_client": [
16 | {
17 | "client_id": "747479840904-ts0i5on7tuo9biqhmm44n8k9376de1i5.apps.googleusercontent.com",
18 | "client_type": 3
19 | }
20 | ],
21 | "api_key": [
22 | {
23 | "current_key": "AIzaSyDT3kBBaQ8jhXgp7Y5T9ax5azHdMHTTFVM"
24 | }
25 | ],
26 | "services": {
27 | "appinvite_service": {
28 | "other_platform_oauth_client": [
29 | {
30 | "client_id": "747479840904-ts0i5on7tuo9biqhmm44n8k9376de1i5.apps.googleusercontent.com",
31 | "client_type": 3
32 | }
33 | ]
34 | }
35 | }
36 | }
37 | ],
38 | "configuration_version": "1"
39 | }
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | org.gradle.jvmargs=-Xmx1536m
13 |
14 | # When configured, Gradle will run in incubating parallel mode.
15 | # This option should only be used with decoupled projects. More details, visit
16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 | # org.gradle.parallel=true
18 |
19 | # AndroidX package structure to make it clearer which packages are bundled with the
20 | # Android operating system, and which are packaged with your app's APK
21 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
22 | android.useAndroidX=true
23 | # Automatically convert third-party libraries to use AndroidX
24 | android.enableJetifier=true
25 |
--------------------------------------------------------------------------------
/src/app/types/index.ts:
--------------------------------------------------------------------------------
1 | export enum SponsorTier {
2 | Platinum = 'platinum',
3 | Gold = 'gold',
4 | Silver = 'silver',
5 | Bronze = 'bronze'
6 | }
7 | export class HubspotFormData {
8 | firstname: string;
9 | lastname: string;
10 | email: string;
11 | address: string;
12 | city: string;
13 | zip: string;
14 | country_pl_: string;
15 | state?: string;
16 | t_shirt_size: string;
17 | }
18 |
19 | export interface AgendaItem {
20 | id: number;
21 | title: string;
22 | description: string;
23 | speakerIds: number[];
24 | startTime: string;
25 | endTime: string;
26 | }
27 |
28 | export interface Speaker {
29 | id: number;
30 | firstName: string;
31 | lastName: string;
32 | companyId: number;
33 | role: string;
34 | photoUrl: string;
35 | biography: string;
36 | linkedin?: string;
37 | twitter?: string;
38 | github?: string;
39 | }
40 |
41 | export interface Company {
42 | id: number;
43 | name: string;
44 | logoUrl: string;
45 | }
46 |
47 | export interface Sponsor {
48 | id: number;
49 | name: string;
50 | logoUrl: string;
51 | accentColor: string;
52 | tier: SponsorTier;
53 | biography: string;
54 | homepage: string;
55 | }
56 |
--------------------------------------------------------------------------------
/android/app/capacitor.build.gradle:
--------------------------------------------------------------------------------
1 | // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
2 |
3 | android {
4 | compileOptions {
5 | sourceCompatibility JavaVersion.VERSION_11
6 | targetCompatibility JavaVersion.VERSION_11
7 | }
8 | }
9 |
10 | apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
11 | dependencies {
12 | implementation project(':capacitor-community-bluetooth-le')
13 | implementation project(':capacitor-community-keep-awake')
14 | implementation project(':capacitor-app')
15 | implementation project(':capacitor-browser')
16 | implementation project(':capacitor-haptics')
17 | implementation project(':capacitor-keyboard')
18 | implementation project(':capacitor-local-notifications')
19 | implementation project(':capacitor-preferences')
20 | implementation project(':capacitor-push-notifications')
21 | implementation project(':capacitor-splash-screen')
22 | implementation project(':capacitor-status-bar')
23 |
24 | }
25 | apply from: "../../node_modules/cordova-plugin-ionic/src/android/cordovapluginionic.gradle"
26 |
27 | if (hasProperty('postBuildExtras')) {
28 | postBuildExtras()
29 | }
30 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/agenda-item/agenda-item.page.scss:
--------------------------------------------------------------------------------
1 | @use "sass:math";
2 | $agenda-margin: 16px;
3 |
4 | .header {
5 | text-align: center;
6 |
7 | margin: 20px 0;
8 | }
9 |
10 | .header .avatars {
11 | display: flex;
12 | justify-content: center;
13 |
14 | margin: 0 0 #{$agenda-margin} 0;
15 | }
16 |
17 | app-agenda-avatars {
18 | --outline-color: var(--ion-color-light);
19 | }
20 |
21 | .header h1 {
22 | font-size: 24px;
23 | font-weight: 700;
24 |
25 | margin: 0 0 #{math.div($agenda-margin, 2)} 0;
26 |
27 | color: var(--ion-color-step-950);
28 | }
29 |
30 | .header h2 {
31 | font-size: 16px;
32 | font-weight: 500;
33 |
34 | margin: 0;
35 |
36 | color: var(--ion-color-step-650);
37 | }
38 |
39 | ion-list.list-inset {
40 | margin-top: 8px;
41 | }
42 |
43 | .description-list ion-item ion-text {
44 | color: var(--ion-color-step-800);
45 | }
46 |
47 | .when-list ion-item ion-label {
48 | font-weight: 600;
49 | }
50 |
51 | .when-list ion-item ion-note {
52 | font-size: 14px;
53 | font-weight: 500;
54 |
55 | color: var(--ion-color-step-650);
56 | }
57 |
58 | ion-item.watch-live {
59 | --color: var(--ion-color-primary);
60 | --border-color: var(--ion-color-step-200);
61 | }
62 |
--------------------------------------------------------------------------------
/src/app/pages/tabs/tabs-routing.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { RouterModule, Routes } from '@angular/router';
3 | import { TabsPage } from './tabs.page';
4 |
5 | const routes: Routes = [
6 | {
7 | path: '',
8 | component: TabsPage,
9 | children: [
10 | {
11 | path: 'agenda',
12 | loadChildren: () => import('../tab1/tab1.module').then(m => m.Tab1PageModule)
13 | },
14 | {
15 | path: 'speakers',
16 | loadChildren: () => import('../speakers/speakers.module').then(m => m.SpeakersPageModule)
17 | },
18 | {
19 | path: 'sponsors',
20 | loadChildren: () => import('../sponsors/sponsors.module').then(m => m.SponsorsPageModule)
21 | },
22 | {
23 | path: 'swag',
24 | loadChildren: () => import('../swag/swag.module').then(m => m.SwagPageModule)
25 | },
26 | {
27 | path: '',
28 | redirectTo: '/agenda',
29 | pathMatch: 'full'
30 | }
31 | ]
32 | },
33 | {
34 | path: '',
35 | redirectTo: '/agenda',
36 | pathMatch: 'full'
37 | }
38 | ];
39 |
40 | @NgModule({
41 | imports: [RouterModule.forChild(routes)],
42 | })
43 | export class TabsPageRoutingModule {}
44 |
--------------------------------------------------------------------------------
/ios/App/App/GoogleService-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CLIENT_ID
6 | 747479840904-im3bvq0fjlhe5n87nns42cn0tfmv61dp.apps.googleusercontent.com
7 | REVERSED_CLIENT_ID
8 | com.googleusercontent.apps.747479840904-im3bvq0fjlhe5n87nns42cn0tfmv61dp
9 | API_KEY
10 | AIzaSyCqpkP_k0CveLJXQfx2llgF4CbyNU-evTY
11 | GCM_SENDER_ID
12 | 747479840904
13 | PLIST_VERSION
14 | 1
15 | BUNDLE_ID
16 | io.ionic.conferences.eas2021
17 | PROJECT_ID
18 | eas-2021
19 | STORAGE_BUCKET
20 | eas-2021.appspot.com
21 | IS_ADS_ENABLED
22 |
23 | IS_ANALYTICS_ENABLED
24 |
25 | IS_APPINVITE_ENABLED
26 |
27 | IS_GCM_ENABLED
28 |
29 | IS_SIGNIN_ENABLED
30 |
31 | GOOGLE_APP_ID
32 | 1:747479840904:ios:01ebcabb49679112b1073d
33 |
34 |
--------------------------------------------------------------------------------
/src/app/components/sponsor-view/sponsor-view.component.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | {{ sponsor.biography }}
13 |
14 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/src/app/components/swag-modal/swag-modal.page.ts:
--------------------------------------------------------------------------------
1 | import { Component, ViewChild } from '@angular/core';
2 | import { NgForm } from '@angular/forms';
3 | import { ModalController } from '@ionic/angular';
4 | import { HubspotService } from '../../services/hubspot.service';
5 | import { HubspotFormData } from '../../types';
6 |
7 | @Component({
8 | selector: 'app-swag-modal',
9 | templateUrl: './swag-modal.page.html',
10 | styleUrls: ['./swag-modal.page.scss'],
11 | })
12 | export class SwagModalPage {
13 | @ViewChild('hubspotForm') hubspotForm: NgForm;
14 |
15 | constructor(
16 | private hubspotService: HubspotService,
17 | private modalController: ModalController
18 | ) {
19 | this.states = hubspotService.getStates();
20 | }
21 |
22 | public hubspotData: HubspotFormData = new HubspotFormData();
23 | public states: string[] = [];
24 |
25 | submitForm() {
26 | this.hubspotForm.onSubmit(undefined);
27 | }
28 |
29 | public async onSubmit() {
30 | if (!this.hubspotForm.valid) { return }
31 |
32 | const success = await this.hubspotService.submitToHubspot(this.hubspotData);
33 |
34 | if (success) {
35 | await this.modalController.dismiss(success);
36 | }
37 | }
38 |
39 | async closeModal() {
40 | await this.modalController.dismiss(null);
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "root": true,
3 | "ignorePatterns": ["projects/**/*"],
4 | "overrides": [
5 | {
6 | "files": ["*.ts"],
7 | "parserOptions": {
8 | "project": ["tsconfig.json", "e2e/tsconfig.json"],
9 | "createDefaultProgram": true
10 | },
11 | "extends": [
12 | "plugin:@angular-eslint/ng-cli-compat",
13 | "plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
14 | "plugin:@angular-eslint/template/process-inline-templates"
15 | ],
16 | "rules": {
17 | "@angular-eslint/component-class-suffix": [
18 | "error",
19 | {
20 | "suffixes": ["Page", "Component"]
21 | }
22 | ],
23 | "@angular-eslint/component-selector": [
24 | "error",
25 | {
26 | "type": "element",
27 | "prefix": "app",
28 | "style": "kebab-case"
29 | }
30 | ],
31 | "@angular-eslint/directive-selector": [
32 | "error",
33 | {
34 | "type": "attribute",
35 | "prefix": "app",
36 | "style": "camelCase"
37 | }
38 | ]
39 | }
40 | },
41 | {
42 | "files": ["*.html"],
43 | "extends": ["plugin:@angular-eslint/template/recommended"],
44 | "rules": {}
45 | }
46 | ]
47 | }
48 |
--------------------------------------------------------------------------------
/android/.idea/jarRepositories.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/capacitor.plugins.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "pkg": "@capacitor-community/bluetooth-le",
4 | "classpath": "com.capacitorjs.community.plugins.bluetoothle.BluetoothLe"
5 | },
6 | {
7 | "pkg": "@capacitor-community/keep-awake",
8 | "classpath": "com.getcapacitor.community.keepawake.KeepAwakePlugin"
9 | },
10 | {
11 | "pkg": "@capacitor/app",
12 | "classpath": "com.capacitorjs.plugins.app.AppPlugin"
13 | },
14 | {
15 | "pkg": "@capacitor/browser",
16 | "classpath": "com.capacitorjs.plugins.browser.BrowserPlugin"
17 | },
18 | {
19 | "pkg": "@capacitor/haptics",
20 | "classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin"
21 | },
22 | {
23 | "pkg": "@capacitor/keyboard",
24 | "classpath": "com.capacitorjs.plugins.keyboard.KeyboardPlugin"
25 | },
26 | {
27 | "pkg": "@capacitor/local-notifications",
28 | "classpath": "com.capacitorjs.plugins.localnotifications.LocalNotificationsPlugin"
29 | },
30 | {
31 | "pkg": "@capacitor/preferences",
32 | "classpath": "com.capacitorjs.plugins.preferences.PreferencesPlugin"
33 | },
34 | {
35 | "pkg": "@capacitor/push-notifications",
36 | "classpath": "com.capacitorjs.plugins.pushnotifications.PushNotificationsPlugin"
37 | },
38 | {
39 | "pkg": "@capacitor/splash-screen",
40 | "classpath": "com.capacitorjs.plugins.splashscreen.SplashScreenPlugin"
41 | },
42 | {
43 | "pkg": "@capacitor/status-bar",
44 | "classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin"
45 | }
46 | ]
47 |
--------------------------------------------------------------------------------
/src/app/components/speaker-view/speaker-view.component.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
{{ speaker.biography }}
13 |
14 |
15 |
16 |
17 |
18 | LinkedIn
19 |
20 |
21 |
22 |
23 |
24 |
25 | GitHub
26 |
27 |
28 |
29 |
30 |
31 |
32 | Twitter
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/src/app/pages/swag/swag.page.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit } from '@angular/core';
2 | import { IonRouterOutlet, ModalController, ToastController } from '@ionic/angular';
3 | import { SwagModalPage } from '../../components/swag-modal/swag-modal.page';
4 |
5 |
6 | @Component({
7 | selector: 'app-swag',
8 | templateUrl: './swag.page.html',
9 | styleUrls: ['./swag.page.scss'],
10 | })
11 | export class SwagPage implements OnInit {
12 |
13 | constructor(public modalController: ModalController,
14 | private routerOutlet: IonRouterOutlet, public toastController: ToastController) { }
15 |
16 | ngOnInit() {
17 |
18 | }
19 |
20 | async openSwagModal() {
21 | const modal: HTMLIonModalElement = await this.modalController.create({
22 | component: SwagModalPage,
23 | swipeToClose: true,
24 | presentingElement: this.routerOutlet.nativeEl,
25 | componentProps: { }
26 | });
27 |
28 | modal.onDidDismiss().then((result) => {
29 | // Data will be undefined if modal was swiped closed or back button used
30 | if (result.data) {
31 | this.presentToast();
32 | }
33 | });
34 |
35 | return await modal.present();
36 | }
37 |
38 | private async presentToast(): Promise {
39 | const toast = await this.toastController.create({
40 | message: "Thanks! Winners will be notified by email.",
41 | duration: 2000,
42 | color: "primary"
43 | });
44 |
45 | await toast.present();
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/src/app/components/speaker-card/speaker-card.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit, Input } from '@angular/core';
2 | import { ModalController } from '@ionic/angular';
3 | import { SpeakerViewComponent } from '../speaker-view/speaker-view.component';
4 | import { Company, Speaker } from '../../types';
5 | import { SpeakerService } from '../../services/speaker.service';
6 | import { CompanyService } from '../../services/company.service';
7 |
8 | @Component({
9 | selector: 'app-speaker-card',
10 | templateUrl: './speaker-card.component.html',
11 | styleUrls: ['./speaker-card.component.scss'],
12 | })
13 | export class SpeakerCardComponent implements OnInit {
14 | public speaker: Speaker;
15 | public company: Company;
16 |
17 | @Input() id: number;
18 | @Input() button: boolean = false;
19 | @Input() safeArea: boolean = false;
20 |
21 | constructor(
22 | private speakerService: SpeakerService,
23 | private companyService: CompanyService,
24 | private modalController: ModalController
25 | ) {}
26 |
27 | ngOnInit() {
28 | this.speaker = this.speakerService.getSpeaker(this.id);
29 | this.company = this.companyService.getCompany(this.speaker.companyId);
30 | }
31 |
32 | async presentModal() {
33 | if (!this.button) return;
34 |
35 | const modal = await this.modalController.create({
36 | component: SpeakerViewComponent,
37 | componentProps: {
38 | id: this.id
39 | }
40 | });
41 |
42 | modal.present();
43 | }
44 |
45 | }
46 |
--------------------------------------------------------------------------------
/src/app/components/speaker-card/speaker-card.component.scss:
--------------------------------------------------------------------------------
1 | ion-card.card-button {
2 | border-radius: 16px;
3 | }
4 |
5 | ion-card {
6 | margin: 0;
7 |
8 | border-radius: 0px;
9 |
10 | background-size: cover;
11 | background-repeat: no-repeat;
12 | box-shadow: none;
13 |
14 | aspect-ratio: 1 / 1;
15 | }
16 |
17 | @supports not (aspect-ratio: 1 / 1) {
18 | ion-card::before {
19 | float: left;
20 | padding-top: 100%;
21 | content: '';
22 | }
23 |
24 | ion-card::after {
25 | display: block;
26 | content: '';
27 | clear: both;
28 | }
29 | }
30 |
31 | ion-card-header {
32 | position: absolute;
33 | bottom: 0;
34 |
35 | width: 100%;
36 |
37 | background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
38 | }
39 |
40 | ion-card-title,
41 | ion-card-subtitle {
42 | color: white;
43 | }
44 |
45 | ion-card-header ion-card-title {
46 | margin: 0 0 6px 0;
47 |
48 | font-size: 22px;
49 | }
50 |
51 | ion-card-header ion-card-subtitle {
52 | text-transform: none;
53 |
54 | font-weight: 500;
55 | font-size: 16px;
56 | }
57 |
58 | ion-card-content {
59 | height: calc(60px + var(--ion-safe-area-top));
60 |
61 | background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
62 | }
63 |
64 | ion-card-content img {
65 | position: absolute;
66 |
67 | top: 20px;
68 | left: 20px;
69 |
70 | height: 24px;
71 | }
72 |
73 | ion-card.safe-area ion-card-content img {
74 | top: max(var(--ion-safe-area-top), 16px);
75 | }
76 |
77 |
--------------------------------------------------------------------------------
/src/app/services/talk-reminder.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable, NgZone } from '@angular/core';
2 | import { Router } from '@angular/router';
3 | import { LocalNotifications } from '@capacitor/local-notifications';
4 | import { AgendaItem } from '../types';
5 |
6 | @Injectable({
7 | providedIn: 'root'
8 | })
9 | export class TalkReminderService {
10 | constructor(private ngZone: NgZone, public router: Router) {
11 | this.configure();
12 | }
13 |
14 | // Navigate the user to the talk they wanted to be reminded about
15 | async configure() {
16 | LocalNotifications.addListener("localNotificationActionPerformed", (notification => {
17 | this.ngZone.run(() => {
18 | this.router.navigate([`agenda/${notification.notification.extra.agendaId}`]);
19 | });
20 | }));
21 | }
22 |
23 | async scheduleReminder(agendaItem: AgendaItem) {
24 | // Set reminder 5 minutes before the talk begins
25 | const timeSlice = agendaItem.startTime.substring(0, 5);
26 | const reminderDate = new Date(`December 8, 2021 ${timeSlice}:00`);
27 | reminderDate.setMinutes(reminderDate.getMinutes() - 5);
28 |
29 | // Schedule reminder
30 | await LocalNotifications.schedule({
31 | notifications: [
32 | {
33 | id: 1,
34 | title: "Talk starting soon!",
35 | body: agendaItem.title,
36 | schedule: { at: reminderDate },
37 | extra: {
38 | agendaId: agendaItem.id
39 | }
40 | }
41 | ]
42 | });
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/src/app/components/agenda-card/agenda-card.component.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit, Input } from '@angular/core';
2 | import { Router } from '@angular/router';
3 | import { AgendaService } from '../../services/agenda.service';
4 | import { SpeakerService } from '../../services/speaker.service';
5 | import { CompanyService } from '../../services/company.service';
6 | import { AgendaItem, Speaker } from '../../types';
7 |
8 | @Component({
9 | selector: 'app-agenda-card',
10 | templateUrl: './agenda-card.component.html',
11 | styleUrls: ['./agenda-card.component.scss'],
12 | })
13 | export class AgendaCardComponent implements OnInit {
14 | @Input() id: number;
15 |
16 | public agenda: AgendaItem;
17 | public speakers: Speaker[];
18 | public photoUrls: string[] = [];
19 |
20 | constructor(
21 | private agendaService: AgendaService,
22 | private speakerService: SpeakerService,
23 | private companyService: CompanyService,
24 | private router: Router
25 | ) {}
26 |
27 | ngOnInit() {
28 | this.agenda = this.agendaService.getAgendaItem(this.id);
29 | this.speakers = this.speakerService.getSpeakers(this.agenda.speakerIds);
30 | this.photoUrls = this.speakers.map(speaker => speaker.photoUrl);
31 | }
32 |
33 | navigateToAgendaItemPage() {
34 | this.router.navigate([`/agenda/${this.id}`]);
35 | }
36 |
37 | getCompanyName(companyId: number) {
38 | return this.companyService.getCompany(companyId).name;
39 | }
40 |
41 | formatTalkTime(agendaItem: AgendaItem) {
42 | return this.agendaService.formatTalkTime(agendaItem);
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/karma.conf.js:
--------------------------------------------------------------------------------
1 | // Karma configuration file, see link for more information
2 | // https://karma-runner.github.io/1.0/config/configuration-file.html
3 |
4 | module.exports = function (config) {
5 | config.set({
6 | basePath: '',
7 | frameworks: ['jasmine', '@angular-devkit/build-angular'],
8 | plugins: [
9 | require('karma-jasmine'),
10 | require('karma-chrome-launcher'),
11 | require('karma-jasmine-html-reporter'),
12 | require('karma-coverage'),
13 | require('@angular-devkit/build-angular/plugins/karma')
14 | ],
15 | client: {
16 | jasmine: {
17 | // you can add configuration options for Jasmine here
18 | // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19 | // for example, you can disable the random execution with `random: false`
20 | // or set a specific seed with `seed: 4321`
21 | },
22 | clearContext: false // leave Jasmine Spec Runner output visible in browser
23 | },
24 | jasmineHtmlReporter: {
25 | suppressAll: true // removes the duplicated traces
26 | },
27 | coverageReporter: {
28 | dir: require('path').join(__dirname, './coverage/ngv'),
29 | subdir: '.',
30 | reporters: [
31 | { type: 'html' },
32 | { type: 'text-summary' }
33 | ]
34 | },
35 | reporters: ['progress', 'kjhtml'],
36 | port: 9876,
37 | colors: true,
38 | logLevel: config.LOG_INFO,
39 | autoWatch: true,
40 | browsers: ['Chrome'],
41 | singleRun: false,
42 | restartOnFileChange: true
43 | });
44 | };
45 |
--------------------------------------------------------------------------------
/src/app/pages/sponsors/sponsors.page.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit } from '@angular/core';
2 | import { Sponsor, SponsorTier } from '../../types';
3 | import { SponsorService } from '../../services/sponsor.service';
4 |
5 | @Component({
6 | selector: 'app-sponsors',
7 | templateUrl: './sponsors.page.html',
8 | styleUrls: ['./sponsors.page.scss'],
9 | })
10 | export class SponsorsPage implements OnInit {
11 | public platinumSponsors: Sponsor[] = [];
12 | public goldSponsors: Sponsor[] = [];
13 | public silverSponsors: Sponsor[] = [];
14 | public bronzeSponsors: Sponsor[] = [];
15 |
16 | constructor(
17 | private sponsorService: SponsorService
18 | ) {
19 | const sponsors = sponsorService.getSponsors();
20 | sponsors.forEach(sponsor => {
21 | switch (sponsor.tier) {
22 | case SponsorTier.Platinum:
23 | this.platinumSponsors = [
24 | ...this.platinumSponsors,
25 | sponsor
26 | ]
27 | break;
28 | case SponsorTier.Gold:
29 | this.goldSponsors = [
30 | ...this.goldSponsors,
31 | sponsor
32 | ]
33 | break;
34 | case SponsorTier.Silver:
35 | this.silverSponsors = [
36 | ...this.silverSponsors,
37 | sponsor
38 | ]
39 | break;
40 | case SponsorTier.Bronze:
41 | this.bronzeSponsors = [
42 | ...this.bronzeSponsors,
43 | sponsor
44 | ]
45 | break;
46 | default:
47 | break;
48 | }
49 | })
50 | }
51 |
52 | ngOnInit() {
53 | }
54 |
55 | }
56 |
--------------------------------------------------------------------------------
/src/app/pages/sponsors/sponsors.page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Sponsors
4 |
5 |
6 |
7 |
8 |
9 |
10 | Sponsors
11 |
12 |
13 |
14 |
15 |
16 |
24 |
25 |
26 |
34 |
35 |
36 |
44 |
45 |
46 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
12 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
31 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/ios/App/Podfile:
--------------------------------------------------------------------------------
1 | require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
2 |
3 | platform :ios, '13.0'
4 | use_frameworks!
5 |
6 | # workaround to avoid Xcode caching of Pods that requires
7 | # Product -> Clean Build Folder after new Cordova plugins installed
8 | # Requires CocoaPods 1.6 or newer
9 | install! 'cocoapods', :disable_input_output_paths => true
10 |
11 | def capacitor_pods
12 | pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
13 | pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
14 | pod 'CapacitorCommunityBluetoothLe', :path => '../../node_modules/@capacitor-community/bluetooth-le'
15 | pod 'CapacitorCommunityKeepAwake', :path => '../../node_modules/@capacitor-community/keep-awake'
16 | pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
17 | pod 'CapacitorBrowser', :path => '../../node_modules/@capacitor/browser'
18 | pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
19 | pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
20 | pod 'CapacitorLocalNotifications', :path => '../../node_modules/@capacitor/local-notifications'
21 | pod 'CapacitorPreferences', :path => '../../node_modules/@capacitor/preferences'
22 | pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications'
23 | pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
24 | pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
25 | pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
26 | end
27 |
28 | target 'App' do
29 | capacitor_pods
30 | # Add your Pods here
31 | pod 'Firebase/Messaging'
32 | end
33 |
34 |
35 | post_install do |installer|
36 | assertDeploymentTarget(installer)
37 | end
38 |
--------------------------------------------------------------------------------
/src/app/services/company.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable } from '@angular/core';
2 | import { Company } from '../types';
3 |
4 | @Injectable({
5 | providedIn: 'root'
6 | })
7 | export class CompanyService {
8 | private companies: Company[] = [
9 | {
10 | id: 1,
11 | name: 'Ionic',
12 | logoUrl: 'assets/logos/company-ionic.png'
13 | },
14 | {
15 | id: 2,
16 | name: 'US Foods',
17 | logoUrl: 'assets/logos/company-us-foods.png'
18 | },
19 | {
20 | id: 3,
21 | name: 'Volkswagen',
22 | logoUrl: 'assets/logos/company-volkswagen.png'
23 | },
24 | {
25 | id: 4,
26 | name: 'Amazon',
27 | logoUrl: 'assets/logos/company-amazon.png'
28 | },
29 | {
30 | id: 5,
31 | name: 'T-Mobile',
32 | logoUrl: 'assets/logos/company-t-mobile.png'
33 | },
34 | {
35 | id: 6,
36 | name: 'Doosan (Bobcat)',
37 | logoUrl: 'assets/logos/company-bobcat.png'
38 | },
39 | {
40 | id: 7,
41 | name: 'Norwex',
42 | logoUrl: 'assets/logos/company-norwex.png'
43 | },
44 | {
45 | id: 9,
46 | name: 'OpenForge',
47 | logoUrl: 'assets/logos/company-openforge.png'
48 | },
49 | {
50 | id: 10,
51 | name: 'Modus',
52 | logoUrl: 'assets/logos/company-modus.png'
53 | },
54 | {
55 | id: 11,
56 | name: 'AAA',
57 | logoUrl: 'assets/logos/company-aaa.png'
58 | },
59 | {
60 | id: 13,
61 | name: 'MAN Truck & Bus SE',
62 | logoUrl: 'assets/logos/company-man.png'
63 | }
64 | ];
65 |
66 | constructor() {}
67 |
68 | getCompanies(): Company[] {
69 | return this.companies;
70 | }
71 |
72 | getCompany(id: number): Company | undefined {
73 | return this.companies.find(company => company.id === id);
74 | }
75 | }
76 |
--------------------------------------------------------------------------------
/android/capacitor.settings.gradle:
--------------------------------------------------------------------------------
1 | // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
2 | include ':capacitor-android'
3 | project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')
4 |
5 | include ':capacitor-community-bluetooth-le'
6 | project(':capacitor-community-bluetooth-le').projectDir = new File('../node_modules/@capacitor-community/bluetooth-le/android')
7 |
8 | include ':capacitor-community-keep-awake'
9 | project(':capacitor-community-keep-awake').projectDir = new File('../node_modules/@capacitor-community/keep-awake/android')
10 |
11 | include ':capacitor-app'
12 | project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')
13 |
14 | include ':capacitor-browser'
15 | project(':capacitor-browser').projectDir = new File('../node_modules/@capacitor/browser/android')
16 |
17 | include ':capacitor-haptics'
18 | project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/haptics/android')
19 |
20 | include ':capacitor-keyboard'
21 | project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android')
22 |
23 | include ':capacitor-local-notifications'
24 | project(':capacitor-local-notifications').projectDir = new File('../node_modules/@capacitor/local-notifications/android')
25 |
26 | include ':capacitor-preferences'
27 | project(':capacitor-preferences').projectDir = new File('../node_modules/@capacitor/preferences/android')
28 |
29 | include ':capacitor-push-notifications'
30 | project(':capacitor-push-notifications').projectDir = new File('../node_modules/@capacitor/push-notifications/android')
31 |
32 | include ':capacitor-splash-screen'
33 | project(':capacitor-splash-screen').projectDir = new File('../node_modules/@capacitor/splash-screen/android')
34 |
35 | include ':capacitor-status-bar'
36 | project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android')
37 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/agenda-item/agenda-item.page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | Wednesday, December 8th
36 | {{ formatTalkTime(agendaItem) }}
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 | Watch live at ionic.io/events/enterprise-app-summit-21
45 |
46 |
47 | Remind Me
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
7 |
12 |
13 |
19 |
22 |
25 |
26 |
27 |
28 |
34 |
35 |
--------------------------------------------------------------------------------
/src/app/services/push-notification.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable } from '@angular/core';
2 | import {
3 | ActionPerformed,
4 | PushNotificationSchema,
5 | PushNotifications,
6 | Token,
7 | } from '@capacitor/push-notifications';
8 |
9 | @Injectable({
10 | providedIn: 'root'
11 | })
12 | export class PushNotificationService {
13 | async checkPermissionStatus() {
14 | return (await PushNotifications.checkPermissions()).receive;
15 | }
16 |
17 | async registerPush() {
18 | await PushNotifications.register();
19 | }
20 |
21 | async promptPushRegistration() {
22 | // Request permission to use push notifications
23 | // iOS will prompt user and return if they granted permission or not
24 | // Android will just grant without prompting
25 | PushNotifications.requestPermissions().then(result => {
26 | if (result.receive === 'granted') {
27 | // Register with Apple / Google to receive push via APNS/FCM
28 | PushNotifications.register();
29 | } else {
30 | // Show some error
31 | console.log("error: " + result.receive);
32 | }
33 | });
34 |
35 | PushNotifications.addListener('registration', (token: Token) => {
36 | console.log("push registration success");
37 | });
38 |
39 | PushNotifications.addListener('registrationError', (error: any) => {
40 | console.log('Error on registration: ' + JSON.stringify(error));
41 | });
42 |
43 | PushNotifications.addListener(
44 | 'pushNotificationReceived',
45 | (notification: PushNotificationSchema) => {
46 | console.log('Push received: ' + JSON.stringify(notification));
47 | },
48 | );
49 |
50 | // handle deep links
51 | // https://devdactic.com/push-notifications-ionic-capacitor/
52 | PushNotifications.addListener(
53 | 'pushNotificationActionPerformed',
54 | (notification: ActionPerformed) => {
55 | console.log('Push action performed: ' + JSON.stringify(notification));
56 | const data = notification.notification.data;
57 | console.log(data);
58 | },
59 | );
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/ios/App/App/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/ios/App/App/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | EAS 21
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(MARKETING_VERSION)
21 | CFBundleVersion
22 | $(CURRENT_PROJECT_VERSION)
23 | IonApi
24 | https://api.ionicjs.com
25 | IonAppId
26 | 60e11038
27 | IonChannelName
28 | Production
29 | IonMaxVersions
30 | 2
31 | IonMinBackgroundDuration
32 | 30
33 | IonUpdateMethod
34 | background
35 | LSRequiresIPhoneOS
36 |
37 | NSAppTransportSecurity
38 |
39 | NSAllowsArbitraryLoads
40 |
41 |
42 | UILaunchStoryboardName
43 | LaunchScreen
44 | UIMainStoryboardFile
45 | Main
46 | UIRequiredDeviceCapabilities
47 |
48 | armv7
49 |
50 | UISupportedInterfaceOrientations
51 |
52 | UIInterfaceOrientationPortrait
53 | UIInterfaceOrientationLandscapeLeft
54 | UIInterfaceOrientationLandscapeRight
55 |
56 | UISupportedInterfaceOrientations~ipad
57 |
58 | UIInterfaceOrientationPortrait
59 | UIInterfaceOrientationPortraitUpsideDown
60 | UIInterfaceOrientationLandscapeLeft
61 | UIInterfaceOrientationLandscapeRight
62 |
63 | UIViewControllerBasedStatusBarAppearance
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/tab1.page.ts:
--------------------------------------------------------------------------------
1 | import { Component, OnInit } from '@angular/core';
2 | import { AgendaItem } from '../../types';
3 | import { AgendaService } from '../../services/agenda.service';
4 | import { ModalController } from '@ionic/angular';
5 | import { PermissionsModalComponent } from 'src/app/components/permissions-modal/permissions-modal.component';
6 | import { Capacitor } from '@capacitor/core';
7 | import { PushNotificationService } from 'src/app/services/push-notification.service';
8 | import { StorageService } from 'src/app/services/storage.service';
9 |
10 | @Component({
11 | selector: 'app-tab1',
12 | templateUrl: 'tab1.page.html',
13 | styleUrls: ['tab1.page.scss']
14 | })
15 | export class Tab1Page implements OnInit {
16 | public agenda: AgendaItem[] = [];
17 |
18 | constructor(private agendaService: AgendaService,
19 | private modalController: ModalController,
20 | private pushNotificationService: PushNotificationService,
21 | private storageService: StorageService) {
22 | this.agenda = this.agendaService.getAgenda();
23 | }
24 |
25 | ngOnInit() {
26 | console.log('My app has initialized');
27 | this.presentModal();
28 | }
29 |
30 | trackItems(index: number, itemObject: AgendaItem) {
31 | return itemObject.id;
32 | }
33 |
34 | async presentModal() {
35 | // Call register every time the app launches
36 | // Show permission prompt the first time app is launched
37 | if (Capacitor.getPlatform() !== 'web') {
38 | const permStatus = await this.pushNotificationService.checkPermissionStatus();
39 |
40 | if (permStatus === 'granted') {
41 | // On Android, permission is granted automatically
42 | await this.pushNotificationService.registerPush();
43 | }
44 | else if (permStatus === 'prompt' && !(await this.storageService.getPushNotesModalShown())) {
45 | // On iOS, ask the user for permission first. only once.
46 | await this.storageService.setPushNotesModalShown();
47 |
48 | const modal = await this.modalController.create({
49 | component: PermissionsModalComponent,
50 | initialBreakpoint: 1,
51 | breakpoints: [0, 1],
52 | cssClass: 'permissions-modal'
53 | });
54 | return await modal.present();
55 | }
56 | }
57 | }
58 | }
59 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion rootProject.ext.compileSdkVersion
5 | defaultConfig {
6 | applicationId "io.ionic.conferences.eas2021"
7 | minSdkVersion rootProject.ext.minSdkVersion
8 | targetSdkVersion rootProject.ext.targetSdkVersion
9 | versionCode 3
10 | versionName "1.1"
11 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
12 | aaptOptions {
13 | // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
14 | // Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
15 | ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
16 | }
17 | }
18 | buildTypes {
19 | release {
20 | minifyEnabled false
21 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
22 | }
23 | }
24 | }
25 |
26 | repositories {
27 | flatDir{
28 | dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
29 | }
30 | }
31 |
32 | dependencies {
33 | implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion"
34 | implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
35 | implementation fileTree(include: ['*.jar'], dir: 'libs')
36 | implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
37 | implementation project(':capacitor-android')
38 | testImplementation "junit:junit:$junitVersion"
39 | androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
40 | androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
41 | implementation project(':capacitor-cordova-android-plugins')
42 | }
43 |
44 | apply from: 'capacitor.build.gradle'
45 |
46 | try {
47 | def servicesJSON = file('google-services.json')
48 | if (servicesJSON.text) {
49 | apply plugin: 'com.google.gms.google-services'
50 | }
51 | } catch(Exception e) {
52 | logger.warn("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
53 | }
54 |
--------------------------------------------------------------------------------
/src/app/pages/tab1/agenda-item/agenda-item.page.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 | import { ActivatedRoute } from '@angular/router';
3 | import { SpeakerService } from '../../../services/speaker.service';
4 | import { AgendaService } from '../../../services/agenda.service';
5 | import { CompanyService } from '../../../services/company.service';
6 | import { AgendaItem, Company, Speaker } from '../../../types';
7 | import { TalkReminderService } from 'src/app/services/talk-reminder.service';
8 | import { ToastController } from '@ionic/angular';
9 | import { Browser } from '@capacitor/browser';
10 |
11 |
12 | @Component({
13 | selector: 'app-agenda-item',
14 | templateUrl: './agenda-item.page.html',
15 | styleUrls: ['./agenda-item.page.scss'],
16 | })
17 | export class AgendaItemPage {
18 | public agendaItem: AgendaItem;
19 | public speakers: Speaker[];
20 | public photoUrls: string[] = [];
21 |
22 | constructor(
23 | private route: ActivatedRoute,
24 | private speakerService: SpeakerService,
25 | private agendaService: AgendaService,
26 | private companyService: CompanyService,
27 | private talkReminderService: TalkReminderService,
28 | private toastController: ToastController
29 | ) {
30 | const agendaId = route.snapshot.paramMap.get('agendaId');
31 | this.agendaItem = agendaService.getAgendaItem(parseInt(agendaId, 10))
32 | this.speakers = speakerService.getSpeakers(this.agendaItem.speakerIds);
33 | this.photoUrls = this.speakers.map(speaker => speaker.photoUrl);
34 | }
35 |
36 | async setReminder(agendaItem: AgendaItem) {
37 | await this.talkReminderService.scheduleReminder(agendaItem);
38 |
39 | // set reminder for 5 minutes before!
40 | const toast = await this.toastController.create({
41 | message: "Reminder set for 5 minutes before the talk begins",
42 | duration: 2000,
43 | color: "primary"
44 | });
45 |
46 | await toast.present();
47 | }
48 |
49 | async triggerBrowser() {
50 | await Browser.open({ url: "https://ionic.io/events/enterprise-app-summit-21"})
51 | }
52 |
53 | formatTalkTime(agendaItem: AgendaItem) {
54 | return this.agendaService.formatTalkTime(agendaItem);
55 | }
56 |
57 | getCompanyName(companyId: number) {
58 | return this.companyService.getCompany(companyId).name;
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | # Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore
2 |
3 | # Built application files
4 | *.apk
5 | *.aar
6 | *.ap_
7 | *.aab
8 |
9 | # Files for the ART/Dalvik VM
10 | *.dex
11 |
12 | # Java class files
13 | *.class
14 |
15 | # Generated files
16 | bin/
17 | gen/
18 | out/
19 | # Uncomment the following line in case you need and you don't have the release build type files in your app
20 | # release/
21 |
22 | # Gradle files
23 | .gradle/
24 | build/
25 |
26 | # Local configuration file (sdk path, etc)
27 | local.properties
28 |
29 | # Proguard folder generated by Eclipse
30 | proguard/
31 |
32 | # Log Files
33 | *.log
34 |
35 | # Android Studio Navigation editor temp files
36 | .navigation/
37 |
38 | # Android Studio captures folder
39 | captures/
40 |
41 | # IntelliJ
42 | *.iml
43 | .idea/workspace.xml
44 | .idea/tasks.xml
45 | .idea/gradle.xml
46 | .idea/assetWizardSettings.xml
47 | .idea/dictionaries
48 | .idea/libraries
49 | # Android Studio 3 in .gitignore file.
50 | .idea/caches
51 | .idea/modules.xml
52 | # Comment next line if keeping position of elements in Navigation Editor is relevant for you
53 | .idea/navEditor.xml
54 |
55 | # Keystore files
56 | # Uncomment the following lines if you do not want to check your keystore files in.
57 | #*.jks
58 | #*.keystore
59 |
60 | # External native build folder generated in Android Studio 2.2 and later
61 | .externalNativeBuild
62 | .cxx/
63 |
64 | # Google Services (e.g. APIs or Firebase)
65 | # google-services.json
66 |
67 | # Freeline
68 | freeline.py
69 | freeline/
70 | freeline_project_description.json
71 |
72 | # fastlane
73 | fastlane/report.xml
74 | fastlane/Preview.html
75 | fastlane/screenshots
76 | fastlane/test_output
77 | fastlane/readme.md
78 |
79 | # Version control
80 | vcs.xml
81 |
82 | # lint
83 | lint/intermediates/
84 | lint/generated/
85 | lint/outputs/
86 | lint/tmp/
87 | # lint/reports/
88 |
89 | # Android Profiling
90 | *.hprof
91 |
92 | # Cordova plugins for Capacitor
93 | capacitor-cordova-android-plugins
94 |
95 | # Copied web assets
96 | app/src/main/assets/public
97 | # Generated Config files
98 | app/src/main/assets/capacitor.config.json
99 | app/src/main/assets/capacitor.plugins.json
100 | app/src/main/res/xml/config.xml
101 |
--------------------------------------------------------------------------------
/src/polyfills.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * This file includes polyfills needed by Angular and is loaded before the app.
3 | * You can add your own extra polyfills to this file.
4 | *
5 | * This file is divided into 2 sections:
6 | * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7 | * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8 | * file.
9 | *
10 | * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11 | * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
12 | * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
13 | *
14 | * Learn more in https://angular.io/guide/browser-support
15 | */
16 |
17 | /***************************************************************************************************
18 | * BROWSER POLYFILLS
19 | */
20 |
21 | /**
22 | * By default, zone.js will patch all possible macroTask and DomEvents
23 | * user can disable parts of macroTask/DomEvents patch by setting following flags
24 | * because those flags need to be set before `zone.js` being loaded, and webpack
25 | * will put import in the top of bundle, so user need to create a separate file
26 | * in this directory (for example: zone-flags.ts), and put the following flags
27 | * into that file, and then add the following code before importing zone.js.
28 | * import './zone-flags';
29 | *
30 | * The flags allowed in zone-flags.ts are listed here.
31 | *
32 | * The following flags will work for all browsers.
33 | *
34 | * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
35 | * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
36 | * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
37 | *
38 | * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
39 | * with the following flag, it will bypass `zone.js` patch for IE/Edge
40 | *
41 | * (window as any).__Zone_enable_cross_context_check = true;
42 | *
43 | */
44 |
45 | import './zone-flags';
46 |
47 | /***************************************************************************************************
48 | * Zone JS is required by default for Angular itself.
49 | */
50 | import 'zone.js/dist/zone'; // Included with Angular CLI.
51 |
52 |
53 | /***************************************************************************************************
54 | * APPLICATION IMPORTS
55 | */
56 |
--------------------------------------------------------------------------------
/src/app/services/hubspot.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable } from '@angular/core';
2 | import { HubspotFormData } from '../types';
3 |
4 | @Injectable({
5 | providedIn: 'root'
6 | })
7 | export class HubspotService {
8 |
9 | FORM_SUBMIT_URL = "https://api.hsforms.com/submissions/v3/integration/submit/3776657/75127e93-3da1-4368-b3a7-c680d53483ac";
10 |
11 | // Convert form data into Hubspot data structure
12 | buildHubspotRequest(data: HubspotFormData) {
13 | let finalData = {
14 | "fields": []
15 | }
16 |
17 | for (let i = 0; i < Object.keys(data).length; i++) {
18 | const fieldName = Object.keys(data)[i];
19 | const value = Object.values(data)[i];
20 | finalData.fields.push({
21 | name: fieldName,
22 | value: value
23 | });
24 | }
25 |
26 | return finalData;
27 | }
28 |
29 | public async submitToHubspot(data: HubspotFormData) {
30 | const hubspotData = this.buildHubspotRequest(data);
31 |
32 | const response = await fetch(this.FORM_SUBMIT_URL, {
33 | method: 'POST',
34 | headers: {
35 | 'Content-Type': 'application/json',
36 | 'Accept': 'application/json'
37 | },
38 | body: JSON.stringify(hubspotData)
39 | });
40 |
41 | return response.ok;
42 | }
43 |
44 | getStates(): string[] {
45 | return this.states;
46 | }
47 |
48 | private states: string[] = [
49 | "Alabama",
50 | "Alaska",
51 | "Arizona",
52 | "Arkansas",
53 | "California",
54 | "Colorado",
55 | "Connecticut",
56 | "Delaware",
57 | "District Of Columbia",
58 | "Florida",
59 | "Georgia",
60 | "Hawaii",
61 | "Idaho",
62 | "Illinois",
63 | "Indiana",
64 | "Iowa",
65 | "Kansas",
66 | "Kentucky",
67 | "Louisiana",
68 | "Maine",
69 | "Maryland",
70 | "Massachusetts",
71 | "Michigan",
72 | "Minnesota",
73 | "Mississippi",
74 | "Missouri",
75 | "Montana",
76 | "Nebraska",
77 | "Nevada",
78 | "New Hampshire",
79 | "New Jersey",
80 | "New Mexico",
81 | "New York",
82 | "North Carolina",
83 | "North Dakota",
84 | "Ohio",
85 | "Oklahoma",
86 | "Oregon",
87 | "Pennsylvania",
88 | "Puerto Rico",
89 | "Rhode Island",
90 | "South Carolina",
91 | "South Dakota",
92 | "Tennessee",
93 | "Texas",
94 | "Utah",
95 | "Vermont",
96 | "Virginia",
97 | "Washington",
98 | "West Virginia",
99 | "Wisconsin",
100 | "Wyoming"
101 | ];
102 | }
103 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-capacitor-app",
3 | "version": "1.1.0",
4 | "author": "Ionic",
5 | "homepage": "https://ionic.io/events/enterprise-app-summit-21",
6 | "scripts": {
7 | "ng": "ng",
8 | "start": "ng serve",
9 | "build": "ng build",
10 | "appflow:build": "ng build --prod",
11 | "test": "ng test",
12 | "lint": "ng lint",
13 | "e2e": "ng e2e"
14 | },
15 | "private": true,
16 | "dependencies": {
17 | "@angular/common": "~13.0.3",
18 | "@angular/core": "~13.0.3",
19 | "@angular/forms": "~13.0.3",
20 | "@angular/platform-browser": "~13.0.3",
21 | "@angular/platform-browser-dynamic": "~13.0.3",
22 | "@angular/router": "~13.0.3",
23 | "@capacitor-community/bluetooth-le": "2.2.3",
24 | "@capacitor-community/keep-awake": "3.0.0",
25 | "@capacitor/android": "4.8.0",
26 | "@capacitor/app": "4.1.1",
27 | "@capacitor/browser": "4.1.1",
28 | "@capacitor/core": "4.8.0",
29 | "@capacitor/haptics": "4.1.0",
30 | "@capacitor/ios": "4.8.0",
31 | "@capacitor/keyboard": "4.1.1",
32 | "@capacitor/local-notifications": "4.1.5",
33 | "@capacitor/preferences": "4.0.2",
34 | "@capacitor/push-notifications": "4.1.2",
35 | "@capacitor/splash-screen": "4.2.0",
36 | "@capacitor/status-bar": "4.1.1",
37 | "@ionic/angular": "^6.0.1",
38 | "cordova-plugin-ionic": "^5.5.1",
39 | "rxjs": "~6.6.0",
40 | "tslib": "^2.2.0",
41 | "zone.js": "~0.11.4"
42 | },
43 | "devDependencies": {
44 | "@angular-devkit/build-angular": "~13.0.4",
45 | "@angular-eslint/builder": "~13.0.1",
46 | "@angular-eslint/eslint-plugin": "~13.0.1",
47 | "@angular-eslint/eslint-plugin-template": "^13.0.1",
48 | "@angular-eslint/template-parser": "^13.0.1",
49 | "@angular/cli": "~13.0.4",
50 | "@angular/compiler": "~13.0.3",
51 | "@angular/compiler-cli": "~13.0.3",
52 | "@angular/language-service": "~13.0.3",
53 | "@capacitor/cli": "4.8.0",
54 | "@ionic/angular-toolkit": "^5.0.4-testing.4",
55 | "@types/jasmine": "~3.6.0",
56 | "@types/jasminewd2": "~2.0.3",
57 | "@types/node": "^12.11.1",
58 | "@typescript-eslint/eslint-plugin": "4.16.1",
59 | "@typescript-eslint/parser": "4.16.1",
60 | "eslint": "^7.6.0",
61 | "eslint-plugin-import": "2.22.1",
62 | "eslint-plugin-jsdoc": "30.7.6",
63 | "eslint-plugin-prefer-arrow": "1.2.2",
64 | "jasmine-core": "~3.8.0",
65 | "jasmine-spec-reporter": "~5.0.0",
66 | "karma": "~6.3.2",
67 | "karma-chrome-launcher": "~3.1.0",
68 | "karma-coverage": "~2.0.3",
69 | "karma-coverage-istanbul-reporter": "~3.0.2",
70 | "karma-jasmine": "~4.0.0",
71 | "karma-jasmine-html-reporter": "^1.5.0",
72 | "ts-node": "~8.3.0",
73 | "typescript": "~4.4.4"
74 | },
75 | "description": "Conference app for the 2021 Ionic Enterprise App Summit"
76 | }
77 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # EAS 2021
2 | Conference app for the 2021 [Enterprise App Summit](https://ionic.io/events/enterprise-app-summit-21), hosted by Ionic, that runs on the web, iOS, and Android. This free, one day virtual event brings together tech leaders from around the world. Learn, engage, and connect with the experts using Ionic products and services to drive innovation within their companies.
3 |
4 | Use this app to view the agenda, speaker and sponsor info, and enter to win free Ionic and EAS swag.
5 |
6 | ## Try the App
7 |
8 | EAS 2021 runs on the web, iOS, and Android all from a single codebase. Try it on your device:
9 |
10 | - iOS: [Download on the App Store](https://apps.apple.com/us/app/eas-21/id1591534286)
11 | - Android: [Download on Google Play](https://play.google.com/store/apps/details?id=io.ionic.conferences.eas2021)
12 | - Web: [https://eas21.ionic.io](https://eas21.ionic.io) (hosted on Vercel)
13 |
14 | ## Features
15 |
16 | **Agenda**: Display the conference's agenda including speakers, times, and talk titles. The first time the app is loaded, display a sheet modal asking the user if they'd like to get push notifications, such as a reminder when the event is about to start.
17 |
18 | **Agenda Detail**: Tap on an agenda item to view details about the talk. "Remind Me" feature registers a local notification that triggers 5 minutes before the selected talk begins.
19 |
20 | **Speakers and Sponsors**: Scrollable list of speakers and sponsors with bio and social media links.
21 |
22 | **Swag**: Enter to win free Ionic and EAS21 swag. Custom form built to collect attendee info for raffle giveaway. Powered by the Hubspot API.
23 |
24 | ## Tech Details
25 |
26 | * UI: [Ionic 6](https://ionicframework.com) and [Angular 13](https://angular.io)
27 | * Native runtime: [Capacitor 3](https://capacitorjs.com)
28 | * Native features powered by Capacitor:
29 | * [Push Notifications](https://capacitorjs.com/docs/apis/push-notifications) powered by Firebase
30 | * [Local Notifications](https://capacitorjs.com/docs/apis/local-notifications) - Get reminders 5 minutes before talks start
31 | * [Storage](https://capacitorjs.com/docs/apis/storage) - remember user's response to push notifications prompt
32 | * [Dark mode](https://ionicframework.com/docs/theming/dark-mode), powered by Ionic 6
33 | * [Live Updates](https://ionic.io/appflow/live-updates), powered by Appflow: Deploy instant updates directly to your users. Used to immediately ship updates to the agenda/speaker schedule on the day of the event, without needing to go through the app store review process.
34 |
35 | ## How to Run
36 |
37 | - Install the Ionic CLI: `npm install -g @ionic/cli`
38 | - Clone this repository
39 | - Run `npm install`
40 | - Build the app: `ionic build` then `npx cap sync`
41 | - To try the app locally on the web, run `ionic serve`
42 | - Run the app on your device, using either `npx cap open android` or `npx cap open ios`
43 |
--------------------------------------------------------------------------------
/src/global.scss:
--------------------------------------------------------------------------------
1 | /*
2 | * App Global CSS
3 | * ----------------------------------------------------------------------------
4 | * Put style rules here that you want to apply globally. These styles are for
5 | * the entire app and not just one component. Additionally, this file can be
6 | * used as an entry point to import other CSS/Sass files to be included in the
7 | * output CSS.
8 | * For more information on global stylesheets, visit the documentation:
9 | * https://ionicframework.com/docs/layout/global-stylesheets
10 | */
11 |
12 | /* Core CSS required for Ionic components to work properly */
13 | @import "~@ionic/angular/css/core.css";
14 |
15 | /* Basic CSS for apps built with Ionic */
16 | @import "~@ionic/angular/css/normalize.css";
17 | @import "~@ionic/angular/css/structure.css";
18 | @import "~@ionic/angular/css/typography.css";
19 | @import '~@ionic/angular/css/display.css';
20 |
21 | /* Optional CSS utils that can be commented out */
22 | @import "~@ionic/angular/css/padding.css";
23 | @import "~@ionic/angular/css/float-elements.css";
24 | @import "~@ionic/angular/css/text-alignment.css";
25 | @import "~@ionic/angular/css/text-transformation.css";
26 | @import "~@ionic/angular/css/flex-utils.css";
27 |
28 | .md .eas-header-small {
29 | font-size: 16px;
30 | font-weight: 500;
31 |
32 | min-height: 20px;
33 | }
34 |
35 | .ios .eas-header-small {
36 | font-size: 18px;
37 | font-weight: 700;
38 | }
39 |
40 | .md .eas-header-medium {
41 | font-size: 16px;
42 | font-weight: 500;
43 |
44 | min-height: 20px;
45 | }
46 |
47 | .ios .eas-header-medium {
48 | font-size: 20px;
49 | font-weight: 700;
50 | }
51 |
52 | .md .eas-header-large {
53 | font-size: 20px;
54 | font-weight: 500;
55 |
56 | min-height: 20px;
57 | }
58 |
59 | .ios .eas-header-large {
60 | font-size: 20px;
61 | font-weight: 700;
62 | }
63 |
64 |
65 | ion-content.page-content,
66 | ion-content.page-content ion-toolbar {
67 | --background: var(--ion-color-light);
68 | }
69 |
70 | .permissions-modal {
71 | --height: 260px;
72 | }
73 |
74 | ion-list.list-inset.md {
75 | padding-top: 0px;
76 | padding-bottom: 0px;
77 |
78 | border-radius: 12px;
79 | }
80 |
81 | .connect-button.md {
82 | --box-shadow: none;
83 | --border-radius: 16px;
84 |
85 | width: 56px !important;
86 | }
87 |
88 | .connect-button.md ion-label {
89 | display: none;
90 | }
91 |
92 | .connect-button.md ion-icon {
93 | width: 24px !important;
94 | }
95 |
96 | .grid {
97 | display: grid;
98 | grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
99 | grid-gap: 16px;
100 | }
101 |
102 | @media (max-width: 900px) {
103 | .grid {
104 | grid-template-columns: repeat(2, 1fr);
105 | }
106 | }
107 |
108 | @media (max-width: 767px) {
109 | .grid {
110 | grid-template-columns: 1fr;
111 | }
112 | }
113 |
--------------------------------------------------------------------------------
/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "AppIcon-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "AppIcon-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "AppIcon-29x29@2x-1.png",
19 | "scale" : "2x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "AppIcon-29x29@3x.png",
25 | "scale" : "3x"
26 | },
27 | {
28 | "size" : "40x40",
29 | "idiom" : "iphone",
30 | "filename" : "AppIcon-40x40@2x.png",
31 | "scale" : "2x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "AppIcon-40x40@3x.png",
37 | "scale" : "3x"
38 | },
39 | {
40 | "size" : "60x60",
41 | "idiom" : "iphone",
42 | "filename" : "AppIcon-60x60@2x.png",
43 | "scale" : "2x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "AppIcon-60x60@3x.png",
49 | "scale" : "3x"
50 | },
51 | {
52 | "size" : "20x20",
53 | "idiom" : "ipad",
54 | "filename" : "AppIcon-20x20@1x.png",
55 | "scale" : "1x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "AppIcon-20x20@2x-1.png",
61 | "scale" : "2x"
62 | },
63 | {
64 | "size" : "29x29",
65 | "idiom" : "ipad",
66 | "filename" : "AppIcon-29x29@1x.png",
67 | "scale" : "1x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "AppIcon-29x29@2x.png",
73 | "scale" : "2x"
74 | },
75 | {
76 | "size" : "40x40",
77 | "idiom" : "ipad",
78 | "filename" : "AppIcon-40x40@1x.png",
79 | "scale" : "1x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "AppIcon-40x40@2x-1.png",
85 | "scale" : "2x"
86 | },
87 | {
88 | "size" : "76x76",
89 | "idiom" : "ipad",
90 | "filename" : "AppIcon-76x76@1x.png",
91 | "scale" : "1x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "AppIcon-76x76@2x.png",
97 | "scale" : "2x"
98 | },
99 | {
100 | "size" : "83.5x83.5",
101 | "idiom" : "ipad",
102 | "filename" : "AppIcon-83.5x83.5@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "1024x1024",
107 | "idiom" : "ios-marketing",
108 | "filename" : "AppIcon-512@2x.png",
109 | "scale" : "1x"
110 | }
111 | ],
112 | "info" : {
113 | "version" : 1,
114 | "author" : "xcode"
115 | }
116 | }
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto execute
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto execute
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :execute
68 | @rem Setup the command line
69 |
70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71 |
72 |
73 | @rem Execute Gradle
74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75 |
76 | :end
77 | @rem End local scope for the variables with windows NT shell
78 | if "%ERRORLEVEL%"=="0" goto mainEnd
79 |
80 | :fail
81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82 | rem the _cmd.exe /c_ return code!
83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84 | exit /b 1
85 |
86 | :mainEnd
87 | if "%OS%"=="Windows_NT" endlocal
88 |
89 | :omega
90 |
--------------------------------------------------------------------------------
/src/app/services/sponsor.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable } from '@angular/core';
2 | import { Sponsor, SponsorTier } from '../types';
3 |
4 | const LOREM_IPSUM = 'Details coming soon.';
5 |
6 | @Injectable({
7 | providedIn: 'root'
8 | })
9 | export class SponsorService {
10 | private sponsors: Sponsor[] = [
11 | {
12 | id: 1,
13 | name: 'Modus',
14 | logoUrl: 'assets/logos/sponsor-modus.png',
15 | accentColor: '#ffffff',
16 | tier: SponsorTier.Platinum,
17 | biography: LOREM_IPSUM,
18 | homepage: "https://moduscreate.com/"
19 | },
20 | {
21 | id: 2,
22 | name: 'OpenForge',
23 | logoUrl: 'assets/logos/sponsor-openforge.png',
24 | accentColor: '#ffffff',
25 | tier: SponsorTier.Platinum,
26 | biography: LOREM_IPSUM,
27 | homepage: "https://openforge.io/"
28 | },
29 | {
30 | id: 3,
31 | name: 'auth0',
32 | logoUrl: 'assets/logos/sponsor-auth0.png',
33 | accentColor: '#000000',
34 | tier: SponsorTier.Gold,
35 | biography: LOREM_IPSUM,
36 | homepage: "https://auth0.com/"
37 | },
38 | {
39 | id: 4,
40 | name: 'Nrwl',
41 | logoUrl: 'assets/logos/sponsor-nrwl.png',
42 | accentColor: '#ffffff',
43 | tier: SponsorTier.Gold,
44 | biography: LOREM_IPSUM,
45 | homepage: "https://nrwl.io/"
46 | },
47 | {
48 | id: 5,
49 | name: 'CouchBase',
50 | logoUrl: 'assets/logos/sponsor-couchbase.png',
51 | accentColor: '#ed2226',
52 | tier: SponsorTier.Gold,
53 | biography: LOREM_IPSUM,
54 | homepage: "https://couchbase.com/"
55 | },
56 | {
57 | id: 6,
58 | name: 'LaunchPad Lab',
59 | logoUrl: 'assets/logos/sponsor-launchpad-lab.png',
60 | accentColor: '#ffffff',
61 | tier: SponsorTier.Gold,
62 | biography: LOREM_IPSUM,
63 | homepage: "https://launchpadlab.com/"
64 | },
65 | {
66 | id: 7,
67 | name: 'strapi',
68 | logoUrl: 'assets/logos/sponsor-strapi.png',
69 | accentColor: '#8e75ff',
70 | tier: SponsorTier.Silver,
71 | biography: LOREM_IPSUM,
72 | homepage: "https://strapi.io/"
73 | },
74 | {
75 | id: 8,
76 | name: 'Vue Mastery',
77 | logoUrl: 'assets/logos/sponsor-vue-mastery.png',
78 | accentColor: '#2c8097',
79 | tier: SponsorTier.Bronze,
80 | biography: LOREM_IPSUM,
81 | homepage: "https://vuemastery.com/"
82 | },
83 | {
84 | id: 9,
85 | name: 'Briebug',
86 | logoUrl: 'assets/logos/sponsor-briebug.png',
87 | accentColor: '#ffffff',
88 | tier: SponsorTier.Silver,
89 | biography: LOREM_IPSUM,
90 | homepage: "https://briebug.com/"
91 | },
92 | {
93 | id: 10,
94 | name: 'jnesis',
95 | logoUrl: 'assets/logos/sponsor-jnesis.png',
96 | accentColor: '#ffffff',
97 | tier: SponsorTier.Silver,
98 | biography: LOREM_IPSUM,
99 | homepage: "https://jnesis.com/"
100 | },
101 | {
102 | id: 11,
103 | name: 'Hybrid Mob',
104 | logoUrl: 'assets/logos/sponsor-hybridmob.png',
105 | accentColor: '#ffffff',
106 | tier: SponsorTier.Silver,
107 | biography: LOREM_IPSUM,
108 | homepage: "https://hybridmob.com/"
109 | },
110 | {
111 | id: 12,
112 | name: 'beNovelty',
113 | logoUrl: 'assets/logos/sponsor-benoveltylimited.png',
114 | accentColor: '#ffffff',
115 | tier: SponsorTier.Silver,
116 | biography: LOREM_IPSUM,
117 | homepage: "https://benovelty.com/"
118 | },
119 | ];
120 |
121 | constructor() {}
122 |
123 | getSponsors(): Sponsor[] {
124 | return this.sponsors;
125 | }
126 |
127 | getSponsor(id: number): Sponsor | undefined {
128 | return this.sponsors.find(sponsor => sponsor.id === id);
129 | }
130 | }
131 |
--------------------------------------------------------------------------------
/ios/App/App/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Capacitor
3 | import Firebase
4 |
5 | @UIApplicationMain
6 | class AppDelegate: UIResponder, UIApplicationDelegate {
7 |
8 | var window: UIWindow?
9 |
10 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
11 | // Override point for customization after application launch.
12 | FirebaseApp.configure()
13 | return true
14 | }
15 |
16 | func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
17 | Messaging.messaging().apnsToken = deviceToken
18 | Messaging.messaging().token(completion: { (token, error) in
19 | if let error = error {
20 | NotificationCenter.default.post(name: .capacitorDidFailToRegisterForRemoteNotifications, object: error)
21 | } else if let token = token {
22 | NotificationCenter.default.post(name: .capacitorDidRegisterForRemoteNotifications, object: token)
23 | }
24 | })
25 | }
26 |
27 | func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
28 | NotificationCenter.default.post(name: .capacitorDidFailToRegisterForRemoteNotifications, object: error)
29 | }
30 |
31 | func applicationWillResignActive(_ application: UIApplication) {
32 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
33 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
34 | }
35 |
36 | func applicationDidEnterBackground(_ application: UIApplication) {
37 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
38 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
39 | }
40 |
41 | func applicationWillEnterForeground(_ application: UIApplication) {
42 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
43 | }
44 |
45 | func applicationDidBecomeActive(_ application: UIApplication) {
46 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
47 | }
48 |
49 | func applicationWillTerminate(_ application: UIApplication) {
50 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
51 | }
52 |
53 | func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
54 | // Called when the app was launched with a url. Feel free to add additional processing here,
55 | // but if you want the App API to support tracking app url opens, make sure to keep this call
56 | return ApplicationDelegateProxy.shared.application(app, open: url, options: options)
57 | }
58 |
59 | func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
60 | // Called when the app was launched with an activity, including Universal Links.
61 | // Feel free to add additional processing here, but if you want the App API to support
62 | // tracking app url opens, make sure to keep this call
63 | return ApplicationDelegateProxy.shared.application(application, continue: userActivity, restorationHandler: restorationHandler)
64 | }
65 |
66 |
67 | }
68 |
69 |
--------------------------------------------------------------------------------
/angular.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3 | "version": 1,
4 | "defaultProject": "app",
5 | "newProjectRoot": "projects",
6 | "projects": {
7 | "app": {
8 | "root": "",
9 | "sourceRoot": "src",
10 | "projectType": "application",
11 | "prefix": "app",
12 | "schematics": {},
13 | "architect": {
14 | "build": {
15 | "builder": "@angular-devkit/build-angular:browser",
16 | "options": {
17 | "outputPath": "www",
18 | "index": "src/index.html",
19 | "main": "src/main.ts",
20 | "polyfills": "src/polyfills.ts",
21 | "tsConfig": "tsconfig.app.json",
22 | "assets": [
23 | {
24 | "glob": "**/*",
25 | "input": "src/assets",
26 | "output": "assets"
27 | },
28 | {
29 | "glob": "**/*.svg",
30 | "input": "node_modules/ionicons/dist/ionicons/svg",
31 | "output": "./svg"
32 | }
33 | ],
34 | "styles": [
35 | "src/theme/variables.scss",
36 | "src/global.scss"
37 | ],
38 | "scripts": [],
39 | "vendorChunk": true,
40 | "extractLicenses": false,
41 | "buildOptimizer": false,
42 | "sourceMap": true,
43 | "optimization": false,
44 | "namedChunks": true
45 | },
46 | "configurations": {
47 | "production": {
48 | "fileReplacements": [
49 | {
50 | "replace": "src/environments/environment.ts",
51 | "with": "src/environments/environment.prod.ts"
52 | }
53 | ],
54 | "optimization": true,
55 | "outputHashing": "all",
56 | "sourceMap": false,
57 | "namedChunks": false,
58 | "aot": true,
59 | "extractLicenses": true,
60 | "vendorChunk": false,
61 | "buildOptimizer": true,
62 | "budgets": [
63 | {
64 | "type": "initial",
65 | "maximumWarning": "2mb",
66 | "maximumError": "5mb"
67 | }
68 | ]
69 | },
70 | "ci": {
71 | "progress": false
72 | }
73 | }
74 | },
75 | "serve": {
76 | "builder": "@angular-devkit/build-angular:dev-server",
77 | "options": {
78 | "browserTarget": "app:build"
79 | },
80 | "configurations": {
81 | "production": {
82 | "browserTarget": "app:build:production"
83 | },
84 | "ci": {}
85 | }
86 | },
87 | "extract-i18n": {
88 | "builder": "@angular-devkit/build-angular:extract-i18n",
89 | "options": {
90 | "browserTarget": "app:build"
91 | }
92 | },
93 | "test": {
94 | "builder": "@angular-devkit/build-angular:karma",
95 | "options": {
96 | "main": "src/test.ts",
97 | "polyfills": "src/polyfills.ts",
98 | "tsConfig": "tsconfig.spec.json",
99 | "karmaConfig": "karma.conf.js",
100 | "styles": [],
101 | "scripts": [],
102 | "assets": [
103 | {
104 | "glob": "favicon.ico",
105 | "input": "src/",
106 | "output": "/"
107 | },
108 | {
109 | "glob": "**/*",
110 | "input": "src/assets",
111 | "output": "/assets"
112 | }
113 | ]
114 | },
115 | "configurations": {
116 | "ci": {
117 | "progress": false,
118 | "watch": false
119 | }
120 | }
121 | },
122 | "lint": {
123 | "builder": "@angular-eslint/builder:lint",
124 | "options": {
125 | "lintFilePatterns": [
126 | "src/**/*.ts",
127 | "src/**/*.html"
128 | ]
129 | }
130 | },
131 | "e2e": {
132 | "builder": "@angular-devkit/build-angular:protractor",
133 | "options": {
134 | "protractorConfig": "e2e/protractor.conf.js",
135 | "devServerTarget": "app:serve"
136 | },
137 | "configurations": {
138 | "production": {
139 | "devServerTarget": "app:serve:production"
140 | },
141 | "ci": {
142 | "devServerTarget": "app:serve:ci"
143 | }
144 | }
145 | }
146 | }
147 | }
148 | },
149 | "cli": {
150 | "defaultCollection": "@ionic/angular-toolkit"
151 | },
152 | "schematics": {
153 | "@ionic/angular-toolkit:component": {
154 | "styleext": "scss"
155 | },
156 | "@ionic/angular-toolkit:page": {
157 | "styleext": "scss"
158 | }
159 | }
160 | }
--------------------------------------------------------------------------------