AFFiNE/packages/frontend
liuyi 26db1d436d
refactor(server): server errors (#5741)
standardize the error raising in both GraphQL Resolvers and Controllers.

Now, All user aware errors should be throwed with `HttpException`'s variants, for example `NotFoundException`.

> Directly throwing `GraphQLError` are forbidden.
The GraphQL errorFormatter will handle it automatically and set `code`, `status` in error extensions.

At the same time, the frontend `GraphQLError` should be imported from `@affine/graphql`, which introduce a better error extensions type.

----
controller example:
```js
@Get('/docs/${id}')
doc() {
  // ...
  // imported from '@nestjs/common'
  throw new NotFoundException('Doc is not found.');
  // ...
}
```
the above will response as:
```
status: 404 Not Found
{
  "message": "Doc is not found.",
  "statusCode": 404,
  "error": "Not Found"
}
```

resolver example:
```js
@Mutation()
invite() {
  // ...
  throw new PayloadTooLargeException('Workspace seats is full.')
  // ...
}
```

the above will response as:
```
status: 200 Ok
{
  "data": null,
  "errors": [
    {
      "message": "Workspace seats is full.",
      "extensions": {
        "code": 404,
        "status": "Not Found"
      }
    }
  ]
}
```

for frontend GraphQLError user-friend, a helper function introduced:

```js
import { findGraphQLError } from '@affine/graphql'

fetch(query)
  .catch(errOrArr => {
    const e = findGraphQLError(errOrArr, e => e.extensions.code === 404)
    if (e) {
      // handle
    }
})
```
2024-01-31 08:43:03 +00:00
..
component refactor(infra): migrate to new infra (#5565) 2024-01-30 07:16:39 +00:00
core refactor(server): server errors (#5741) 2024-01-31 08:43:03 +00:00
electron refactor(infra): migrate to new infra (#5565) 2024-01-30 07:16:39 +00:00
electron-api chore: update base version to 0.12.0 (#5695) 2024-01-25 05:17:35 +00:00
graphql refactor(server): server errors (#5741) 2024-01-31 08:43:03 +00:00
i18n feat(core): append to today's joruanl via CMDK (#5692) 2024-01-30 23:08:25 +08:00
native chore: update base version to 0.12.0 (#5695) 2024-01-25 05:17:35 +00:00
templates fix: path issue on Windows (#5725) 2024-01-29 07:18:25 +00:00
workspace-impl refactor(server): server errors (#5741) 2024-01-31 08:43:03 +00:00