Skip to content

Commit 7ce8c08

Browse files
committed
fix a bunch of things
1 parent 161c48a commit 7ce8c08

File tree

7 files changed

+298
-63
lines changed

7 files changed

+298
-63
lines changed

.npmignore

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7+
8+
demo/
79
node_modules/
10+
public/
811
.env
912
tests
1013
.browserslistrc
14+
.editorconfig
1115
.eslintignore
1216
.eslintrc.js
13-
.postcssrc.js
17+
.gitignore
1418
babel.config.js
15-
bili.config.js
16-
jest.config.js
19+
changelog.md
20+
postcss.config.js
1721
vue.config.js

README.md

+49-32
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
# vue-plyr
2-
>v6.0.0 - [Changelog](https://github.com/redxtech/vue-plyr/blob/master/changelog.md)
2+
>v6.0.1 - [Changelog](https://github.com/redxtech/vue-plyr/blob/master/changelog.md)
33
4-
>A vue component for the plyr video & audio player.
4+
A vue component for the plyr video & audio player.
55

66
This is useful for when you want a nice video player in your Vue app.
77

8-
It uses [plyr](https://plyr.io) v3 for the players.
8+
It uses [plyr](https://plyr.io) by [sampotts](https://github.com/sampotts) v3 for the players.
99

1010
Supported player types: HTML5 video, HTML5 audio, YouTube (div & progressive
1111
enhancement), and Vimeo (div & progressive enhancement).
1212

1313
## Installation
14-
1514
```bash
16-
yarn add vue-plyr plyr # or npm i vue-plyr plyr
15+
yarn add vue-plyr # or npm i vue-plyr
1716
```
1817

1918
### Module
20-
2119
```js
2220
// In your main vue file - the one where you create the initial vue instance.
2321
import Vue from 'vue'
@@ -32,10 +30,19 @@ Vue.use(VuePlyr, {
3230
})
3331
```
3432

35-
## Usage
33+
### SSR [(more below)](#SSR)
34+
For SSR you can import the SSR optimized module, found at `./dist/vue-plyr.ssr.js`.
35+
There is a more in depth description on how to use it with [nuxt](#nuxt) below.
3636

37-
Once installed, it can be used in a template as simply as:
37+
### Browser
38+
In the browser you can include it as you would any other package: with unpkg.
39+
```html
40+
<script type="text/javascript" src="https://unpkg.com/vue"></script>
41+
<script type="text/javascript" src="https://unpkg.com/vue-plyr"></script>
42+
```
3843

44+
## Usage
45+
Once installed, it can be used in a template as simply as:
3946
```vue
4047
<!-- video element -->
4148
<vue-plyr>
@@ -86,27 +93,29 @@ Once installed, it can be used in a template as simply as:
8693
```
8794

8895
## Player Instance
89-
90-
To access the player instance, you have two options. The preferred
91-
method is to access the player through the `refs` attribute.
96+
To access the player instance, you can use the `refs` attribute.
9297

9398
```html
9499
<template>
95100
<vue-plyr ref="plyr"></vue-plyr>
96101
</template>
102+
97103
<script>
98-
'Component',
104+
export default {
105+
name: 'Component',
106+
computed () {
107+
player () {
108+
return this.$refs.plyr.player
109+
}
110+
},
99111
mounted () {
100112
console.log(this.player)
101-
},
102-
{
103-
player () { return this.$refs.plyr.player }
104113
}
114+
}
105115
</script>
106116
```
107117

108118
## Events
109-
110119
If you want to capture events from the plyr instance, there are a few
111120
options:
112121

@@ -121,15 +130,18 @@ Valid events are [here](https://github.com/sampotts/plyr#events).
121130
<vue-plyr ref="plyr"></vue-plyr>
122131
</template>
123132
<script>
124-
'Component',
133+
export default {
134+
name: 'Component',
135+
computed () {
136+
player () {
137+
return this.$refs.plyr.player
138+
}
139+
},
125140
mounted () {
126141
this.player.on('event', () => console.log('event fired'))
127-
},
128-
{
129-
player () { return this.$refs.plyr.player }
130142
}
131143
</script>
132-
```
144+
``
133145
134146
The other way is to just pass an array of the
135147
events you want emitted.
@@ -139,21 +151,20 @@ events you want emitted.
139151
```
140152
141153
## Options
142-
143154
For custom options you can pass an `options` prop which is an object
144155
that will be passed to the `new Plyr()` creation. Available options
145156
[here](https://github.com/sampotts/plyr#options). I added an additional
146157
option (`hideYouTubeDOMError`) that hides the error that is always
147158
logged when destroying a YouTube player. It defaults to `true`, and you
148-
can disable it to see the error by setting it to false.
159+
can disable it and see the error by setting it to false.
149160
150161
## SSR
151-
152-
This should support SSR out of the box. For nuxt, create a file called `vue-plyr.js` in your plugins folder containing
153-
only the three lines:
162+
### Nuxt
163+
This should support SSR out of the box. For [nuxt](https://nuxtjs.org/), create a file called `vue-plyr.js` in your plugins folder containing
164+
only these three statements:
154165
```js
155166
import Vue from 'vue'
156-
import VuePlyr from 'vue-plyr'
167+
import VuePlyr from 'vue-plyr/dist/vue-plyr.ssr.js'
157168
158169
// The second argument is the default config values which can be omitted.
159170
Vue.use(VuePlyr, {
@@ -163,10 +174,7 @@ Vue.use(VuePlyr, {
163174
emit: ['ended']
164175
})
165176
```
166-
167-
Then, in your `nuxt.config.js` file add `'~/plugins/vue-plyr'` to the plugins array. The `vue-plyr` element should be globally registered now. I might add a nuxt config file to the package at some point in the future so that you do not have to create the file yourself, but currently you have to make it manually.
168-
169-
You will also want to add `vue-plyr/dist/vue-plyr.css` to your css array in the same file.
177+
Then, in your `nuxt.config.js` file add `'~/plugins/vue-plyr'` to the plugins array. The `vue-plyr` element should be globally registered now.
170178
171179
The `nuxt.config.js` file should at minimum include this:
172180
```js
@@ -177,6 +185,15 @@ export default {
177185
}
178186
```
179187
180-
## Author
188+
Alternatively, you can use the provided plugin file (contents are exactly as above) like this:
189+
```js
190+
// nuxt.config.js
191+
export default {
192+
plugins: [
193+
'vue-plyr/extra/nuxt/vue-plyr.plugin.js'
194+
]
195+
}
196+
```
181197
198+
## Author
182199
**vue-plyr** © [RedXTech](https://github.com/redxtech), Released under the [MIT](./LICENSE.md) License.

changelog.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
#### 6.0.0
3+
#### 6.0.1
4+
- Fix `vue-runtime-helper` being a dependency.
5+
- Reorganize exports (yeah breaking but I honestly don't want to bump the version again).
6+
- Add nuxt plugin file.
7+
8+
### 6.0.0
49
- Change import to be more natural.
510
- Move to esm export.
611
- Change demo.

package.json

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-plyr",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "A vue component for the plyr video & audio player.",
55
"license": "MIT",
66
"author": {
@@ -14,13 +14,16 @@
1414
"build": "rollup -c",
1515
"lint": "vue-cli-service lint"
1616
},
17-
"main": "dist/vue-plyr.js",
18-
"module": "dist/vue-plyr.js",
19-
"jsnext:main": "dist/vue-plyr.js",
17+
"main": "./dist/vue-plyr.ssr.js",
18+
"module": "./dist/vue-plyr.esm.js",
19+
"jsnext:main": "./dist/vue-plyr.esm.js",
20+
"browser": "./dist/vue-plyr.js",
21+
"unpkg": "./dist/vue-plyr.js",
2022
"files": [
2123
"dist"
2224
],
2325
"keywords": [
26+
"vue-plyr",
2427
"vue",
2528
"plyr",
2629
"video",
@@ -47,6 +50,9 @@
4750
"eslint": "^5.16.0",
4851
"eslint-plugin-vue": "^5.0.0",
4952
"rollup": "^1.27.0",
53+
"rollup-plugin-commonjs": "^10.1.0",
54+
"rollup-plugin-copy": "^3.1.0",
55+
"rollup-plugin-node-resolve": "^5.2.0",
5056
"rollup-plugin-vue": "^5.1.2",
5157
"vue-template-compiler": "^2.6.10"
5258
}

rollup.config.js

+29-14
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,53 @@
11
import vue from 'rollup-plugin-vue'
2+
import resolve from 'rollup-plugin-node-resolve'
3+
import commonjs from 'rollup-plugin-commonjs'
4+
import copy from 'rollup-plugin-copy'
25

36
const config = {
4-
input: 'src/main.js',
7+
input: './src/main.js',
58
plugins: [
6-
vue()
7-
],
8-
external: ['plyr', 'vue-runtime-helpers']
9+
vue(),
10+
resolve(),
11+
commonjs()
12+
]
913
}
1014

1115
export default [
1216
{
17+
// ESM module
1318
...config,
1419
output: {
15-
file: './dist/vue-plyr.js',
20+
file: './dist/vue-plyr.esm.js',
1621
format: 'esm'
1722
}
1823
},
1924
{
25+
// SSR module
2026
...config,
27+
plugins: [
28+
...config.plugins,
29+
vue({ template: { optimizeSSR: true } }),
30+
copy({
31+
targets: [
32+
{
33+
src: './src/extra/nuxt/vue-plyr.plugin.js',
34+
dest: './dist/extra/nuxt/vue-plyr.plugin.js'
35+
}
36+
]
37+
})
38+
],
2139
output: {
22-
file: './dist/vue-plyr.cjs.js',
23-
format: 'cjs'
40+
format: 'esm',
41+
file: './dist/vue-plyr.ssr.js'
2442
}
2543
},
2644
{
45+
// Browser build
2746
...config,
2847
output: {
29-
file: './dist/vue-plyr.umd.js',
30-
globals: {
31-
plyr: 'Plyr',
32-
'vue-runtime-helpers': 'VueRuntimeHelpers'
33-
},
34-
name: 'VuePlyr',
35-
format: 'umd'
48+
format: 'iife',
49+
file: './dist/vue-plyr.js',
50+
name: 'VuePlyr'
3651
}
3752
}
3853
]

src/extra/nuxt/vue-plyr.plugin.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Vue from 'vue'
2+
import VuePlyr from 'vue-plyr/dist/vue-plyr.ssr.js'
3+
4+
// The second argument is the default config values which can be omitted.
5+
Vue.use(VuePlyr, {
6+
plyr: {
7+
fullscreen: { enabled: false }
8+
},
9+
emit: ['ended']
10+
})

0 commit comments

Comments
 (0)