-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: loading of session form in wizard step 5 #5843
Merged
Merged
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
4a4aa4d
fix: loading of session form in wizars step5
maze-runnar 1710823
f
maze-runnar bc701fe
async await
maze-runnar 12418e2
-
maze-runnar 5d1e42a
fix
maze-runnar 99ca5fd
commit msg without a ususal level of sarcasm
maze-runnar 899d1dd
moving to async
maze-runnar 5500088
f
maze-runnar 5913ac2
--
maze-runnar cb146a4
s
maze-runnar 8ad15bd
Update app/routes/events/view/edit/sessions-speakers.js
iamareebjamal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import classic from 'ember-classic-decorator'; | ||
import Route from '@ember/routing/route'; | ||
import EventWizardMixin from 'open-event-frontend/mixins/event-wizard'; | ||
import { allSettled } from 'rsvp'; | ||
import RSVP, { allSettled } from 'rsvp'; | ||
|
||
@classic | ||
export default class SessionsSpeakersRoute extends Route.extend(EventWizardMixin) { | ||
|
@@ -14,7 +14,19 @@ export default class SessionsSpeakersRoute extends Route.extend(EventWizardMixin | |
const tracksPromise = data.event.get('tracks'); | ||
const microlocationsPromise = data.event.get('microlocations'); | ||
const sessionTypesPromise = data.event.get('sessionTypes'); | ||
const speakersCallPromise = this.getOrCreate(data.event, 'speakersCall', 'speakers-call'); | ||
const speakersCallPromise = new RSVP.Promise(async resolve => { | ||
await data.event | ||
.get('speakersCall') | ||
.then(relationshipRecord => { | ||
resolve(relationshipRecord); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This then call is redundant There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. after removing then, the session page isn't loading |
||
}) | ||
.catch(async() => { | ||
const record = await this.store.createRecord('speakers-call', { | ||
event: data.event | ||
}); | ||
resolve(record); | ||
}); | ||
}); | ||
// Only get session/speaker custom forms. | ||
const customFormFilterOptions = [{ | ||
or: [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't await here, it's useless and will block the loading. Move these statements in another function and await in that function. No await should be there in model function