From 60ed09a0c5144b35945b0659193c83a7a399ae57 Mon Sep 17 00:00:00 2001 From: XiaoDaiGua-Ray <443547225@qq.com> Date: Sat, 31 Aug 2024 14:51:22 +0800 Subject: [PATCH] version: v4.9.4 --- .gitattributes | 12 +++ .vscode/settings.json | 2 + CHANGELOG.md | 14 +++ index.html | 2 +- package.json | 4 +- pnpm-lock.yaml | 8 +- src/components-pro/RTablePro/src/TablePro.tsx | 34 ++++--- .../RTablePro/src/hooks/useTablePro.ts | 4 +- src/components/RCollapseGrid/src/index.tsx | 54 +++++++----- src/components/RTable/src/hooks/useTable.ts | 9 +- src/components/RTable/src/types.ts | 2 +- src/styles/base.scss | 1 + src/styles/print-css.scss | 88 +++++++++++++++++++ src/views/demo/TablePro.tsx | 24 ++++- src/views/demo/table/index.tsx | 4 +- vite-helper/cdn-resolve.ts | 11 +-- vite.plugin.config.ts | 17 ++++ 17 files changed, 231 insertions(+), 59 deletions(-) create mode 100644 src/styles/print-css.scss diff --git a/.gitattributes b/.gitattributes index 6e573c3f..96622330 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,14 @@ # 将换行符设置为lf * text eol=lf +# 将静态资源文件以二进制形式处理 +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.svg binary +*.webp binary +*.mp4 binary +*.mov binary +*.avi binary +*.mp3 binary +*.wav binary \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index d9e4f2f1..282e67de 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -19,10 +19,12 @@ "alias-skip.allowedsuffix": ["ts", "tsx"], "alias-skip.rootpath": "package.json", "cSpell.words": [ + "baomitu", "bezier", "Clickoutside", "codabar", "commitmsg", + "crossorigin", "datetimerange", "domtoimage", "EDITMSG", diff --git a/CHANGELOG.md b/CHANGELOG.md index d791a1b9..c27a8e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGE LOG +## 4.9.4 + +## Feats + +- `cdn` 相关的一些配置 + - 将 `cdn` 源更新为 `baomitu`,为了避免因为墙的影响导致加载缓慢的问题 + - 新增一些插件的 `cdn` 配置 +- `useTable`, `useTablePro` 中的 `print` 方法新增传递 `options` 配置项,配置打印,允许配置 `dom-to-image` 与 `print-js`,详情可以查看 `PrintDomOptions` 类型说明。 +- `RCollapse` 组件新增 `collapse` 插槽,允许自定义【展开】与【收起】状态 + +## Fixes + +- 修复 `useTablePro` 中 `print` 方法丢失的问题 + ## 4.9.3 ## Feats diff --git a/index.html b/index.html index 7c7350fd..5f0bc9e5 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - +
diff --git a/package.json b/package.json index 8f581d4b..878e3142 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ray-template", "private": false, - "version": "4.9.3", + "version": "4.9.4", "type": "module", "engines": { "node": "^18.0.0 || >=20.0.0", @@ -34,7 +34,7 @@ }, "dependencies": { "@vueuse/core": "^10.9.0", - "axios": "^1.7.2", + "axios": "^1.7.5", "clipboard": "^2.0.11", "currency.js": "^2.0.4", "dayjs": "^1.11.10", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3f91603c..7b61783d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,8 +9,8 @@ dependencies: specifier: ^10.9.0 version: 10.9.0(vue@3.4.38) axios: - specifier: ^1.7.2 - version: 1.7.2 + specifier: ^1.7.5 + version: 1.7.5 clipboard: specifier: ^2.0.11 version: 2.0.11 @@ -2746,8 +2746,8 @@ packages: possible-typed-array-names: 1.0.0 dev: true - /axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + /axios@1.7.5: + resolution: {integrity: sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==} dependencies: follow-redirects: 1.15.6 form-data: 4.0.0 diff --git a/src/components-pro/RTablePro/src/TablePro.tsx b/src/components-pro/RTablePro/src/TablePro.tsx index 5741ddf0..7e2ba01b 100644 --- a/src/components-pro/RTablePro/src/TablePro.tsx +++ b/src/components-pro/RTablePro/src/TablePro.tsx @@ -23,7 +23,20 @@ export default defineComponent({ name: 'RTablePro', props, setup(props) { - const [register, { getTableInstance }] = useTable() + const [ + register, + { + clearFilters, + clearSorter, + downloadCsv, + filters, + page, + scrollTo, + sort, + print, + filter, + }, + ] = useTable() const [ paginationRef, { @@ -31,7 +44,6 @@ export default defineComponent({ getPageSize, setCallback, setItemCount, - getPagination, resetPagination, getItemCount, }, @@ -42,8 +54,6 @@ export default defineComponent({ // 获取最新 statistics 和 pagination 值 const update = (): TablePagination => { - const pagination = getPagination() - return { getItemCount, getPage, @@ -126,19 +136,7 @@ export default defineComponent({ onMounted(() => { const { onRegister } = props - if (onRegister && getTableInstance()) { - const { - clearFilters, - clearSorter, - downloadCsv, - filters, - page, - scrollTo, - sort, - filter, - print, - } = getTableInstance() - + if (onRegister) { call(onRegister, { getTablePagination: update, runTableRequest: runResetPaginationRequest, @@ -149,8 +147,8 @@ export default defineComponent({ page, scrollTo, sort, - filter, print, + filter, getCurrentTableRequestParams: combineRequestParams as TableProInst['getCurrentTableRequestParams'], }) diff --git a/src/components-pro/RTablePro/src/hooks/useTablePro.ts b/src/components-pro/RTablePro/src/hooks/useTablePro.ts index 947a1246..a75e4cae 100644 --- a/src/components-pro/RTablePro/src/hooks/useTablePro.ts +++ b/src/components-pro/RTablePro/src/hooks/useTablePro.ts @@ -8,6 +8,7 @@ import type { ColumnKey, SortOrder, } from '@/components/RTable/src/types' +import type { PrintDomOptions } from '@/utils' /** * @@ -134,7 +135,8 @@ export const useTablePro = () => { * @description * 打印表格。 */ - const print = () => getTableProInstance().print.call(null) + const print = (options?: PrintDomOptions) => + getTableProInstance().print.call(null, options) /** * diff --git a/src/components/RCollapseGrid/src/index.tsx b/src/components/RCollapseGrid/src/index.tsx index 57c050f7..63216f97 100644 --- a/src/components/RCollapseGrid/src/index.tsx +++ b/src/components/RCollapseGrid/src/index.tsx @@ -31,7 +31,20 @@ export default defineComponent({ name: 'RCollapseGrid', props, setup(props) { - const modelCollapsed = ref(!props.open) + const modelCollapsed = computed({ + get: () => !props.open, + set: (val) => { + const { onUpdateValue, 'onUpdate:value': _onUpdateValue } = props + + if (onUpdateValue) { + call(onUpdateValue, val) + } + + if (_onUpdateValue) { + call(_onUpdateValue, val) + } + }, + }) const cssVars = computed(() => { const cssVar = { '--r-collapse-grid-action-align': props.actionAlign, @@ -42,16 +55,6 @@ export default defineComponent({ const collapseClick = () => { modelCollapsed.value = !modelCollapsed.value - - const { onUpdateValue, 'onUpdate:value': _onUpdateValue } = props - - if (onUpdateValue) { - call(onUpdateValue, modelCollapsed.value) - } - - if (_onUpdateValue) { - call(_onUpdateValue, modelCollapsed.value) - } } const CollapseIcon = () => ( @@ -79,7 +82,16 @@ export default defineComponent({ } }, render() { - const { cssVars } = this + const { + $slots: { collapse, action, default: defaultSlot }, + CollapseIcon, + $props, + modelCollapsed, + xGap, + yGap, + collapsedRows, + cssVars, + } = this return (