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);
}
});












share|improve this question






















  • 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















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);
}
});












share|improve this question






















  • 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













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);
}
});












share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]