Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Simon-He95/vue3-right-click-menu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.4
Choose a base ref
...
head repository: Simon-He95/vue3-right-click-menu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.5
Choose a head ref
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Apr 12, 2023

  1. chore: update

    Simon-He95 committed Apr 12, 2023
    Copy the full SHA
    71e53bc View commit details

Commits on May 5, 2023

  1. Copy the full SHA
    a9c99bc View commit details
  2. chore: release v0.0.5

    Simon-He95 committed May 5, 2023
    Copy the full SHA
    e0b86b4 View commit details
Showing with 65 additions and 17 deletions.
  1. +4 −3 README.md
  2. BIN assets/kv.png
  3. +2 −2 package.json
  4. +13 −5 pnpm-lock.yaml
  5. +33 −7 src/rightClick.ts
  6. +13 −0 src/useViewport.ts
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## vue3-right-click-menu
vue3右键菜单组件
<p align="center">
<img src="./assets/kv.png"/>
</p>
vue3右键菜单组件

## demo
![demo](./assets/demo.gif)

## Install
Binary file added assets/kv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue3-right-click-menu",
"version": "0.0.4",
"version": "0.0.5",
"packageManager": "pnpm@7.18.2",
"description": "vue3-right-click-menu",
"author": "Simon He",
@@ -82,7 +82,7 @@
"unocss": "^0.51.2",
"vite": "^4.0.0",
"vitest": "^0.13.1",
"vue3-right-click-menu": "workspace:^0.0.3"
"vue3-right-click-menu": "^0.0.3"
},
"lint-staged": {
"*": [
18 changes: 13 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 33 additions & 7 deletions src/rightClick.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { DefineComponent, PropType } from 'vue'
import { type Ref, Teleport, Transition, computed, defineComponent, h, ref } from 'vue'
import { useContextMenu } from './contextMenu'
import type { DefineComponent, PropType, Ref } from 'vue'
import { Teleport, Transition, computed, defineComponent, h, nextTick, ref, watch } from 'vue'
import type { Props } from './types'
import { useContextMenu } from './contextMenu'
import useViewport from './useViewport'

export const RightClick = defineComponent({
name: 'RightClick',
@@ -14,15 +15,39 @@ export const RightClick = defineComponent({
emits: ['select'],
setup(props, { emit, slots }) {
const containerRef: Ref<HTMLElement | undefined> = ref()
const menuRef: Ref<HTMLElement | undefined> = ref()
const { x, y, showMenu } = useContextMenu(containerRef)
const _w = ref(0)
const _h = ref(0)
const { vw, vh } = useViewport()

watch(() => showMenu.value, async (v) => {
if (v) {
await nextTick()
const menuEl = menuRef.value
if (!menuEl)
return
_w.value = menuEl.clientWidth
_h.value = menuEl.clientHeight
}
})
const handleClick = (item: Record<string, string>) => {
showMenu.value = false
emit('select', item)
}
const styleComputed = computed(() => ({
left: `${x.value}px`,
top: `${y.value}px`,
}))

const styleComputed = computed(() => {
let posX = x.value
let posY = y.value
if (x.value > vw.value - _w.value)
posX -= _w.value
if (y.value > vh.value - _h.value)
posY -= y.value - vh.value + _h.value
return {
left: `${posX}px`,
top: `${posY}px`,
}
})

return () => h('div', {
'ref': containerRef,
@@ -60,6 +85,7 @@ export const RightClick = defineComponent({
},
h('div', {
class: 'menu-list',
ref: menuRef,
}, props.menu.map(item => h('div', {
key: item.label,
class: 'menu-item',
13 changes: 13 additions & 0 deletions src/useViewport.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { ref } from 'vue'
const vw = ref(document.documentElement.clientWidth)
const vh = ref(document.documentElement.clientHeight)
export default function () {
window.addEventListener('resize', () => {
vw.value = document.documentElement.clientWidth
vh.value = document.documentElement.clientHeight
})
return {
vw,
vh,
}
}