How to refresh data on Angular Modal from parent while open
up vote
0
down vote
favorite
The modal dialog is initialized by open method, the initial data is passed in by the second parameter MAT_DIALOG_DATA of the open method. There is a callback to execute on afterClosed() method. However, Inside the Modal, I have a date-picker. When date is changed I want to retrieve new data from parent. I can definitely call from Modal to service to get the data but this causes redundancy since parent has this call during data initialization too. Please advise what is the proper way of emit an event to the parent while the dialog is open, and receive the data back. Here is my code to initialize the modal for your reference.
let dialogRef1 = this.dialog.open(RentalEditHourlyComponent, {
data: {
rentalItemId: this.rentalItemId,
date: $event.date,
timeSlots: this.availableTimeSlots,
cards: this.selectedCalendarCards.filter(o => String(o.rentalItemId) === this.rentalItemId),
reservations: this.selectedCalendarCards
}
});
dialogRef1.afterClosed().subscribe(result => {
let rental = this.rentalItemHeader;
if (result !== undefined) {
let model = new CalendarCard({
locationId: this.locationId as number,
locationDisplay: rental.LocationName,
rentalItemId: rental.Id,
date: result.date,
startTime: result.startTime,
endTime: result.endTime,
dateDisplay: moment(result.date).format('MM/DD/YYYY'),
timeDisplay: moment(result.startTime).format('hh:mm A') + ' - ' + moment(result.endTime).format('hh:mm A'),
id: result.id,
rentalItemDisplay: rental.Name,
halfDaySelectedIndex: 0,
fromDate: null,
toDate: null
});
this.addCalendarCard(model);
}
});
angular typescript modal-dialog eventemitter
add a comment |
up vote
0
down vote
favorite
The modal dialog is initialized by open method, the initial data is passed in by the second parameter MAT_DIALOG_DATA of the open method. There is a callback to execute on afterClosed() method. However, Inside the Modal, I have a date-picker. When date is changed I want to retrieve new data from parent. I can definitely call from Modal to service to get the data but this causes redundancy since parent has this call during data initialization too. Please advise what is the proper way of emit an event to the parent while the dialog is open, and receive the data back. Here is my code to initialize the modal for your reference.
let dialogRef1 = this.dialog.open(RentalEditHourlyComponent, {
data: {
rentalItemId: this.rentalItemId,
date: $event.date,
timeSlots: this.availableTimeSlots,
cards: this.selectedCalendarCards.filter(o => String(o.rentalItemId) === this.rentalItemId),
reservations: this.selectedCalendarCards
}
});
dialogRef1.afterClosed().subscribe(result => {
let rental = this.rentalItemHeader;
if (result !== undefined) {
let model = new CalendarCard({
locationId: this.locationId as number,
locationDisplay: rental.LocationName,
rentalItemId: rental.Id,
date: result.date,
startTime: result.startTime,
endTime: result.endTime,
dateDisplay: moment(result.date).format('MM/DD/YYYY'),
timeDisplay: moment(result.startTime).format('hh:mm A') + ' - ' + moment(result.endTime).format('hh:mm A'),
id: result.id,
rentalItemDisplay: rental.Name,
halfDaySelectedIndex: 0,
fromDate: null,
toDate: null
});
this.addCalendarCard(model);
}
});
angular typescript modal-dialog eventemitter
You can create a sharing service, a static method in your modal for your input, or maybe even same memory references (or async observables) to do that. Consider making a Minimal, Complete, and Verifiable example of your issue, so that we can play with it and show you 2-3 ways of doing that.
– trichetriche
Nov 19 at 14:50
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
The modal dialog is initialized by open method, the initial data is passed in by the second parameter MAT_DIALOG_DATA of the open method. There is a callback to execute on afterClosed() method. However, Inside the Modal, I have a date-picker. When date is changed I want to retrieve new data from parent. I can definitely call from Modal to service to get the data but this causes redundancy since parent has this call during data initialization too. Please advise what is the proper way of emit an event to the parent while the dialog is open, and receive the data back. Here is my code to initialize the modal for your reference.
let dialogRef1 = this.dialog.open(RentalEditHourlyComponent, {
data: {
rentalItemId: this.rentalItemId,
date: $event.date,
timeSlots: this.availableTimeSlots,
cards: this.selectedCalendarCards.filter(o => String(o.rentalItemId) === this.rentalItemId),
reservations: this.selectedCalendarCards
}
});
dialogRef1.afterClosed().subscribe(result => {
let rental = this.rentalItemHeader;
if (result !== undefined) {
let model = new CalendarCard({
locationId: this.locationId as number,
locationDisplay: rental.LocationName,
rentalItemId: rental.Id,
date: result.date,
startTime: result.startTime,
endTime: result.endTime,
dateDisplay: moment(result.date).format('MM/DD/YYYY'),
timeDisplay: moment(result.startTime).format('hh:mm A') + ' - ' + moment(result.endTime).format('hh:mm A'),
id: result.id,
rentalItemDisplay: rental.Name,
halfDaySelectedIndex: 0,
fromDate: null,
toDate: null
});
this.addCalendarCard(model);
}
});
angular typescript modal-dialog eventemitter
The modal dialog is initialized by open method, the initial data is passed in by the second parameter MAT_DIALOG_DATA of the open method. There is a callback to execute on afterClosed() method. However, Inside the Modal, I have a date-picker. When date is changed I want to retrieve new data from parent. I can definitely call from Modal to service to get the data but this causes redundancy since parent has this call during data initialization too. Please advise what is the proper way of emit an event to the parent while the dialog is open, and receive the data back. Here is my code to initialize the modal for your reference.
let dialogRef1 = this.dialog.open(RentalEditHourlyComponent, {
data: {
rentalItemId: this.rentalItemId,
date: $event.date,
timeSlots: this.availableTimeSlots,
cards: this.selectedCalendarCards.filter(o => String(o.rentalItemId) === this.rentalItemId),
reservations: this.selectedCalendarCards
}
});
dialogRef1.afterClosed().subscribe(result => {
let rental = this.rentalItemHeader;
if (result !== undefined) {
let model = new CalendarCard({
locationId: this.locationId as number,
locationDisplay: rental.LocationName,
rentalItemId: rental.Id,
date: result.date,
startTime: result.startTime,
endTime: result.endTime,
dateDisplay: moment(result.date).format('MM/DD/YYYY'),
timeDisplay: moment(result.startTime).format('hh:mm A') + ' - ' + moment(result.endTime).format('hh:mm A'),
id: result.id,
rentalItemDisplay: rental.Name,
halfDaySelectedIndex: 0,
fromDate: null,
toDate: null
});
this.addCalendarCard(model);
}
});
let dialogRef1 = this.dialog.open(RentalEditHourlyComponent, {
data: {
rentalItemId: this.rentalItemId,
date: $event.date,
timeSlots: this.availableTimeSlots,
cards: this.selectedCalendarCards.filter(o => String(o.rentalItemId) === this.rentalItemId),
reservations: this.selectedCalendarCards
}
});
dialogRef1.afterClosed().subscribe(result => {
let rental = this.rentalItemHeader;
if (result !== undefined) {
let model = new CalendarCard({
locationId: this.locationId as number,
locationDisplay: rental.LocationName,
rentalItemId: rental.Id,
date: result.date,
startTime: result.startTime,
endTime: result.endTime,
dateDisplay: moment(result.date).format('MM/DD/YYYY'),
timeDisplay: moment(result.startTime).format('hh:mm A') + ' - ' + moment(result.endTime).format('hh:mm A'),
id: result.id,
rentalItemDisplay: rental.Name,
halfDaySelectedIndex: 0,
fromDate: null,
toDate: null
});
this.addCalendarCard(model);
}
});
let dialogRef1 = this.dialog.open(RentalEditHourlyComponent, {
data: {
rentalItemId: this.rentalItemId,
date: $event.date,
timeSlots: this.availableTimeSlots,
cards: this.selectedCalendarCards.filter(o => String(o.rentalItemId) === this.rentalItemId),
reservations: this.selectedCalendarCards
}
});
dialogRef1.afterClosed().subscribe(result => {
let rental = this.rentalItemHeader;
if (result !== undefined) {
let model = new CalendarCard({
locationId: this.locationId as number,
locationDisplay: rental.LocationName,
rentalItemId: rental.Id,
date: result.date,
startTime: result.startTime,
endTime: result.endTime,
dateDisplay: moment(result.date).format('MM/DD/YYYY'),
timeDisplay: moment(result.startTime).format('hh:mm A') + ' - ' + moment(result.endTime).format('hh:mm A'),
id: result.id,
rentalItemDisplay: rental.Name,
halfDaySelectedIndex: 0,
fromDate: null,
toDate: null
});
this.addCalendarCard(model);
}
});
angular typescript modal-dialog eventemitter
angular typescript modal-dialog eventemitter
asked Nov 19 at 14:35
HanYi Zhang
1241618
1241618
You can create a sharing service, a static method in your modal for your input, or maybe even same memory references (or async observables) to do that. Consider making a Minimal, Complete, and Verifiable example of your issue, so that we can play with it and show you 2-3 ways of doing that.
– trichetriche
Nov 19 at 14:50
add a comment |
You can create a sharing service, a static method in your modal for your input, or maybe even same memory references (or async observables) to do that. Consider making a Minimal, Complete, and Verifiable example of your issue, so that we can play with it and show you 2-3 ways of doing that.
– trichetriche
Nov 19 at 14:50
You can create a sharing service, a static method in your modal for your input, or maybe even same memory references (or async observables) to do that. Consider making a Minimal, Complete, and Verifiable example of your issue, so that we can play with it and show you 2-3 ways of doing that.
– trichetriche
Nov 19 at 14:50
You can create a sharing service, a static method in your modal for your input, or maybe even same memory references (or async observables) to do that. Consider making a Minimal, Complete, and Verifiable example of your issue, so that we can play with it and show you 2-3 ways of doing that.
– trichetriche
Nov 19 at 14:50
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376872%2fhow-to-refresh-data-on-angular-modal-from-parent-while-open%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You can create a sharing service, a static method in your modal for your input, or maybe even same memory references (or async observables) to do that. Consider making a Minimal, Complete, and Verifiable example of your issue, so that we can play with it and show you 2-3 ways of doing that.
– trichetriche
Nov 19 at 14:50