How to refresh data on Angular Modal from parent while open
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 |
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 '18 at 14:50
add a comment |
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 '18 at 14:35
HanYi ZhangHanYi 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 '18 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 '18 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 '18 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 '18 at 14:50
add a comment |
0
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',
autoActivateHeartbeat: false,
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
});
}
});
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
0
active
oldest
votes
0
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.
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 '18 at 14:50