diff --git a/.dockerignore b/.dockerignore index 325b5610..a5acced7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,3 +2,4 @@ node_modules .git .gitignore dist +data diff --git a/.gitignore b/.gitignore index 4223260e..eac6aedb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .env +data # compiled output /dist /node_modules diff --git a/Dockerfile b/Dockerfile index 3ff3c4c0..e6f59824 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ COPY --from=builder /app/apps/server/package.json /app/apps/server/package.json COPY --from=builder /app/package.json /app/package.json COPY --from=builder /app/packages/ /app/packages/ COPY --from=builder /app/pnpm*.yaml /app/ - +# should optimize packages RUN npm install -g pnpm RUN chown -R node:node /app @@ -31,9 +31,9 @@ USER node RUN pnpm install --frozen-lockfile --prod -RUN mkdir -p /app/apps/server/data/storage +RUN mkdir -p /app/data/storage -VOLUME ["/app/apps/server/data/storage"] +VOLUME ["/app/data/storage"] EXPOSE 3000 diff --git a/apps/client/src/features/editor/components/image/image-view.tsx b/apps/client/src/features/editor/components/image/image-view.tsx index 46fa80c3..be6888bc 100644 --- a/apps/client/src/features/editor/components/image/image-view.tsx +++ b/apps/client/src/features/editor/components/image/image-view.tsx @@ -5,7 +5,7 @@ import { getFileUrl } from "@/lib/config.ts"; export default function ImageView(props: NodeViewProps) { const { node, selected } = props; - const { src, width, align } = node.attrs; + const { src, width, align, title } = node.attrs; const flexJustifyContent = useMemo(() => { if (align === "center") return "center"; @@ -26,6 +26,7 @@ export default function ImageView(props: NodeViewProps) { fit="contain" w={width} src={getFileUrl(src)} + alt={title} className={selected ? "ProseMirror-selectednode" : ""} /> diff --git a/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx b/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx index 8da34fb4..fecbcea3 100644 --- a/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx +++ b/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx @@ -11,7 +11,7 @@ import { notifications } from "@mantine/notifications"; import useUserRole from "@/hooks/use-user-role.tsx"; const formSchema = z.object({ - name: z.string().nonempty("Workspace name cannot be blank"), + name: z.string().min(4).nonempty("Workspace name cannot be blank"), }); type FormValues = z.infer; diff --git a/apps/server/src/common/helpers/constants.ts b/apps/server/src/common/helpers/constants.ts index 68399626..6f4b30bd 100644 --- a/apps/server/src/common/helpers/constants.ts +++ b/apps/server/src/common/helpers/constants.ts @@ -1,2 +1,11 @@ +import * as path from 'path'; + export const APP_DATA_PATH = 'data'; -export const LOCAL_STORAGE_PATH = `${APP_DATA_PATH}/storage`; +const LOCAL_STORAGE_DIR = `${APP_DATA_PATH}/storage`; + +export const LOCAL_STORAGE_PATH = path.resolve( + process.cwd(), + '..', + '..', + LOCAL_STORAGE_DIR, +); diff --git a/apps/server/src/integrations/storage/providers/storage.provider.ts b/apps/server/src/integrations/storage/providers/storage.provider.ts index 8a796fcf..1c2f2e7c 100644 --- a/apps/server/src/integrations/storage/providers/storage.provider.ts +++ b/apps/server/src/integrations/storage/providers/storage.provider.ts @@ -13,6 +13,7 @@ import { import { LocalDriver, S3Driver } from '../drivers'; import * as process from 'node:process'; import { LOCAL_STORAGE_PATH } from '../../../common/helpers'; +import path from 'path'; function createStorageDriver(disk: StorageConfig): StorageDriver { switch (disk.driver) { @@ -35,7 +36,7 @@ export const storageDriverConfigProvider = { return { driver, config: { - storagePath: process.cwd() + '/' + LOCAL_STORAGE_PATH, + storagePath: LOCAL_STORAGE_PATH, }, };