mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
feat: v4.2.2一些细节补充与优化
This commit is contained in:
parent
fac9f9413d
commit
0c7adb9584
@ -16,6 +16,7 @@
|
|||||||
- 实现了新的文件下载函数 `downloadAnyFile`,支持 `blod, file, base64, arrayBuffer`
|
- 实现了新的文件下载函数 `downloadAnyFile`,支持 `blod, file, base64, arrayBuffer`
|
||||||
- 更新 `naive-ui` 版本至 `2.35.0`
|
- 更新 `naive-ui` 版本至 `2.35.0`
|
||||||
- 新增了一些工具类型与工具方法
|
- 新增了一些工具类型与工具方法
|
||||||
|
- 移除 screenfull 插件,使用 vueuse useFullscreen hook 替代。
|
||||||
- 新增规则 `no-undefined`,[点击查看](https://eslint.org/docs/latest/rules/no-undefined#rule-details) 具体规则
|
- 新增规则 `no-undefined`,[点击查看](https://eslint.org/docs/latest/rules/no-undefined#rule-details) 具体规则
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
@ -27,6 +28,10 @@ const demo = void 0
|
|||||||
const demo2 = null
|
const demo2 = null
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- 修复全屏不能正确提示状态问题
|
||||||
|
|
||||||
## 4.2.1
|
## 4.2.1
|
||||||
|
|
||||||
经过综合考虑,还是给模板增加 `cdn` 的配置。基于 `vite-plugin-cdn2` 插件实现。
|
经过综合考虑,还是给模板增加 `cdn` 的配置。基于 `vite-plugin-cdn2` 插件实现。
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vueuse/core": "^9.1.0",
|
"@vueuse/core": "^9.13.0",
|
||||||
"awesome-qr": "2.1.5-rc.0",
|
"awesome-qr": "2.1.5-rc.0",
|
||||||
"axios": "^1.2.0",
|
"axios": "^1.2.0",
|
||||||
"clipboard": "^2.0.11",
|
"clipboard": "^2.0.11",
|
||||||
@ -38,7 +38,6 @@
|
|||||||
"pinia": "^2.1.4",
|
"pinia": "^2.1.4",
|
||||||
"pinia-plugin-persistedstate": "^3.1.0",
|
"pinia-plugin-persistedstate": "^3.1.0",
|
||||||
"print-js": "^1.6.0",
|
"print-js": "^1.6.0",
|
||||||
"screenfull": "^6.0.2",
|
|
||||||
"vue": "^3.3.4",
|
"vue": "^3.3.4",
|
||||||
"vue-hooks-plus": "1.8.2",
|
"vue-hooks-plus": "1.8.2",
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^9.2.2",
|
||||||
|
@ -13,13 +13,14 @@ import './index.scss'
|
|||||||
|
|
||||||
import { NCard, NDataTable, NDropdown, NSpace } from 'naive-ui'
|
import { NCard, NDataTable, NDropdown, NSpace } from 'naive-ui'
|
||||||
import Size from './components/Size'
|
import Size from './components/Size'
|
||||||
import Screenfull from './components/Screenfull'
|
import Screenfull from './components/Fullscreen'
|
||||||
import C from './components/C'
|
import C from './components/C'
|
||||||
import Print from './components/Print'
|
import Print from './components/Print'
|
||||||
|
|
||||||
import props from './props'
|
import props from './props'
|
||||||
import { call } from '@/utils/vue/index'
|
import { call } from '@/utils/vue/index'
|
||||||
import { uuid } from '@use-utils/hook'
|
import { uuid } from '@use-utils/hook'
|
||||||
|
import config from './config'
|
||||||
|
|
||||||
import type { DropdownOption, DataTableInst } from 'naive-ui'
|
import type { DropdownOption, DataTableInst } from 'naive-ui'
|
||||||
import type { ComponentSize } from '@/types/modules/component'
|
import type { ComponentSize } from '@/types/modules/component'
|
||||||
@ -31,7 +32,8 @@ export default defineComponent({
|
|||||||
setup(props, ctx) {
|
setup(props, ctx) {
|
||||||
const { expose } = ctx
|
const { expose } = ctx
|
||||||
|
|
||||||
const rTableInstance = ref<DataTableInst | null>(null)
|
const rTableInst = ref<DataTableInst | null>(null)
|
||||||
|
const wrapperRef = ref<HTMLElement | null>(null)
|
||||||
|
|
||||||
const uuidWrapper = uuid(16)
|
const uuidWrapper = uuid(16)
|
||||||
const uuidTable = uuid(16)
|
const uuidTable = uuid(16)
|
||||||
@ -103,30 +105,70 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
provide('tableProvider', {
|
const renderToolOptions = () => {
|
||||||
|
const { toolOptions } = props
|
||||||
|
|
||||||
|
return toolOptions?.map((curr) =>
|
||||||
|
typeof curr === 'function' ? curr() : curr,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const tool = (p: typeof props) => {
|
||||||
|
const renderDefaultToolOptions = () => (
|
||||||
|
<>
|
||||||
|
<Print {...p} />
|
||||||
|
<Size {...p} onChangeSize={changeTableSize.bind(this)} />
|
||||||
|
<Screenfull />
|
||||||
|
<C {...p} onUpdateColumn={updateTableColumn.bind(this)} />
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
|
||||||
|
if (!props.toolOptions) {
|
||||||
|
return renderDefaultToolOptions
|
||||||
|
} else {
|
||||||
|
if (props.coverTool) {
|
||||||
|
return renderToolOptions
|
||||||
|
} else {
|
||||||
|
return () => (
|
||||||
|
<>
|
||||||
|
{renderDefaultToolOptions()}
|
||||||
|
{renderToolOptions()}
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
provide(config.tableKey, {
|
||||||
uuidTable,
|
uuidTable,
|
||||||
uuidWrapper,
|
uuidWrapper,
|
||||||
|
wrapperRef,
|
||||||
})
|
})
|
||||||
expose({
|
expose({
|
||||||
rTableInstance,
|
rTableInst,
|
||||||
|
uuidTable,
|
||||||
|
uuidWrapper,
|
||||||
})
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
uuidWrapper,
|
uuidWrapper,
|
||||||
uuidTable,
|
uuidTable,
|
||||||
contextMenuReactive,
|
contextMenuReactive,
|
||||||
rTableInstance,
|
rTableInst,
|
||||||
combineRowProps,
|
combineRowProps,
|
||||||
contextMenuSelect,
|
contextMenuSelect,
|
||||||
changeTableSize,
|
|
||||||
privateReactive,
|
privateReactive,
|
||||||
updateTableColumn,
|
tool,
|
||||||
|
wrapperRef,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||||
|
const { tool } = this
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NCard
|
<NCard
|
||||||
class="ray-table"
|
ref="wrapperRef"
|
||||||
bordered={this.wrapperBordered}
|
bordered={this.wrapperBordered}
|
||||||
{...{ id: this.uuidWrapper }}
|
{...{ id: this.uuidWrapper }}
|
||||||
>
|
>
|
||||||
@ -134,7 +176,7 @@ export default defineComponent({
|
|||||||
default: () => (
|
default: () => (
|
||||||
<>
|
<>
|
||||||
<NDataTable
|
<NDataTable
|
||||||
ref="rTableInstance"
|
ref="rTableInst"
|
||||||
{...{ id: this.uuidTable }}
|
{...{ id: this.uuidTable }}
|
||||||
{...this.$props}
|
{...this.$props}
|
||||||
{...this.$attrs}
|
{...this.$attrs}
|
||||||
@ -164,19 +206,11 @@ export default defineComponent({
|
|||||||
header: () => this.title || <div style="display: none;"></div>,
|
header: () => this.title || <div style="display: none;"></div>,
|
||||||
'header-extra': () => (
|
'header-extra': () => (
|
||||||
<NSpace wrapItem={false} align="center">
|
<NSpace wrapItem={false} align="center">
|
||||||
<Print {...this.$props} />
|
{tool(this.$props as any)}
|
||||||
<Size
|
|
||||||
{...this.$props}
|
|
||||||
onChangeSize={this.changeTableSize.bind(this)}
|
|
||||||
/>
|
|
||||||
<Screenfull />
|
|
||||||
<C
|
|
||||||
{...this.$props}
|
|
||||||
onUpdateColumn={this.updateTableColumn.bind(this)}
|
|
||||||
/>
|
|
||||||
</NSpace>
|
</NSpace>
|
||||||
),
|
),
|
||||||
footer: () => this.$slots.tableFooter?.(),
|
footer: () => this.$slots.tableFooter?.(),
|
||||||
|
action: () => this.$slots.tableAction?.(),
|
||||||
}}
|
}}
|
||||||
</NCard>
|
</NCard>
|
||||||
)
|
)
|
||||||
|
@ -9,15 +9,6 @@
|
|||||||
* @remark 今天也是元气满满撸代码的一天
|
* @remark 今天也是元气满满撸代码的一天
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* TODO:
|
|
||||||
* - 使用 computed 获取数据时,将数据转换为 NTree 格式,并且补充固定列操作栏按钮与初始化样式
|
|
||||||
* - 使用 computed 收集固定列、拖拽列后的数据
|
|
||||||
* - 点击固定列按钮后,激活样式
|
|
||||||
* - Table 父组件通知更新 columns,使用 v-model:columns 方式绑定时,即可实现拖拽、动态展示列、固定列操作
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { NPopover, NSpace, NTree } from 'naive-ui'
|
import { NPopover, NSpace, NTree } from 'naive-ui'
|
||||||
import RIcon from '@/components/RIcon/index'
|
import RIcon from '@/components/RIcon/index'
|
||||||
|
|
||||||
@ -51,7 +42,7 @@ const RowIconRender = ({
|
|||||||
customClassName?: string
|
customClassName?: string
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<NPopover>
|
<NPopover showArrow={false}>
|
||||||
{{
|
{{
|
||||||
trigger: () => (
|
trigger: () => (
|
||||||
<RIcon
|
<RIcon
|
||||||
@ -103,22 +94,15 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
/** 深拷贝 columns 避免修改源数据 */
|
// 深拷贝 columns 避免修改源数据
|
||||||
const treeDataSource = computed({
|
const treeDataSource = computed({
|
||||||
get: () => {
|
get: () => {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
return props.columns.map((curr: any, idx) => {
|
return props.columns.map((curr, idx) => {
|
||||||
const {
|
const { key, title, children, fixed, isResizable, ...args } =
|
||||||
key,
|
curr as C
|
||||||
title,
|
const isLeftFixedActivated = fixed === 'left'
|
||||||
children,
|
const isRightFixedActivated = fixed === 'right'
|
||||||
fixed,
|
|
||||||
resizable: $resizable,
|
|
||||||
...args
|
|
||||||
} = curr
|
|
||||||
const isLeftFixedActivated = fixed && fixed === 'left'
|
|
||||||
const isRightFixedActivated = fixed && fixed === 'right'
|
|
||||||
const isResizable = !!$resizable
|
|
||||||
const attr = {
|
const attr = {
|
||||||
...args,
|
...args,
|
||||||
title,
|
title,
|
||||||
@ -126,32 +110,49 @@ export default defineComponent({
|
|||||||
fixed,
|
fixed,
|
||||||
isLeftFixedActivated,
|
isLeftFixedActivated,
|
||||||
isRightFixedActivated,
|
isRightFixedActivated,
|
||||||
|
isResizable,
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...attr,
|
...attr,
|
||||||
suffix: () => (
|
suffix: () => (
|
||||||
<NSpace wrapItem={false} style="padding-left: 24px;">
|
<NSpace wrapItem={false} style="padding-left: 32px;">
|
||||||
<RowIconRender
|
<RowIconRender
|
||||||
icon="row_head"
|
icon="row_head"
|
||||||
title="固定在列首"
|
title="固定在列首"
|
||||||
customClassName={
|
customClassName={
|
||||||
isLeftFixedActivated ? 'r-table__c-fixed--active' : ''
|
isLeftFixedActivated ? 'r-table__c-tool-icon--active' : ''
|
||||||
}
|
}
|
||||||
onClick={fixedClick.bind(this, 'left', attr, idx)}
|
onClick={fixedClick.bind(this, 'left', attr, idx)}
|
||||||
/>
|
/>
|
||||||
|
<NPopover showArrow={false}>
|
||||||
|
{{
|
||||||
|
trigger: () => (
|
||||||
|
<RIcon
|
||||||
|
name="resize_h"
|
||||||
|
size={config.tableIconSize}
|
||||||
|
cursor="pointer"
|
||||||
|
customClassName={
|
||||||
|
isResizable ? 'r-table__c-tool-icon--active' : ''
|
||||||
|
}
|
||||||
|
onClick={resizableClick.bind(this, attr, idx)}
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
default: () => '修改列宽',
|
||||||
|
}}
|
||||||
|
</NPopover>
|
||||||
<RowIconRender
|
<RowIconRender
|
||||||
icon="row_end"
|
icon="row_end"
|
||||||
title="固定在列尾"
|
title="固定在列尾"
|
||||||
customClassName={
|
customClassName={
|
||||||
isRightFixedActivated ? 'r-table__c-fixed--active' : ''
|
isRightFixedActivated ? 'r-table__c-tool-icon--active' : ''
|
||||||
}
|
}
|
||||||
onClick={fixedClick.bind(this, 'right', attr, idx)}
|
onClick={fixedClick.bind(this, 'right', attr, idx)}
|
||||||
/>
|
/>
|
||||||
</NSpace>
|
</NSpace>
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
})
|
}) as C[]
|
||||||
},
|
},
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
||||||
set: () => {},
|
set: () => {},
|
||||||
@ -165,15 +166,20 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const fixedClick: FixedClick = (type, option, index) => {
|
const resizableClick = (option: C, index: number) => {
|
||||||
const key = `${type}FixedActivated`
|
console.log('🚀 ~ resizableClick ~ option:', option.isResizable)
|
||||||
|
option['isResizable'] = !option['isResizable']
|
||||||
|
option['resizable'] = option['isResizable']
|
||||||
|
treeDataSource.value[index] = option
|
||||||
|
|
||||||
if (key === 'leftFixedActivated') {
|
event(treeDataSource.value)
|
||||||
option['rightFixedActivated'] = false
|
|
||||||
} else if (key === 'rightFixedActivated') {
|
|
||||||
option['leftFixedActivated'] = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const fixedClick: FixedClick = (type, option, index) => {
|
||||||
|
const key = `${type}FixedActivated`
|
||||||
|
const otherKey = `${type === 'left' ? 'right' : 'left'}FixedActivated`
|
||||||
|
|
||||||
|
option[otherKey] = false
|
||||||
option[key] = !option[key]
|
option[key] = !option[key]
|
||||||
option[key] ? (option['fixed'] = type) : (option['fixed'] = void 0)
|
option[key] ? (option['fixed'] = type) : (option['fixed'] = void 0)
|
||||||
treeDataSource.value[index] = option
|
treeDataSource.value[index] = option
|
||||||
@ -184,7 +190,7 @@ export default defineComponent({
|
|||||||
const treeDrop = ({ node, dragNode, dropPosition }: TreeDropInfo) => {
|
const treeDrop = ({ node, dragNode, dropPosition }: TreeDropInfo) => {
|
||||||
const [dragNodeSiblings, dragNodeIndex] = findSiblingsAndIndex(
|
const [dragNodeSiblings, dragNodeIndex] = findSiblingsAndIndex(
|
||||||
dragNode,
|
dragNode,
|
||||||
treeDataSource.value,
|
treeDataSource.value as TreeOption[],
|
||||||
)
|
)
|
||||||
|
|
||||||
if (dragNodeSiblings === null || dragNodeIndex === null) {
|
if (dragNodeSiblings === null || dragNodeIndex === null) {
|
||||||
@ -195,7 +201,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
const [nodeSiblings, nodeIndex] = findSiblingsAndIndex(
|
const [nodeSiblings, nodeIndex] = findSiblingsAndIndex(
|
||||||
node,
|
node,
|
||||||
treeDataSource.value,
|
treeDataSource.value as TreeOption[],
|
||||||
)
|
)
|
||||||
|
|
||||||
if (nodeSiblings === null || nodeIndex === null) {
|
if (nodeSiblings === null || nodeIndex === null) {
|
||||||
@ -216,7 +222,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<NPopover displayDirective="show" trigger="click">
|
<NPopover displayDirective="show" trigger="click" showArrow={false}>
|
||||||
{{
|
{{
|
||||||
trigger: () => (
|
trigger: () => (
|
||||||
<RIcon
|
<RIcon
|
||||||
@ -232,7 +238,9 @@ export default defineComponent({
|
|||||||
data={this.treeDataSource as TreeOption[]}
|
data={this.treeDataSource as TreeOption[]}
|
||||||
blockLine
|
blockLine
|
||||||
draggable
|
draggable
|
||||||
|
keyboard={false}
|
||||||
labelField="title"
|
labelField="title"
|
||||||
|
selectable={false}
|
||||||
renderSwitcherIcon={renderSwitcherIcon.bind(this)}
|
renderSwitcherIcon={renderSwitcherIcon.bind(this)}
|
||||||
onDrop={this.treeDrop.bind(this)}
|
onDrop={this.treeDrop.bind(this)}
|
||||||
/>
|
/>
|
||||||
|
51
src/components/RTable/src/components/Fullscreen.tsx
Normal file
51
src/components/RTable/src/components/Fullscreen.tsx
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
||||||
|
*
|
||||||
|
* @date 2023-10-04
|
||||||
|
*
|
||||||
|
* @workspace ray-template
|
||||||
|
*
|
||||||
|
* @remark 今天也是元气满满撸代码的一天
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { NPopover } from 'naive-ui'
|
||||||
|
import RIcon from '@/components/RIcon/index'
|
||||||
|
|
||||||
|
import config from '../config'
|
||||||
|
import { useFullscreen } from 'vue-hooks-plus'
|
||||||
|
|
||||||
|
import type { TableProvider } from '../type'
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
name: 'TableFullscreen',
|
||||||
|
setup() {
|
||||||
|
const { wrapperRef } = inject<TableProvider>(
|
||||||
|
config.tableKey,
|
||||||
|
{} as TableProvider,
|
||||||
|
)
|
||||||
|
const [isFullscreen, { toggleFullscreen }] = useFullscreen(wrapperRef)
|
||||||
|
|
||||||
|
return {
|
||||||
|
toggleFullscreen,
|
||||||
|
isFullscreen,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<NPopover showArrow={false}>
|
||||||
|
{{
|
||||||
|
trigger: () => (
|
||||||
|
<RIcon
|
||||||
|
name="fullscreen"
|
||||||
|
size={config.tableIconSize}
|
||||||
|
cursor="pointer"
|
||||||
|
onClick={this.toggleFullscreen.bind(this)}
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
default: () => (this.isFullscreen ? '取消全屏' : '全屏表格'),
|
||||||
|
}}
|
||||||
|
</NPopover>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
})
|
@ -23,7 +23,7 @@ export default defineComponent({
|
|||||||
props,
|
props,
|
||||||
setup(props) {
|
setup(props) {
|
||||||
const { uuidTable } = inject<TableProvider>(
|
const { uuidTable } = inject<TableProvider>(
|
||||||
'tableProvider',
|
config.tableKey,
|
||||||
{} as TableProvider,
|
{} as TableProvider,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<NPopover>
|
<NPopover showArrow={false}>
|
||||||
{{
|
{{
|
||||||
trigger: () => (
|
trigger: () => (
|
||||||
<RIcon
|
<RIcon
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
|
||||||
*
|
|
||||||
* @date 2023-10-04
|
|
||||||
*
|
|
||||||
* @workspace ray-template
|
|
||||||
*
|
|
||||||
* @remark 今天也是元气满满撸代码的一天
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { NPopover } from 'naive-ui'
|
|
||||||
import RIcon from '@/components/RIcon/index'
|
|
||||||
|
|
||||||
import screenfull from 'screenfull'
|
|
||||||
import config from '../config'
|
|
||||||
|
|
||||||
import type { TableProvider } from '../type'
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'TableScreenfull',
|
|
||||||
setup() {
|
|
||||||
const { uuidWrapper } = inject<TableProvider>(
|
|
||||||
'tableProvider',
|
|
||||||
{} as TableProvider,
|
|
||||||
)
|
|
||||||
const currentTableIsFullscreen = ref(screenfull.isFullscreen) // 缓存当前是否处于全屏状态
|
|
||||||
|
|
||||||
const fullscreenTableClick = () => {
|
|
||||||
const el = document.getElementById(uuidWrapper)
|
|
||||||
|
|
||||||
currentTableIsFullscreen.value = !currentTableIsFullscreen.value
|
|
||||||
|
|
||||||
if (el && screenfull.isEnabled && currentTableIsFullscreen.value) {
|
|
||||||
screenfull.request(el)
|
|
||||||
} else {
|
|
||||||
screenfull.exit()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
fullscreenTableClick,
|
|
||||||
currentTableIsFullscreen,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
render() {
|
|
||||||
return (
|
|
||||||
<NPopover>
|
|
||||||
{{
|
|
||||||
trigger: () => (
|
|
||||||
<RIcon
|
|
||||||
name="fullscreen"
|
|
||||||
size={config.tableIconSize}
|
|
||||||
cursor="pointer"
|
|
||||||
onClick={this.fullscreenTableClick.bind(this)}
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
default: () =>
|
|
||||||
this.currentTableIsFullscreen ? '取消全屏' : '全屏表格',
|
|
||||||
}}
|
|
||||||
</NPopover>
|
|
||||||
)
|
|
||||||
},
|
|
||||||
})
|
|
@ -71,7 +71,7 @@ export default defineComponent({
|
|||||||
trigger="click"
|
trigger="click"
|
||||||
onUpdateValue={this.updatePopselectValue.bind(this)}
|
onUpdateValue={this.updatePopselectValue.bind(this)}
|
||||||
>
|
>
|
||||||
<NPopover>
|
<NPopover showArrow={false}>
|
||||||
{{
|
{{
|
||||||
trigger: () => (
|
trigger: () => (
|
||||||
<RIcon
|
<RIcon
|
||||||
|
@ -11,4 +11,5 @@
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
tableIconSize: '18',
|
tableIconSize: '18',
|
||||||
|
tableKey: Symbol('r-table'),
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
.r-table__c-tree.n-tree .n-tree-node-switcher.n-tree-node-switcher--hide {
|
.r-table__c-tree {
|
||||||
|
& .n-tree-node-switcher.n-tree-node-switcher--hide {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.r-table__c-tree.n-tree .ray-icon {
|
& .ray-icon {
|
||||||
&.r-table__c-fixed--active {
|
&.r-table__c-tool-icon--active {
|
||||||
color: var(--ray-theme-primary-color);
|
color: var(--ray-theme-primary-color);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.r-table__setting:hover {
|
.r-table__setting:hover {
|
||||||
|
@ -28,9 +28,14 @@ const props = {
|
|||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
toolOptions: {
|
toolOptions: {
|
||||||
/** 自定义传递工具栏拓展 */
|
/** 自定义拓展工具栏 */
|
||||||
type: Array as PropType<(VNode | (() => VNode))[]>,
|
type: Array as PropType<(VNode | (() => VNode))[]>,
|
||||||
},
|
},
|
||||||
|
coverTool: {
|
||||||
|
/** 当 toolOptions 配置时,是否覆盖原工具栏 */
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
contextMenuOptions: {
|
contextMenuOptions: {
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -21,11 +21,9 @@ export type DropdownMixedOption =
|
|||||||
|
|
||||||
export interface DownloadTableOptions {
|
export interface DownloadTableOptions {
|
||||||
fileName?: string
|
fileName?: string
|
||||||
// icon?: TableActionIcon
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface PrintTableOptions {
|
export interface PrintTableOptions {
|
||||||
// icon?: TableActionIcon
|
|
||||||
printOptions?: Omit<PrintConfiguration.Configuration, 'printable' | 'type'>
|
printOptions?: Omit<PrintConfiguration.Configuration, 'printable' | 'type'>
|
||||||
type?: PrintConfiguration.PrintTypes
|
type?: PrintConfiguration.PrintTypes
|
||||||
}
|
}
|
||||||
@ -33,14 +31,21 @@ export interface PrintTableOptions {
|
|||||||
export interface TableProvider {
|
export interface TableProvider {
|
||||||
uuidWrapper: string
|
uuidWrapper: string
|
||||||
uuidTable: string
|
uuidTable: string
|
||||||
|
wrapperRef: Ref<HTMLElement | null>
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface C extends DataTableBaseColumn {
|
export interface C extends DataTableBaseColumn {
|
||||||
leftFixedActivated?: boolean
|
leftFixedActivated?: boolean
|
||||||
rightFixedActivated?: boolean
|
rightFixedActivated?: boolean
|
||||||
resizable?: boolean
|
resizable?: boolean
|
||||||
|
isResizable?: boolean
|
||||||
|
isLeftFixedActivated?: boolean
|
||||||
|
isRightFixedActivated?: boolean
|
||||||
|
children?: C[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export type OverridesTableColumn<T = Recordable> = C | DataTableColumn<T>
|
export type OverridesTableColumn<T = Recordable> = C | DataTableColumn<T>
|
||||||
|
|
||||||
export interface TableInst extends Omit<DataTableInst, 'clearFilter'> {}
|
export interface TableInst extends TableProvider {
|
||||||
|
rTableInst: Omit<DataTableInst, 'clearFilter'>
|
||||||
|
}
|
||||||
|
@ -30,8 +30,8 @@ import AppAvatar from '@/app-components/app/AppAvatar/index'
|
|||||||
import { useSetting } from '@/store'
|
import { useSetting } from '@/store'
|
||||||
import { LOCAL_OPTIONS } from '@/app-config/localConfig'
|
import { LOCAL_OPTIONS } from '@/app-config/localConfig'
|
||||||
import { useAvatarOptions, avatarDropdownClick } from './hook'
|
import { useAvatarOptions, avatarDropdownClick } from './hook'
|
||||||
import screenfull from 'screenfull'
|
|
||||||
import { useI18n } from '@/hooks/web/index'
|
import { useI18n } from '@/hooks/web/index'
|
||||||
|
import { useFullscreen } from 'vue-hooks-plus'
|
||||||
|
|
||||||
import type { IconEventMapOptions, IconEventMap } from './type'
|
import type { IconEventMapOptions, IconEventMap } from './type'
|
||||||
|
|
||||||
@ -43,6 +43,9 @@ const SiderBar = defineComponent({
|
|||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
const { updateLocale, changeSwitcher } = settingStore
|
const { updateLocale, changeSwitcher } = settingStore
|
||||||
|
|
||||||
|
const [isFullscreen, { toggleFullscreen }] = useFullscreen(
|
||||||
|
document.getElementsByTagName('html')[0],
|
||||||
|
)
|
||||||
const { drawerPlacement, breadcrumbSwitch, reloadRouteSwitch } =
|
const { drawerPlacement, breadcrumbSwitch, reloadRouteSwitch } =
|
||||||
storeToRefs(settingStore)
|
storeToRefs(settingStore)
|
||||||
const showSettings = ref(false)
|
const showSettings = ref(false)
|
||||||
@ -50,7 +53,6 @@ const SiderBar = defineComponent({
|
|||||||
display: 'flex',
|
display: 'flex',
|
||||||
}
|
}
|
||||||
const globalSearchShown = ref(false)
|
const globalSearchShown = ref(false)
|
||||||
const isScreenfull = ref(screenfull.isFullscreen)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -81,7 +83,7 @@ const SiderBar = defineComponent({
|
|||||||
name: 'fullscreen',
|
name: 'fullscreen',
|
||||||
size: 18,
|
size: 18,
|
||||||
tooltip: computed(() =>
|
tooltip: computed(() =>
|
||||||
isScreenfull.value
|
isFullscreen.value
|
||||||
? t('headerTooltip.CancelFullScreen')
|
? t('headerTooltip.CancelFullScreen')
|
||||||
: t('headerTooltip.FullScreen'),
|
: t('headerTooltip.FullScreen'),
|
||||||
),
|
),
|
||||||
@ -114,17 +116,7 @@ const SiderBar = defineComponent({
|
|||||||
window.open('https://github.com/XiaoDaiGua-Ray/ray-template')
|
window.open('https://github.com/XiaoDaiGua-Ray/ray-template')
|
||||||
},
|
},
|
||||||
fullscreen: () => {
|
fullscreen: () => {
|
||||||
if (!screenfull.isEnabled) {
|
toggleFullscreen()
|
||||||
return (() => {
|
|
||||||
window.$message.warning('您的浏览器不支持全屏~')
|
|
||||||
})()
|
|
||||||
} else {
|
|
||||||
return (() => {
|
|
||||||
screenfull.toggle()
|
|
||||||
|
|
||||||
isScreenfull.value = !screenfull.isFullscreen
|
|
||||||
})()
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
search: () => {
|
search: () => {
|
||||||
globalSearchShown.value = true
|
globalSearchShown.value = true
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import {
|
import {
|
||||||
NLayout,
|
|
||||||
NTag,
|
NTag,
|
||||||
NButton,
|
NButton,
|
||||||
NGridItem,
|
NGridItem,
|
||||||
@ -18,14 +17,13 @@ import {
|
|||||||
NInput,
|
NInput,
|
||||||
NDatePicker,
|
NDatePicker,
|
||||||
NSwitch,
|
NSwitch,
|
||||||
NP,
|
|
||||||
NH2,
|
|
||||||
NUl,
|
|
||||||
NLi,
|
|
||||||
NSpace,
|
NSpace,
|
||||||
|
NPopover,
|
||||||
|
NCard,
|
||||||
} from 'naive-ui'
|
} from 'naive-ui'
|
||||||
import RCollapseGrid from '@/components/RCollapseGrid/index'
|
import RCollapseGrid from '@/components/RCollapseGrid/index'
|
||||||
import RTable from '@/components/RTable/index'
|
import RTable from '@/components/RTable/index'
|
||||||
|
import RIcon from '@/components/RIcon/index'
|
||||||
|
|
||||||
import type { DataTableColumns } from 'naive-ui'
|
import type { DataTableColumns } from 'naive-ui'
|
||||||
import type { TableInst } from '@/components/RTable/index'
|
import type { TableInst } from '@/components/RTable/index'
|
||||||
@ -41,8 +39,6 @@ type RowData = {
|
|||||||
const TableView = defineComponent({
|
const TableView = defineComponent({
|
||||||
name: 'TableView',
|
name: 'TableView',
|
||||||
setup() {
|
setup() {
|
||||||
const tableRef = ref<TableInst>()
|
|
||||||
|
|
||||||
const baseColumns = [
|
const baseColumns = [
|
||||||
{
|
{
|
||||||
title: 'Name',
|
title: 'Name',
|
||||||
@ -153,37 +149,15 @@ const TableView = defineComponent({
|
|||||||
baseColumns,
|
baseColumns,
|
||||||
tableMenuOptions,
|
tableMenuOptions,
|
||||||
handleMenuSelect,
|
handleMenuSelect,
|
||||||
tableRef,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<NSpace wrapItem={false} vertical>
|
||||||
<NH2>RayTable 组件使用</NH2>
|
<NCard title="RTable">
|
||||||
<NUl alignText>
|
基于 NDataTable 封装,继承该组件所有 props 属性。查看 RTable props
|
||||||
<NLi>
|
文件即可查看该组件拓展项
|
||||||
该组件基于 Naive UI DataTable
|
</NCard>
|
||||||
组件封装。实现右键菜单、表格标题、导出为 excel 操作栏等功能
|
|
||||||
</NLi>
|
|
||||||
<NLi>RayTable 完全继承 DataTable 的所有属性与方法</NLi>
|
|
||||||
<NLi>
|
|
||||||
相关拓展 props 属性,可以在源码位置
|
|
||||||
src/components/RayTable/src/props.ts 中查看相关代码与注释
|
|
||||||
</NLi>
|
|
||||||
<NLi>该组件可以配合 RayCollapseGird 组件使用实现可折叠搜索栏</NLi>
|
|
||||||
</NUl>
|
|
||||||
<NH2>配合 RayCollapseGird 组件使用与 RayTable 拓展功能</NH2>
|
|
||||||
<NP>
|
|
||||||
使用响应式方法代理 columns 并且打开 action
|
|
||||||
则可以启用操作栏(v-model:columns)
|
|
||||||
</NP>
|
|
||||||
<NP>拖拽操作栏动态切换表格列</NP>
|
|
||||||
<NP>点击左右固定按钮,即可动态固定列</NP>
|
|
||||||
<NP>点击修改列宽度,即可拖动列修改宽度</NP>
|
|
||||||
<NP>点击导出按钮即可导出 excel 表格,默认以列为表头输出</NP>
|
|
||||||
<NP>点击打印按钮即可打印该表格</NP>
|
|
||||||
<NP>右键菜单</NP>
|
|
||||||
<NP>全屏表格</NP>
|
|
||||||
<RCollapseGrid
|
<RCollapseGrid
|
||||||
bordered={false}
|
bordered={false}
|
||||||
collapsedRows={this.gridCollapsedRows}
|
collapsedRows={this.gridCollapsedRows}
|
||||||
@ -224,7 +198,6 @@ const TableView = defineComponent({
|
|||||||
</RCollapseGrid>
|
</RCollapseGrid>
|
||||||
<RTable
|
<RTable
|
||||||
style="margin-top: 18px"
|
style="margin-top: 18px"
|
||||||
ref="tableRef"
|
|
||||||
scrollX={2000}
|
scrollX={2000}
|
||||||
title={
|
title={
|
||||||
<NSpace align="center">
|
<NSpace align="center">
|
||||||
@ -242,33 +215,30 @@ const TableView = defineComponent({
|
|||||||
contextMenuOptions={this.tableMenuOptions}
|
contextMenuOptions={this.tableMenuOptions}
|
||||||
loading={this.tableLoading}
|
loading={this.tableLoading}
|
||||||
onContextMenuClick={this.handleMenuSelect.bind(this)}
|
onContextMenuClick={this.handleMenuSelect.bind(this)}
|
||||||
></RTable>
|
toolOptions={[
|
||||||
{/* <RayTable
|
<NPopover>
|
||||||
style="margin-top: 18px"
|
{{
|
||||||
ref="tableRef"
|
trigger: () => (
|
||||||
scrollX={2000}
|
<RIcon
|
||||||
title={
|
name="search"
|
||||||
<NSpace align="center">
|
size="18"
|
||||||
<span>标题插槽:</span>
|
cursor="pointer"
|
||||||
<NSwitch
|
onClick={() => {
|
||||||
onUpdateValue={(value: boolean) => (this.tableLoading = value)}
|
window.$message.info('点击了搜索按钮')
|
||||||
></NSwitch>
|
|
||||||
</NSpace>
|
|
||||||
}
|
|
||||||
data={this.tableData}
|
|
||||||
v-model:columns={this.actionColumns}
|
|
||||||
pagination={{
|
|
||||||
pageSize: 10,
|
|
||||||
}}
|
}}
|
||||||
loading={this.tableLoading}
|
/>
|
||||||
rightClickOptions={this.tableMenuOptions}
|
),
|
||||||
onRightMenuClick={this.handleMenuSelect.bind(this)}
|
default: () => '我是自定义工具栏示例',
|
||||||
|
}}
|
||||||
|
</NPopover>,
|
||||||
|
]}
|
||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
tableFooter: () => '表格的底部内容区域插槽,有时候你可能会用上',
|
tableFooter: () => '表格的底部内容区域插槽,有时候你可能会用上',
|
||||||
|
tableAction: () => '表格的操作区域内容插槽,有时候可能会用上',
|
||||||
}}
|
}}
|
||||||
</RayTable> */}
|
</RTable>
|
||||||
</div>
|
</NSpace>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -175,7 +175,6 @@ export default function (mode: string): PluginOption[] {
|
|||||||
'vuedraggable',
|
'vuedraggable',
|
||||||
'xlsx',
|
'xlsx',
|
||||||
'axios',
|
'axios',
|
||||||
'screenfull',
|
|
||||||
'print-js',
|
'print-js',
|
||||||
'clipboard',
|
'clipboard',
|
||||||
'lodash-es',
|
'lodash-es',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user