@hywax/cms 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nuxt/cms/http-codes.ts +8 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +9 -9
- package/dist/runtime/components/InputUploraImage.vue.d.ts +2 -2
- package/dist/runtime/components/TablePanelFilters.vue.d.ts +1 -1
- package/dist/runtime/server/api/uplora/index.post.js +1 -1
- package/dist/runtime/server/utils/errors.js +1 -1
- package/dist/runtime/server/utils/validation.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const HTTP_CODE_BAD_REQUEST = '400: Неверный запрос'
|
|
2
|
+
export const HTTP_CODE_UNAUTHORIZED = '401: Не авторизован'
|
|
3
|
+
export const HTTP_CODE_FORBIDDEN = '403: Доступ запрещен'
|
|
4
|
+
export const HTTP_CODE_NOT_FOUND = '404: Не найдено'
|
|
5
|
+
export const HTTP_CODE_REQUEST_TIMEOUT = '408: Время ожидания запроса истекло'
|
|
6
|
+
export const HTTP_CODE_INTERNAL_SERVER_ERROR = '500: Внутренняя ошибка сервера'
|
|
7
|
+
export const HTTP_CODE_BAD_GATEWAY = '502: Ошибка шлюза'
|
|
8
|
+
export const HTTP_CODE_SERVICE_UNAVAILABLE = '503: Сервис недоступен'
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { snakeCase, kebabCase } from 'scule';
|
|
|
6
6
|
import { readFile, writeFile } from 'node:fs/promises';
|
|
7
7
|
|
|
8
8
|
const name = "@hywax/cms";
|
|
9
|
-
const version = "0.0.
|
|
9
|
+
const version = "0.0.15";
|
|
10
10
|
|
|
11
11
|
function createContext(options, nuxt) {
|
|
12
12
|
const { resolve } = createResolver(import.meta.url);
|
|
@@ -48,14 +48,14 @@ function transformHttpCodes(httpCodes) {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
function prepareAutoImports({ resolve, options, nuxt }) {
|
|
51
|
-
const httpCodesPath = resolve(nuxt.options.buildDir, "http-codes");
|
|
51
|
+
const httpCodesPath = resolve(nuxt.options.buildDir, "cms/http-codes");
|
|
52
52
|
const httpCodesImports = transformHttpCodes(options.httpCodes).map(({ code }) => ({ name: code, from: httpCodesPath }));
|
|
53
53
|
const sharedUtils = [
|
|
54
54
|
"avatar",
|
|
55
55
|
"dictionaries",
|
|
56
56
|
"image",
|
|
57
57
|
"slugify"
|
|
58
|
-
].map((name) =>
|
|
58
|
+
].map((name) => resolve(`./runtime/utils/${name}.ts`));
|
|
59
59
|
addComponentsDir({
|
|
60
60
|
path: resolve("./runtime/components"),
|
|
61
61
|
pathPrefix: false,
|
|
@@ -71,24 +71,24 @@ function prepareAutoImports({ resolve, options, nuxt }) {
|
|
|
71
71
|
addPlugin(resolve("./runtime/plugins/api"));
|
|
72
72
|
addImports([
|
|
73
73
|
...httpCodesImports,
|
|
74
|
-
...sharedUtils,
|
|
75
74
|
{ name: "docToMarkdown", from: resolve("./runtime/editor/markdown") },
|
|
76
75
|
{ name: "markdownToDoc", from: resolve("./runtime/editor/markdown") }
|
|
77
76
|
]);
|
|
78
77
|
addImportsDir([
|
|
78
|
+
...sharedUtils,
|
|
79
79
|
resolve("./runtime/composables")
|
|
80
80
|
]);
|
|
81
81
|
addServerImports([
|
|
82
82
|
...httpCodesImports,
|
|
83
|
-
...sharedUtils,
|
|
84
83
|
{ name: "docToMarkdown", from: resolve("./runtime/editor/markdown") },
|
|
85
84
|
{ name: "markdownToDoc", from: resolve("./runtime/editor/markdown") }
|
|
86
85
|
]);
|
|
87
86
|
addServerImportsDir([
|
|
87
|
+
...sharedUtils,
|
|
88
88
|
resolve("./runtime/server/utils")
|
|
89
89
|
]);
|
|
90
90
|
nuxt.options.nitro.alias ||= {};
|
|
91
|
-
nuxt.options.nitro.alias["#http-codes"] = httpCodesPath;
|
|
91
|
+
nuxt.options.nitro.alias["#cms/http-codes"] = httpCodesPath;
|
|
92
92
|
nuxt.options.alias["#cms"] = resolve("./runtime");
|
|
93
93
|
nuxt.options.appConfig.cms = defu(nuxt.options.appConfig.cms || {}, defaultCMSConfig);
|
|
94
94
|
}
|
|
@@ -192,12 +192,12 @@ function prepareServerRoutes({ resolve }) {
|
|
|
192
192
|
addServerHandler({
|
|
193
193
|
route: "/api/_uplora",
|
|
194
194
|
method: "post",
|
|
195
|
-
handler: resolve("./runtime/server/api/uplora/index.post
|
|
195
|
+
handler: resolve("./runtime/server/api/uplora/index.post")
|
|
196
196
|
});
|
|
197
197
|
addServerHandler({
|
|
198
198
|
route: "/api/_uplora/:id",
|
|
199
199
|
method: "delete",
|
|
200
|
-
handler: resolve("./runtime/server/api/uplora/[id].delete
|
|
200
|
+
handler: resolve("./runtime/server/api/uplora/[id].delete")
|
|
201
201
|
});
|
|
202
202
|
}
|
|
203
203
|
|
|
@@ -520,7 +520,7 @@ export {}
|
|
|
520
520
|
`
|
|
521
521
|
});
|
|
522
522
|
templates.push({
|
|
523
|
-
filename: "http-codes.
|
|
523
|
+
filename: "cms/http-codes.ts",
|
|
524
524
|
write: true,
|
|
525
525
|
getContents: () => {
|
|
526
526
|
const httpCodes = transformHttpCodes(options.httpCodes);
|
|
@@ -20,14 +20,14 @@ export interface InputUploraImageModelValue {
|
|
|
20
20
|
declare const _default: import("vue").DefineComponent<InputUploraImageProps & {
|
|
21
21
|
modelValue?: InputUploraImageModelValue;
|
|
22
22
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
delete: () => any;
|
|
24
23
|
"update:modelValue": (value: InputUploraImageModelValue) => any;
|
|
24
|
+
delete: () => any;
|
|
25
25
|
upload: (args_0: InputUploraImageModelValue) => any;
|
|
26
26
|
}, string, import("vue").PublicProps, Readonly<InputUploraImageProps & {
|
|
27
27
|
modelValue?: InputUploraImageModelValue;
|
|
28
28
|
}> & Readonly<{
|
|
29
|
-
onDelete?: (() => any) | undefined;
|
|
30
29
|
"onUpdate:modelValue"?: ((value: InputUploraImageModelValue) => any) | undefined;
|
|
30
|
+
onDelete?: (() => any) | undefined;
|
|
31
31
|
onUpload?: ((args_0: InputUploraImageModelValue) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
33
|
showExtensions: boolean;
|
|
@@ -18,7 +18,7 @@ declare const _default: <T extends object>(__VLS_props: NonNullable<Awaited<type
|
|
|
18
18
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
19
19
|
readonly onReset?: (() => any) | undefined;
|
|
20
20
|
readonly onSubmit?: (() => any) | undefined;
|
|
21
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "
|
|
21
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onSubmit" | "onReset"> & TablePanelFiltersProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
22
22
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
23
23
|
attrs: any;
|
|
24
24
|
slots: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Buffer } from "node:buffer";
|
|
2
|
-
import { HTTP_CODE_BAD_REQUEST } from "#http-codes";
|
|
2
|
+
import { HTTP_CODE_BAD_REQUEST } from "#cms/http-codes";
|
|
3
3
|
import { useRuntimeConfig } from "#imports";
|
|
4
4
|
import { isImageMimeType } from "@uplora/formats";
|
|
5
5
|
import { z } from "zod";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HTTP_CODE_BAD_REQUEST, HTTP_CODE_INTERNAL_SERVER_ERROR, HTTP_CODE_REQUEST_TIMEOUT, HTTP_CODE_UNAUTHORIZED } from "#http-codes";
|
|
1
|
+
import { HTTP_CODE_BAD_REQUEST, HTTP_CODE_INTERNAL_SERVER_ERROR, HTTP_CODE_REQUEST_TIMEOUT, HTTP_CODE_UNAUTHORIZED } from "#cms/http-codes";
|
|
2
2
|
import { consola } from "consola";
|
|
3
3
|
import { defu } from "defu";
|
|
4
4
|
import { createError, H3Error } from "h3";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HTTP_CODE_BAD_REQUEST } from "#http-codes";
|
|
1
|
+
import { HTTP_CODE_BAD_REQUEST } from "#cms/http-codes";
|
|
2
2
|
import { readMultipartFormData } from "h3";
|
|
3
3
|
import { InternalHttpError } from "../errors/InternalHttpError.js";
|
|
4
4
|
export function getValidatedSort(query, availableColumns) {
|