mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
161 lines
3.9 KiB
Vue
161 lines
3.9 KiB
Vue
|
<template>
|
||
|
<section class="container">
|
||
|
<div>
|
||
|
<app-logo/>
|
||
|
<h1 class="title">
|
||
|
web-worker
|
||
|
</h1>
|
||
|
<h2 class="subtitle">
|
||
|
Nuxt.js project
|
||
|
</h2>
|
||
|
<p>{{ notification }}</p>
|
||
|
<ul class="list">
|
||
|
<li>Number of Web Workers: {{ workers.length }}</li>
|
||
|
<li>Number of long Running Workers: {{ longRunningWorkers.length }}</li>
|
||
|
<li>Number of unused Workers: {{ workers.filter(w => !w.inUse).length }}</li>
|
||
|
</ul>
|
||
|
<div class="links">
|
||
|
<a
|
||
|
:class="needWorkerSetup ? 'hidden' : 'visible'"
|
||
|
@click="test"
|
||
|
class="button button--green">Test Worker</a>
|
||
|
<a
|
||
|
:class="needWorkerSetup ? 'hidden' : 'visible'"
|
||
|
@click="long(4000)"
|
||
|
class="button button--green">Execute long running Worker</a>
|
||
|
<a
|
||
|
:class="needWorkerSetup || !longRunningWorkers.length ? 'hidden' : 'visible'"
|
||
|
@click="freeWorker"
|
||
|
class="button button--green">Free long running Worker</a>
|
||
|
<a
|
||
|
@click="removeWorker"
|
||
|
class="button button--grey">Remove Web Worker</a>
|
||
|
<a
|
||
|
@click="createWorkers"
|
||
|
class="button button--grey">Create more Workers</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AppLogo from '~/components/AppLogo.vue'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
AppLogo
|
||
|
},
|
||
|
computed: {
|
||
|
needWorkerSetup () {
|
||
|
return this.workers.length === 0 && this.longRunningWorkers.length === 0
|
||
|
}
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
notification: '',
|
||
|
workers: [],
|
||
|
workerIndex: 0,
|
||
|
longRunningWorkers: [],
|
||
|
longIndex: 0
|
||
|
}
|
||
|
},
|
||
|
watch: {
|
||
|
workers (workers) {
|
||
|
if (workers.length === 0) this.notification = 'Zero free Web Workers - click "Create more Workers"'
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
test () {
|
||
|
const worker = this.workers[this.workerIndex++ % this.workers.length]
|
||
|
|
||
|
if (worker) worker.postMessage({ hello: 'world' })
|
||
|
else this.notification = 'No more test workers available'
|
||
|
},
|
||
|
long (miliseconds) {
|
||
|
let worker = this.workers.shift()
|
||
|
|
||
|
if (worker) {
|
||
|
worker.onmessage = (event) => {
|
||
|
console.log(`expensive made ${event.data} loops`)
|
||
|
}
|
||
|
this.longRunningWorkers.push(worker)
|
||
|
} else {
|
||
|
worker = this.longRunningWorkers[ this.longIndex++ % this.longRunningWorkers.length]
|
||
|
}
|
||
|
|
||
|
worker.postMessage({ action: 'expensive', time: miliseconds })
|
||
|
},
|
||
|
freeWorker () {
|
||
|
const worker = this.longRunningWorkers.pop()
|
||
|
worker.onmessage = null
|
||
|
this.workers.push(worker)
|
||
|
this.notification = 'Worker freed'
|
||
|
},
|
||
|
removeWorker () {
|
||
|
const worker = this.workers.pop() || this.longRunningWorkers.pop()
|
||
|
|
||
|
if (!worker) return
|
||
|
|
||
|
if (this.longRunningWorkers.indexOf(worker) > -1) this.longRunningWorkers.splice(this.longRunningWorkers.indexOf(worker), 1)
|
||
|
|
||
|
worker.onmessage = null
|
||
|
worker.terminate()
|
||
|
},
|
||
|
createWorkers () {
|
||
|
if (process.browser) {
|
||
|
for(let i = 0, len = navigator.hardwareConcurrency || 1; i < len; i++) {
|
||
|
this.workers.push(this.$worker.createWorker())
|
||
|
}
|
||
|
|
||
|
this.notification = 'Go nuts!'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.hidden {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
.visible {
|
||
|
visibility: visible;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
min-height: 100vh;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
font-family: "Quicksand", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* 1 */
|
||
|
display: block;
|
||
|
font-weight: 300;
|
||
|
font-size: 100px;
|
||
|
color: #35495e;
|
||
|
letter-spacing: 1px;
|
||
|
}
|
||
|
|
||
|
.subtitle {
|
||
|
font-weight: 300;
|
||
|
font-size: 42px;
|
||
|
color: #526488;
|
||
|
word-spacing: 5px;
|
||
|
padding-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
.links {
|
||
|
padding-top: 15px;
|
||
|
}
|
||
|
|
||
|
.list {
|
||
|
text-align: left;
|
||
|
color: #526488;
|
||
|
list-style: none;
|
||
|
}
|
||
|
</style>
|