-
Notifications
You must be signed in to change notification settings - Fork 173
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
Remove old todos #3851
Remove old todos #3851
Changes from all commits
2a4f45c
4ae0ad6
65b9eec
22da57e
6b3b41e
906f4c0
bae2262
02c8aa0
979eb53
2f438af
9dc1fee
d690337
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,15 +107,14 @@ export class ContainerService { | |
msg: LuigiInternalMessageID.SEND_CONTEXT_HANDSHAKE, | ||
context: targetCnt.context || {}, | ||
internal: {}, | ||
authData: targetCnt.authData || {}, | ||
authData: targetCnt.authData || {} | ||
}, | ||
'*' | ||
); | ||
break; | ||
case LuigiInternalMessageID.NAVIGATION_REQUEST: | ||
this.dispatch(Events.NAVIGATION_REQUEST, targetCnt, event.data.params); | ||
break; | ||
// TODO 1: handle alerts with ids on next iteration | ||
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. already handled |
||
case LuigiInternalMessageID.ALERT_REQUEST: | ||
this.dispatch(Events.ALERT_REQUEST, targetCnt, event); | ||
break; | ||
|
@@ -164,7 +163,6 @@ export class ContainerService { | |
case LuigiInternalMessageID.GET_CURRENT_ROUTE_REQUEST: | ||
this.dispatch(Events.GET_CURRENT_ROUTE_REQUEST, targetCnt, event); | ||
break; | ||
// TODO: discuss if actually needed as the only scenario is when microfrontend initially starts | ||
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. needed as it needs to fit to existing LuigiClient |
||
case LuigiInternalMessageID.NAVIGATION_COMPLETED_REPORT: | ||
this.dispatch(Events.NAVIGATION_COMPLETED_REPORT, targetCnt, event); | ||
break; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -364,7 +364,7 @@ export class WebComponentService { | |
|
||
if (wc.__postProcess) { | ||
const url = | ||
new URL(document.baseURI).origin === new URL(viewUrl, document.baseURI).origin // TODO: check if needed | ||
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. out of context |
||
new URL(document.baseURI).origin === new URL(viewUrl, document.baseURI).origin | ||
? new URL('./', new URL(viewUrl, document.baseURI)) | ||
: new URL('./', viewUrl); | ||
wc.__postProcess(ctx, clientAPI, url.origin + url.pathname); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -746,7 +746,6 @@ | |
msg: 'luigi.ux.alert.hide', | ||
id, | ||
dismissKey | ||
//TODO: update docu for this param | ||
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. outdated from long time ago |
||
}; | ||
IframeHelpers.sendMessageToIframe(iframe, message); | ||
} else if (alert.promise) { | ||
|
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.
missing context