teable/monorepo.code-workspace
Mike 5cf73f2c3e
feat: support record comment (#910)
* feat: comment backend initialize

* feat: comment openapi initialize

* feat: support comment reaction and notify

* chore: expose `HoverPortal` component

* chore: update `@teable/icons`

* feat: create comment prisma tempalte

* feat: generate comment open-api

* feat: support comment advance feature

* feat: comment notify user list add quote creator and mention user

* feat: grid support display comment count

* chore: add comment e2e test suit

* fix: fix type definition clash

* chore: add comment migration

* fix: separate partial comment type definition for zod2openapi unknown error

* fix: import `@teable/icons` error when `moduleResolution` set to `Bundler`

* fix: sdk i18n error code

* feat: rename comment subscribe table name and generate migration

* feat: add comment reaction thumbsdown

* fix: add presence unsubscribe judgment relative to comment

* chore: css adjustment

fix: zod2openapi error by separate type define

* fix: comment e2e error

* feat: add composite index for comment list table

* feat: add record comment count query api

* fix: reply to someone should be receive the notification

* fix: comment count inaccurate when add view group condition

* fix: abundant field expand card display

* feat: @ mention user filter self

* fix: not found subscribe throw null
2024-09-20 11:07:20 +08:00

89 lines
1.9 KiB
Plaintext

{
"folders": [
{
"name": "nextjs-app",
"path": "apps/nextjs-app",
},
{
"name": "nestjs-backend",
"path": "apps/nestjs-backend",
},
{
"name": "common-i18n",
"path": "packages/common-i18n",
},
{
"name": "sdk",
"path": "packages/sdk",
},
{
"name": "core",
"path": "packages/core",
},
{
"name": "db-main-prisma",
"path": "packages/db-main-prisma",
},
{
"name": "eslint-config-bases",
"path": "packages/eslint-config-bases",
},
{
"name": "ui-lib",
"path": "packages/ui-lib",
},
{
"name": "icons",
"path": "packages/icons",
},
{
"name": "openapi",
"path": "packages/openapi",
},
{
"name": "root",
"path": ".",
},
],
"extensions": {
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"],
},
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
// Disable vscode formatting for js,jsx,ts,tsx files
// to allow dbaeumer.vscode-eslint to format them
"[javascript]": {
"editor.formatOnSave": false,
},
"eslint.alwaysShowStatus": true,
// https://github.com/Microsoft/vscode-eslint#mono-repository-setup
"eslint.workingDirectories": [
"./apps/nextjs-app",
"./apps/nestjs-backend",
"./packages/common-i18n",
"./packages/sdk",
"./packages/core",
"./packages/icons",
"./packages/db-main-prisma",
"./packages/eslint-config-bases",
"./packages/ui-lib",
],
"cSpell.words": [
"combobox",
"jschardet",
"overscan",
"sharedb",
"tada",
"Teable",
"thumbsdown",
"thumbsup",
"udecode",
"zustand",
],
},
}