mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
show clipboard when writeText or readText is not available
This commit is contained in:
parent
78fe08a029
commit
a67d1d0e4f
@ -21,7 +21,7 @@ This app uses Web RTC to stream a desktop inside of a docker container. This is
|
|||||||
## Differences to original repository.
|
## Differences to original repository.
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
- Clipboard button with text area - for browsers, that don't support clipboard syncing or for HTTP.
|
- Clipboard button with text area - for browsers, that don't support clipboard syncing (FireFox, what a shame...) or for HTTP.
|
||||||
- Keyboard modifier state synchronization (Num Lock, Caps Lock, Scroll Lock) for each hosting.
|
- Keyboard modifier state synchronization (Num Lock, Caps Lock, Scroll Lock) for each hosting.
|
||||||
- Added chromium ungoogled (with h265 support) an kept up to date by @whalehub.
|
- Added chromium ungoogled (with h265 support) an kept up to date by @whalehub.
|
||||||
- Added Picture in Picture button (only for watching screen, controlling not possible).
|
- Added Picture in Picture button (only for watching screen, controlling not possible).
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-if="!fullscreen" class="video-menu bottom">
|
<ul v-if="!fullscreen" class="video-menu bottom">
|
||||||
<li v-if="hosting && !clipboard_available"><i @click.stop.prevent="onClipboard" class="fas fa-clipboard"></i></li>
|
<li v-if="hosting && (!clipboard_read_available || !clipboard_write_available)"><i @click.stop.prevent="onClipboard" class="fas fa-clipboard"></i></li>
|
||||||
<li>
|
<li>
|
||||||
<i
|
<i
|
||||||
@click.stop.prevent="requestPictureInPicture"
|
@click.stop.prevent="requestPictureInPicture"
|
||||||
@ -47,7 +47,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<neko-resolution ref="resolution" v-if="admin" />
|
<neko-resolution ref="resolution" v-if="admin" />
|
||||||
<neko-clipboard ref="clipboard" v-if="hosting && !clipboard_available" />
|
<neko-clipboard ref="clipboard" v-if="hosting && (!clipboard_read_available || !clipboard_write_available)" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -272,8 +272,12 @@
|
|||||||
return this.$accessor.settings.scroll_invert
|
return this.$accessor.settings.scroll_invert
|
||||||
}
|
}
|
||||||
|
|
||||||
get clipboard_available() {
|
get clipboard_read_available() {
|
||||||
return 'clipboard' in navigator
|
return 'clipboard' in navigator && typeof navigator.clipboard.readText === 'function'
|
||||||
|
}
|
||||||
|
|
||||||
|
get clipboard_write_available() {
|
||||||
|
return 'clipboard' in navigator && typeof navigator.clipboard.writeText === 'function'
|
||||||
}
|
}
|
||||||
|
|
||||||
get clipboard() {
|
get clipboard() {
|
||||||
@ -349,7 +353,7 @@
|
|||||||
|
|
||||||
@Watch('clipboard')
|
@Watch('clipboard')
|
||||||
onClipboardChanged(clipboard: string) {
|
onClipboardChanged(clipboard: string) {
|
||||||
if (this.clipboard_available && typeof navigator.clipboard.writeText === 'function') {
|
if (this.clipboard_write_available) {
|
||||||
navigator.clipboard.writeText(clipboard).catch(console.error)
|
navigator.clipboard.writeText(clipboard).catch(console.error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -479,7 +483,7 @@
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.hosting && this.clipboard_available && typeof navigator.clipboard.readText === 'function') {
|
if (this.hosting && this.clipboard_read_available) {
|
||||||
navigator.clipboard
|
navigator.clipboard
|
||||||
.readText()
|
.readText()
|
||||||
.then((text) => {
|
.then((text) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user