Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

9 feature add styles exports #10

Merged
merged 6 commits into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm run ci-all
- run: pnpm test

build_and_publish:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ node_modules
dist
dist-ssr
coverage
coverage-e2e
coverage-unit
*.local

/cypress/videos/
Expand Down Expand Up @@ -41,3 +43,5 @@ robots.txt
urls.txt

*.tsbuildinfo
.nyc_output
screenshots
6 changes: 6 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
"request": "launch",
"type": "node-terminal"
},
{
"command": "pnpm test",
"name": "Debug vitest",
"request": "launch",
"type": "node-terminal"
},
{
"type": "chrome",
"request": "attach",
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,13 @@ Customizable native Vue3 data grid with very limited dependencies. Leverages a f

## Release Notes

### v3.2.0
- [#9](https://github.com/nruffing/data-grid-vue/issues/9): Add package export so styles can be loaded via `data-grid-vue/style`.
- Fix bug in `ClientSideDataService` where paging through a sorted grid could cause data to not stay sorted.
- Update ['dragon-drop-vue'](https://www.npmjs.com/package/dragon-drop-vue) dependency to v2.1.0 to leverage ability to debounce the `dragover` event.
- Replace [`debounce`](https://www.npmjs.com/package/debounce) with new [`native-event-vue`](https://www.npmjs.com/package/native-event-vue) package to leverage the lightweight vue-friendly native event handling with debounce.
- Update development dependencies.

### v3.1.0
- Update ['dragon-drop-vue'](https://www.npmjs.com/package/dragon-drop-vue) dependency to v1.1.0
- update development dependencies
Expand Down
3 changes: 3 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"clickanalytics",
"datagridvue",
"docsearch",
"dragover",
"gapi",
"keyvault",
"navigatable",
Expand All @@ -17,9 +18,11 @@
"prismjs",
"shiki",
"showcolumnselection",
"typecheck",
"vnode",
"vuejs",
"vuepress",
"webdriverio",
"xmldocmd"
],
"ignoreWords": ["datagrid", "Freepik"],
Expand Down
11 changes: 5 additions & 6 deletions dev-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,16 @@
"@babel/types": "^7.23.6",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/tsconfig": "^0.5.1",
"tslib": "^2.6.2",
"typescript": "~5.3.3",
"vite": "^5.0.10",
"vue": "^3.3.13",
"vite": "^5.0.11",
"vue": "^3.4.12",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.25"
"vue-tsc": "^1.8.27"
},
"dependencies": {
"debounce": "^2.0.0",
"dragon-drop-vue": "^1.1.0"
"data-grid-vue": "workspace:*"
}
}
Binary file added dev-app/public/favicon.ico
Binary file not shown.
8 changes: 6 additions & 2 deletions dev-app/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import { DataGridVue } from '../../lib/main'
import { DataGridVue } from 'data-grid-vue'
import 'data-grid-vue/style'

createApp(App).use(router).use(DataGridVue).mount('#app')
createApp(App)
.use(router)
.use(DataGridVue, { dragonDropVueOptions: { debugLog: true } })
.mount('#app')
76 changes: 76 additions & 0 deletions lib/DataService.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
import { expect, test, describe } from 'vitest'
import { ClientSideDataService, StubDataService } from './DataService'
import { SortType } from './Sort'
import { DataType } from './DataGridVue'

interface TestDataItem {
id: number
name: string
}

const TestDataItemOne = { id: 1, name: 'Test 1' }
const TestDataItemTwo = { id: 2, name: 'Test 2' }
const TestDataItemThree = { id: 3, name: 'Test 3' }
const TestDataItemFour = { id: 4, name: 'Test 4' }
const TestDataItemFive = { id: 5, name: 'Test 5' }

const TestDataSet = [TestDataItemThree, TestDataItemTwo, TestDataItemFour, TestDataItemFive, TestDataItemOne] as TestDataItem[]

describe('StubDataService', () => {
test('getPageAsync', async () => {
const pageData = await StubDataService.getPageAsync(1, 10, [], undefined)
expect(pageData).toEqual({
totalItems: 0,
dataItems: [],
})
})
})

describe('ClientSideDataService', () => {
test('getPageAsync | pages', async () => {
const dataService = new ClientSideDataService([...TestDataSet])
const pageDataOne = await dataService.getPageAsync(1, 2, [], undefined)
const pageDataTwo = await dataService.getPageAsync(2, 1, [], undefined)
const pageDataThree = await dataService.getPageAsync(2, 3, [], undefined)
expect(pageDataOne).toEqual({
totalItems: TestDataSet.length,
dataItems: [TestDataItemThree, TestDataItemTwo],
})
expect(pageDataTwo).toEqual({
totalItems: TestDataSet.length,
dataItems: [TestDataItemTwo],
})
expect(pageDataThree).toEqual({
totalItems: TestDataSet.length,
dataItems: [TestDataItemFive, TestDataItemOne],
})
})

test('getPageAsync | sorts', async () => {
const dataService = new ClientSideDataService([...TestDataSet])

const testCases = [
{
sort: { fieldName: 'id', dataType: DataType.number, type: SortType.descending },
pageNum: 1,
pageSize: 2,
expected: [TestDataItemFive, TestDataItemFour],
},
{
sort: { fieldName: 'id', dataType: DataType.number, type: SortType.descending },
pageNum: 2,
pageSize: 2,
expected: [TestDataItemThree, TestDataItemTwo],
},
{ sort: { fieldName: 'id', dataType: DataType.number, type: SortType.descending }, pageNum: 3, pageSize: 2, expected: [TestDataItemOne] },
]

for (const testCase of testCases) {
const pageData = await dataService.getPageAsync(testCase.pageNum, testCase.pageSize, [testCase.sort], undefined)
expect(pageData).toEqual({
totalItems: TestDataSet.length,
dataItems: testCase.expected,
})
}
})
})
20 changes: 8 additions & 12 deletions lib/DataService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,16 @@ export class ClientSideDataService implements DataService {
}

sort(sort: Sort[]) {
this.sorted = [...this.filtered]

if (!sort?.length && this.previousSortJson === '[]') {
if (!sort?.length) {
this.sorted = [...this.filtered]
this.previousSortJson = '[]'
return
}

if (!sort?.length) {
this.previousSortJson = '[]'
} else {
const sortJson = JSON.stringify(sort)
if (sortJson !== this.previousSortJson) {
ClientSideSort.sort(sort, this.sorted)
this.previousSortJson = sortJson
}
const sortJson = JSON.stringify(sort)
if (sortJson !== this.previousSortJson) {
ClientSideSort.sort(sort, this.sorted)
this.previousSortJson = sortJson
}
}

Expand Down Expand Up @@ -103,7 +99,7 @@ export class ClientSideDataService implements DataService {
const endIndex = startIndex + pageSize

if (startIndex >= this.dataItems.length) {
console.warn(`ClientSideDataRepository - getPage - pageNum exceeds data length`)
console.warn(`ClientSideDataService - getPage - pageNum exceeds data length`)
return Promise.resolve(EmptyPageData)
}

Expand Down
10 changes: 4 additions & 6 deletions lib/components/DataGridVue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@

<script lang="ts">
import { defineComponent, type PropType, nextTick, type SlotsType } from 'vue'
import debounce from 'debounce'
import { useNativeEvent, type NativeEvent, DebounceMode } from 'native-event-vue'
import { DataType, Field, type Column } from '../DataGridVue'
import { type DataService, StubDataService, ClientSideDataService, type ServerSideDataServiceOptions, ServerSideDataService } from '../DataService'
import { type Sort, type SortOptions, SortType } from '../Sort'
Expand Down Expand Up @@ -307,7 +307,7 @@ interface Data {
filters: FilterCondition[]
filterOptionsShown: boolean
externalFilter: Filter | undefined
windowResizeDebounce: any | undefined
windowResizeDebounce: NativeEvent | undefined
columnWidths: string[]
draggingColumn: Column | undefined
popupOptions:
Expand Down Expand Up @@ -788,16 +788,14 @@ export default defineComponent({

await this.loadPageDataAsync()

this.windowResizeDebounce = debounce(this.onWindowResize, 50)
window.addEventListener('resize', this.windowResizeDebounce)
this.windowResizeDebounce = useNativeEvent(window, 'resize', this.onWindowResize, undefined, 200, DebounceMode.MaximumFrequency)

nextTick(() => {
this.calculateColumnWidths()
})
},
beforeUnmount() {
window.removeEventListener('resize', this.windowResizeDebounce)
this.windowResizeDebounce?.clear()
this.windowResizeDebounce?.destroy()
this.windowResizeDebounce = undefined
},
watch: {
Expand Down
40 changes: 26 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-grid-vue",
"version": "3.1.0",
"version": "3.2.0",
"type": "module",
"private": false,
"description": "Customizable native Vue3 data grid with very limited dependencies. Leverages a flat html structure and CSS grid to allow full layout control.",
Expand Down Expand Up @@ -44,7 +44,8 @@
"types": "./dist/types/main.d.ts",
"import": "./dist/data-grid-vue.js",
"require": "./dist/data-grid-vue.umd.cjs"
}
},
"./style": "./dist/style.css"
},
"types": "./dist/types/main.d.ts",
"main": "dist/data-grid-vue.umd.js",
Expand All @@ -57,6 +58,8 @@
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"ci-all": "pnpm i && pnpm run --recursive build",
"test": "vitest",
"test:unit": "vitest --run",
"format": "pnpm exec prettier --write \"./**/*.{ts,json,vue,css}\"",
"upgrade-all": "ncu --upgrade",
"check-upgrade-all": "clear && ncu",
Expand Down Expand Up @@ -84,35 +87,44 @@
"@types/adm-zip": "^0.5.5",
"@types/debounce": "^1.2.4",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/browser": "^1.2.0",
"@vue/tsconfig": "^0.5.1",
"@vuepress/utils": "2.0.0-rc.0",
"adm-zip": "^0.5.10",
"cspell": "^8.1.3",
"cspell": "^8.3.2",
"dotenv": "^16.3.1",
"googleapis": "^129.0.0",
"googleapis": "^130.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"markdown-include": "^0.4.3",
"npm-check-updates": "^16.14.12",
"prettier": "^3.1.1",
"prettier": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "4.0.0-next.38",
"typedoc-plugin-mdn-links": "^3.1.8",
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "4.0.0-next.40",
"typedoc-plugin-mdn-links": "^3.1.11",
"typedoc-plugin-vue": "^1.1.0",
"typescript": "~5.3.3",
"vite": "^5.0.10",
"vue": "^3.3.13",
"vite": "^5.0.11",
"vitest": "^1.2.0",
"vue": "^3.4.12",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.25"
"vue-tsc": "^1.8.27",
"webdriverio": "^8.27.2"
},
"dependencies": {
"debounce": "^2.0.0",
"dragon-drop-vue": "^1.1.0"
"dragon-drop-vue": "^2.1.0",
"native-event-vue": "^1.4.0"
},
"lint-staged": {
"*.{ts,json,vue,css}": "prettier --write"
},
"pnpm": {
"overrides": {
"glob-parent@<5.1.2": ">=5.1.2",
"follow-redirects@<1.15.4": ">=1.15.4"
}
}
}
Loading