Skip to content
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

fix: Redirect to 404 Page When Note is Not Found #277

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Conversation

Tushar504
Copy link

@Tushar504 Tushar504 linked an issue Nov 16, 2024 that may be closed by this pull request
@Tushar504 Tushar504 requested review from neSpecc and e11sy November 16, 2024 12:02
@Tushar504 Tushar504 requested a review from neSpecc November 19, 2024 15:51
src/domain/entities/errors/ApiError.ts Outdated Show resolved Hide resolved
src/application/services/useNote.ts Outdated Show resolved Hide resolved
@Tushar504 Tushar504 requested a review from e11sy November 20, 2024 16:28
Comment on lines 187 to 197
path: '/error',
component: ErrorPage,
meta: {
layout: 'fullpage',
pageTitleI18n: 'pages.notFound',
pageTitleI18n: 'pages.error',
discardTabOnLeave: true,
},
props: {
code: 404,
},
props: route => ({
code: route.query.code,
customMessage: route.query.message,
}),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

404 page was actually needed (this was a syntax for each unexpected url, that would show 404 page not found)

we need to create separate /error page, that should have statusCode property and show different info by different status code

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also better to use route.params for code prop

@Tushar504 Tushar504 requested a review from e11sy November 28, 2024 18:16
Comment on lines +3 to +7
/**
* Domain error thrown when unknown error occurs
*/
export default class ApiError extends DomainError {
/**
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think, that DomainError actually extends ApiError

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, currently it is not needed, I had created the ApiError to consider it as default error, to check api error response is instance of ApiError or not,

@Tushar504 Tushar504 requested a review from neSpecc December 12, 2024 15:41
src/application/router/routes.ts Outdated Show resolved Hide resolved
src/presentation/pages/Error.vue Outdated Show resolved Hide resolved
@Tushar504 Tushar504 requested a review from neSpecc December 26, 2024 09:02
@Tushar504 Tushar504 requested review from neSpecc and e11sy December 26, 2024 15:00
Comment on lines 167 to 169
/**
* @todo try-catch domain errors
*/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/**
* @todo try-catch domain errors
*/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Redirect to 404 Page When Note is Not Found
3 participants