/iQ-univesity-barcode/src/pages/speaker/speaker-detail/speaker-detail.ts

https://bitbucket.org/PrajwalGP/inqude-university-public-demo · TypeScript · 214 lines · 198 code · 12 blank · 4 comment · 22 complexity · cf41f2f14731904552f5f6ddf30bb85d MD5 · raw file

  1. import { Component } from '@angular/core';
  2. import { App, ActionSheetController, AlertController, Config, LoadingController, ModalController, NavController, NavParams, Platform, ToastController, ViewController } from 'ionic-angular';
  3. import { AngularFire } from 'angularfire2';
  4. import { AngularFireOfflineDatabase } from 'angularfire2-offline/database';
  5. // import { SessionDetailPage } from '../../session/session-detail/session-detail';
  6. import { SpeakerAddPage } from '../speaker-add/speaker-add';
  7. import { HelperService } from '../../../providers/helperService';
  8. import * as _ from 'underscore';
  9. import { UserData } from '../../../providers/user-data';
  10. @Component({
  11. selector: 'page-speaker-detail',
  12. templateUrl: 'speaker-detail.html',
  13. providers: [HelperService]
  14. })
  15. export class SpeakerDetailPage {
  16. speaker: any = { sessions: [] };
  17. universityRef: any = '';
  18. personaRef: any;
  19. constructor(
  20. public af: AngularFire,
  21. public afoDatabase: AngularFireOfflineDatabase,
  22. public appCtrl: App,
  23. public actionSheetCtrl: ActionSheetController,
  24. public alertCtrl: AlertController,
  25. public config: Config,
  26. public helper: HelperService,
  27. public loadingCtrl: LoadingController,
  28. public modalCtrl: ModalController,
  29. public navCtrl: NavController,
  30. public navParams: NavParams,
  31. public platform: Platform,
  32. public toastCtrl: ToastController,
  33. public userData: UserData,
  34. public viewCtrl: ViewController
  35. ) {
  36. this.userData.getUniversityId()
  37. .then((universityId) => {
  38. this.universityRef = "universitiesData/" + universityId;
  39. let personaId = this.navParams.get('speakerId');
  40. if (personaId) {
  41. this.getPersona(personaId)
  42. .then(() => {
  43. if (this.speaker.sessionIds) {
  44. let promises: any = [];
  45. this.speaker.sessions = [];
  46. this.speaker.sessionIds.forEach((sessionId: any) => {
  47. let p = this.getSessionById(sessionId);
  48. p.then((session: any) => {
  49. if (session) {
  50. this.speaker.sessions.push(session);
  51. }
  52. });
  53. promises.push(p);
  54. });
  55. Promise.all(promises)
  56. .then(() => {
  57. this.speaker.sessions = _.sortBy(this.speaker.sessions, 'EventStartDate');
  58. }, (e) => {
  59. console.log(e);
  60. })
  61. }
  62. });
  63. }
  64. })
  65. }
  66. // get persona
  67. getPersona(speakerId: any) {
  68. return new Promise((resolve, reject) => {
  69. this.personaRef = this.afoDatabase.object(this.universityRef + '/speakers/' + speakerId, { preserveSnapshot: true })
  70. .subscribe((persona: any) => {
  71. console.log(persona)
  72. if (persona) {
  73. this.speaker = persona;
  74. }
  75. resolve();
  76. });
  77. });
  78. }
  79. // get all sessions that current persona is part of
  80. getSessionById(sessionId: any) {
  81. return new Promise((resolve, reject) => {
  82. this.afoDatabase.object(this.universityRef + '/events/' + sessionId, { preserveSnapshot: true })
  83. .subscribe((session: any) => {
  84. if (session.$exists()) {
  85. session.startTime = this.helper.convertFromUtcToTz(session.startTime);
  86. session.endTime = this.helper.convertFromUtcToTz(session.endTime);
  87. resolve(session);
  88. } else {
  89. resolve();
  90. }
  91. });
  92. });
  93. }
  94. goToSessionDetail(session: any) {
  95. // this.navCtrl.push(SessionDetailPage, { sessionId: session.id });
  96. }
  97. editSpeaker() {
  98. let modal = this.modalCtrl.create(SpeakerAddPage, { "speakerId": this.speaker.id });
  99. modal.present();
  100. }
  101. showActionSheet() {
  102. let actionSheet = this.actionSheetCtrl.create({
  103. title: 'Options',
  104. buttons: [{
  105. text: 'Edit Speaker',
  106. icon: !this.platform.is('ios') ? 'create' : null,
  107. handler: () => {
  108. let modal = this.modalCtrl.create(SpeakerAddPage, { "speakerId": this.speaker.id });
  109. modal.present();
  110. }
  111. },
  112. {
  113. text: 'Delete Speaker',
  114. icon: !this.platform.is('ios') ? 'trash' : null,
  115. role: 'destructive',
  116. handler: () => {
  117. let self = this;
  118. this.helper.isAdmin()
  119. .then(() => {
  120. let confirm = this.alertCtrl.create({
  121. title: 'Are you sure ?',
  122. message: 'Deleting this cannot be undone?',
  123. buttons: [
  124. {
  125. text: 'Cancel'
  126. },
  127. {
  128. text: 'Continue',
  129. handler: () => {
  130. let loading = this.loadingCtrl.create({});
  131. return new Promise((resolve, reject) => {
  132. if (self.speaker.sessionIds) {
  133. self.speaker.sessionIds.forEach((sessionId: any) => {
  134. self.af.database.object(self.universityRef + '/events/' + sessionId, { preserveSnapshot: true })
  135. .subscribe((data) => {
  136. let session = data.val();
  137. let index: number;
  138. if (session.personaIds) {
  139. Object.keys(session.personaIds).forEach((type: any) => {
  140. index = session.personaIds[type].indexOf(self.speaker.id);
  141. if (index > -1) {
  142. session.personaIds[type].splice(index, 1);
  143. if (session.personaIds[type].legnth == 0) {
  144. delete session.personaIds[type];
  145. }
  146. }
  147. })
  148. self.af.database.object(self.universityRef + '/events/' + session.EventId)
  149. .set(session)
  150. }
  151. })
  152. })
  153. }
  154. resolve()
  155. }).then(() => {
  156. self.af.database.object(self.universityRef + '/speakers/' + self.speaker.id)
  157. .remove().then(() => {
  158. let toast = self.toastCtrl.create({
  159. message: 'speaker deleted successfully',
  160. duration: 3000
  161. });
  162. loading.dismiss();
  163. toast.present();
  164. self.viewCtrl.dismiss();
  165. });
  166. })
  167. }
  168. }
  169. ]
  170. });
  171. confirm.present();
  172. })
  173. .catch((err) => {
  174. console.log('err occured', err);
  175. })
  176. }
  177. },
  178. {
  179. text: 'Cancel',
  180. role: 'cancel',
  181. icon: !this.platform.is('ios') ? 'close' : null,
  182. handler: () => { }
  183. }
  184. ]
  185. });
  186. actionSheet.present();
  187. }
  188. getSessionStatus(session: any) {
  189. if (this.helper.isSessionLive(session)) {
  190. return 'session-live';
  191. }
  192. else if (this.helper.isSessionOver(session)) {
  193. return 'session-over';
  194. }
  195. return '';
  196. }
  197. ngOnDestroy() {
  198. if (this.personaRef) {
  199. this.personaRef.unsubscribe();
  200. }
  201. }
  202. }