-
Notifications
You must be signed in to change notification settings - Fork 25
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
Failed messages to typescript #1769
Conversation
b751e09
to
136864b
Compare
Will probably need to move MessageHeader interface to a separate file and may need to break it up into multiple types
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.
A few comments so far
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
This reverts commit 20ce2fc.
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/LastTenOperations.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/MessageView.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/MessageView.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/MessageView.vue
Outdated
Show resolved
Hide resolved
src/ServicePulse.Host/vue/src/components/failedmessages/MessageView.vue
Outdated
Show resolved
Hide resolved
…etedMessages.vue Co-authored-by: Phil Bastian <155411597+PhilBastian@users.noreply.github.com>
…nOperations.vue Co-authored-by: Phil Bastian <155411597+PhilBastian@users.noreply.github.com>
…eView.vue Co-authored-by: Phil Bastian <155411597+PhilBastian@users.noreply.github.com>
* Convert EditRetryDialog to Typescript * Add the optional chaining operator back into the template * Update emit to typescript * Fixing errors after rebase * Update src/ServicePulse.Host/vue/src/components/failedmessages/EditRetryDialog.vue Co-authored-by: John Simons <john.simons@particular.net> * fixing v-for loop --------- Co-authored-by: Christian <christian.quiros+github@gmail.com> Co-authored-by: Christian <christian.quiros@particular.net> Co-authored-by: John Simons <john.simons@particular.net>
…MessageGroups.vue Co-authored-by: Travis Nickels <travis.nickels@particular.net>
migrate AllFailedMessages control to typescript
All changes made to config.ts files have been reverted. |
const response = await useFetchFromServiceControl(`archive/groups/id/${groupId}`); | ||
const data = await response.json(); | ||
async function loadGroupDetails(groupId: string) { | ||
const [, data] = await useTypedFetchFromServiceControl<FailureGroup>(`archive/groups/id/${groupId}`); |
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.
Unfortunately it may be too late, but it would be nice for all the URLs to be typed from routeLinks
src/ServicePulse.Host/vue/src/components/failedmessages/AllDeletedMessages.vue
Show resolved
Hide resolved
…r/ServicePulse into failed-messages-to-vue
Migrated all components in the failed messages area to TypeScript and remedy multiple minor issues in this area