Go to file
Ryan Wang b9a8f5055c refactor: method parameters of api client (halo-dev/console#605)
<!--  Thanks for sending a pull request!  Here are some tips for you:
1. 如果这是你的第一次,请阅读我们的贡献指南:<https://github.com/halo-dev/halo/blob/master/CONTRIBUTING.md>。
1. If this is your first time, please read our contributor guidelines: <https://github.com/halo-dev/halo/blob/master/CONTRIBUTING.md>.
2. 请根据你解决问题的类型为 Pull Request 添加合适的标签。
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request.
3. 请确保你已经添加并运行了适当的测试。
3. Ensure you have added or ran the appropriate tests for your PR.
-->

#### What type of PR is this?

/kind improvement
/milestone 2.0

<!--
添加其中一个类别:
Add one of the following kinds:

/kind bug
/kind cleanup
/kind documentation
/kind feature
/kind optimization

适当添加其中一个或多个类别(可选):
Optionally add one or more of the following kinds if applicable:

/kind api-change
/kind deprecation
/kind failing-test
/kind flake
/kind regression
-->

#### What this PR does / why we need it:

修改 api-client 的请求参数结构,改为所有参数由一个对象包裹,而不是将各个参数作为方法的参数,防止因为后端参数结构发生改变,或者生成 api-client 时参数顺序发生改变导致请求异常。如:

```diff
await apiClient.extension.storage.group.updatestorageHaloRunV1alpha1Group(
-        formState.value.metadata.name,
-        formState.value
+        {
+          name: formState.value.metadata.name,
+          group: formState.value,
+        }
      );
```

#### Which issue(s) this PR fixes:

<!--
PR 合并时自动关闭 issue。
Automatically closes linked issue when PR is merged.

用法:`Fixes #<issue 号>`,或者 `Fixes (粘贴 issue 完整链接)`
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
-->
None

#### Screenshots:

<!--
如果此 PR 有 UI 的改动,最好截图说明这个 PR 的改动。
If there are UI changes to this PR, it is best to take a screenshot to illustrate the changes to this PR.

eg.

Before:

![screenshot-before](https://user-images.githubusercontent.com/screenshot.png)

After:

![screenshot-after](https://user-images.githubusercontent.com/screenshot.png)
-->

None

#### Special notes for your reviewer:

/cc @halo-dev/sig-halo-admin 

#### Does this PR introduce a user-facing change?

<!--
如果当前 Pull Request 的修改不会造成用户侧的任何变更,在 `release-note` 代码块儿中填写 `NONE`。
否则请填写用户侧能够理解的 Release Note。如果当前 Pull Request 包含破坏性更新(Break Change),
Release Note 需要以 `action required` 开头。
If no, just write "NONE" in the release-note block below.
If yes, a release note is required:
Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required".
-->

```release-note
None
```
2022-09-06 02:26:11 +00:00
.changeset chore: add changeset 2022-07-08 15:14:59 +08:00
.github chore: remove github issue templates 2022-08-02 21:17:33 +08:00
.husky chore: update husky pre-commit file 2022-08-12 16:24:47 +08:00
.vscode chore: update vscode extension recommendations 2022-08-31 23:35:46 +08:00
cypress chore: next major version base project (halo-dev/console#478) 2022-03-03 18:26:15 +08:00
packages refactor: method parameters of api client (halo-dev/console#605) 2022-09-06 02:26:11 +00:00
public chore: next major version base project (halo-dev/console#478) 2022-03-03 18:26:15 +08:00
src refactor: method parameters of api client (halo-dev/console#605) 2022-09-06 02:26:11 +00:00
.dockerignore Add dockerignore file to ignore node_modules folder while building docker image (halo-dev/console#588) 2022-07-19 07:50:05 +00:00
.editorconfig refactor: upgrade codemirror version. (halo-dev/console#354) 2021-09-15 21:44:00 +08:00
.env.development feat: add base url config support 2022-07-25 11:23:46 +08:00
.env.production feat: add base url config support 2022-07-25 11:23:46 +08:00
.eslintrc.cjs chore: use vue/vue3-recommended eslint plugin 2022-08-30 17:30:43 +08:00
.gitignore chore: use pnpm's workspace feature to manage base components (halo-dev/console#579) 2022-06-14 15:56:55 +08:00
.gitpod.yml chore: add gitpod config file (halo-dev/console#410) 2022-01-17 13:55:33 +08:00
.npmignore refactor: refactor post preview and private post view. 2019-12-19 17:50:23 +08:00
.npmrc chore: bump dependencies 2022-08-23 11:10:29 +08:00
Dockerfile Refactor GitHub workflow configuration (halo-dev/console#589) 2022-07-19 19:31:11 +08:00
LICENSE release: 1.2.0. 2020-01-05 22:39:18 +08:00
OWNERS chore: create OWNERS file (halo-dev/console#548) 2022-04-12 14:16:03 +08:00
README.md docs: update readme 2022-07-19 14:11:45 +08:00
cypress.json chore: next major version base project (halo-dev/console#478) 2022-03-03 18:26:15 +08:00
env.d.ts chore: use pnpm's workspace feature to manage base components (halo-dev/console#579) 2022-06-14 15:56:55 +08:00
index.html feat: add base url config support 2022-07-25 11:23:46 +08:00
package.json refactor: method parameters of api client (halo-dev/console#605) 2022-09-06 02:26:11 +00:00
pnpm-lock.yaml refactor: method parameters of api client (halo-dev/console#605) 2022-09-06 02:26:11 +00:00
pnpm-workspace.yaml chore: use pnpm's workspace feature to manage base components (halo-dev/console#579) 2022-06-14 15:56:55 +08:00
postcss.config.js chore: configure tailwind css (halo-dev/console#504) 2022-03-11 11:51:40 +08:00
prettier.config.js chore: add tailwindcss prettier plugin and reformat code 2022-05-29 23:55:06 +08:00
tailwind.config.js fix: admin ui theme system not working in production env 2022-07-14 11:54:23 +08:00
tsconfig.app.json feat: add attachment management support (halo-dev/console#600) 2022-09-04 17:06:11 +00:00
tsconfig.json chore: next major version base project (halo-dev/console#478) 2022-03-03 18:26:15 +08:00
tsconfig.vite-config.json chore: next major version base project (halo-dev/console#478) 2022-03-03 18:26:15 +08:00
tsconfig.vitest.json chore: next major version base project (halo-dev/console#478) 2022-03-03 18:26:15 +08:00
vite.config.ts feat: add attachment management support (halo-dev/console#600) 2022-09-04 17:06:11 +00:00
vitest.config.ts refactor: vitest config 2022-08-01 17:41:39 +08:00

README.md

Halo logo

Halo 2.0 的管理端项目WIP

GitHub release GitHub GitHub last commit GitHub Workflow Status Gitpod ready-to-code


开发环境运行

# pnpm@7.0.0+
npm install -g pnpm
pnpm install 
# build packages
pnpm build:packages
pnpm dev

生产构建

pnpm build

状态

Repobeats analytics