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

Draft: Feature/vue3 #631

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Multiple select is a jQuery plugin to select multiple elements with checkboxes :

To get started checkout examples and documentation at <http://multiple-select.wenzhixin.net.cn>.

> [!NOTE]
> Version 2.x of this package is compatible with Vue 3 default. If you're still on Vue 2, install the previous version with `npm i multiple-select@1`

## Examples

* http://multiple-select.wenzhixin.net.cn/examples
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "multiple-select",
"main": "dist/multiple-select.min.js",
"module": "dist/multiple-select-es.min.js",
"version": "1.7.0",
"version": "2.0.9",
"type": "module",
"title": "Multiple Select",
"description": "Multiple select is a jQuery plugin to select multiple elements with checkboxes :).",
Expand All @@ -16,7 +16,7 @@
"js:build:min": "rollup -c --config-env PRODUCTION",
"js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
"js:build": "run-s js:build:*",
"css:build:scss": "node-sass --output-style expanded src -o src",
"css:build:scss": "sass --style=expanded src:src",
"css:build:base": "mkdir -p dist/themes && find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
"css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
"css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
Expand All @@ -25,7 +25,7 @@
"build": "run-s lint clean *:build",
"docs": "cd site/website && yarn install && yarn build",
"docs-server": "cd site/website && yarn start",
"css:dev": "node-sass --watch --output-style expanded src -o src",
"css:dev": "sass --watch --style=expanded src:src",
"dev": "yarn css:dev & yarn docs-server"
},
"peerDependencies": {
Expand Down Expand Up @@ -63,7 +63,7 @@
"getopts": "^2.3.0",
"glob": "^10.3.10",
"headr": "^0.0.4",
"node-sass": "^9.0.0",
"sass": "^1.69.5",
"npm-run-all": "^4.1.5",
"rollup": "^4.5.1",
"rollup-plugin-inject": "^3.0.2",
Expand Down
33 changes: 20 additions & 13 deletions src/MultipleSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ import Constants from './constants/index.js'
import VirtualScroll from './virtual-scroll/index.js'
import {
compareObjects,
removeDiacritics,
findByParam,
setDataKeys,
getDocumentClickEvent,
removeDiacritics,
removeUndefined,
getDocumentClickEvent
setDataKeys,
toRaw
} from './utils/index.js'

class MultipleSelect {
Expand Down Expand Up @@ -158,7 +159,15 @@ class MultipleSelect {
value: it
}
}
return it

if (it.children?.length) {
return {
...it,
children: it.children.map(it => ({ ...it }))
}
}

return { ...it }
})
} else if (typeof this.options.data === 'object') {
for (const [value, text] of Object.entries(this.options.data)) {
Expand Down Expand Up @@ -199,8 +208,8 @@ class MultipleSelect {
row.disabled = groupDisabled || elm.disabled
row.classes = elm.getAttribute('class') || ''
row.title = elm.getAttribute('title') || ''
if ($elm.data('value')) {
row._value = $elm.data('value') // value for object
if (elm._value || $elm.data('value')) {
row._value = elm._value || $elm.data('value') // value for object
}
if (Object.keys($elm.data()).length) {
row._data = $elm.data()
Expand Down Expand Up @@ -464,11 +473,7 @@ class MultipleSelect {
const customStyle = this.options.styler(row)
const style = customStyle ? `style="${customStyle}"` : ''

classes += row.classes || ''

if (level && this.options.single) {
classes += `option-level-${level} `
}
classes += `${row.classes || ''} option-level-${level} `

if (row.divider) {
return '<li class="option-divider"/>'
Expand Down Expand Up @@ -807,7 +812,7 @@ class MultipleSelect {

if (this.$selectAll.length) {
this.$selectAll.prop('checked', this.allSelected)
.closest('li').toggle(!noResult)
.closest('li').toggleClass('selected', this.allSelected).toggle(!noResult)
}

this.$noResults.toggle(noResult)
Expand Down Expand Up @@ -880,7 +885,9 @@ class MultipleSelect {
if (type === 'text') {
selected = values.includes($('<div>').html(row.text).text().trim())
} else {
selected = values.includes(row._value || row.value)
const value = toRaw(row._value || row.value)

selected = values.some(item => toRaw(item) === value)
if (!selected && row.value === `${+row.value}`) {
selected = values.includes(+row.value)
}
Expand Down
4 changes: 4 additions & 0 deletions src/multiple-select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@
}
}

&.group ~ li.option-level-1:not(.hide-radio) > label {
padding-left: 40px;
}

&.option-divider {
padding: 0;
border-top: 1px solid #e9ecef;
Expand Down
70 changes: 39 additions & 31 deletions src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,32 @@ const compareObjects = (objectA, objectB, compareLength) => {
return true
}

const findByParam = (data, param, value) => {
for (const row of data) {
if (
row[param] === value ||
row[param] === `${+row[param]}` && +row[param] === value
) {
return row
}
if (row.type === 'optgroup') {
for (const child of row.children) {
if (
child[param] === value ||
child[param] === `${+child[param]}` && +child[param] === value
) {
return child
}
}
}
}
}

const getDocumentClickEvent = (id = '') => {
id = id || `${+new Date()}${~~(Math.random() * 1000000)}`
return `click.multiple-select-${id}`
}

const removeDiacritics = str => {
if (str.normalize) {
return str.normalize('NFD').replace(/[\u0300-\u036F]/g, '')
Expand Down Expand Up @@ -111,6 +137,11 @@ const removeDiacritics = str => {
}, str)
}

const removeUndefined = obj => {
Object.keys(obj).forEach(key => obj[key] === undefined ? delete obj[key] : '')
return obj
}

const setDataKeys = data => {
let total = 0

Expand Down Expand Up @@ -140,42 +171,19 @@ const setDataKeys = data => {
return total
}

const findByParam = (data, param, value) => {
for (const row of data) {
if (
row[param] === value ||
row[param] === `${+row[param]}` && +row[param] === value
) {
return row
}
if (row.type === 'optgroup') {
for (const child of row.children) {
if (
child[param] === value ||
child[param] === `${+child[param]}` && +child[param] === value
) {
return child
}
}
}
const toRaw = proxy => {
if (proxy && typeof proxy === 'object' && proxy.__v_raw) {
return proxy.__v_raw
}
}

const removeUndefined = obj => {
Object.keys(obj).forEach(key => obj[key] === undefined ? delete obj[key] : '')
return obj
}

const getDocumentClickEvent = (id = '') => {
id = id || `${+new Date()}${~~(Math.random() * 1000000)}`
return `click.multiple-select-${id}`
return proxy
}

export {
compareObjects,
removeDiacritics,
setDataKeys,
findByParam,
getDocumentClickEvent,
removeDiacritics,
removeUndefined,
getDocumentClickEvent
setDataKeys,
toRaw
}
Loading