mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-05 19:41:39 +08:00
Merge branch 'master' of https://github.com/langyuxiansheng/vue-aliplayer-v2
This commit is contained in:
commit
3758626080
125
README.md
125
README.md
@ -1,5 +1,5 @@
|
||||
# vue-alipayer-v2
|
||||
## 感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.
|
||||
## 感谢每一位支持开源的朋友. 这是一个基于Alipayer 开发并封装成vue组件的播放器.
|
||||
### vue中使用Alipayer,播放rtmp,m3u8,mp4视频
|
||||
#### [本项目在线演示](https://langyuxiansheng.github.io/vue-aliplayer-v2/)
|
||||
#### [阿里云播放器在线演示](https://player.alicdn.com/aliplayer/index.html)
|
||||
@ -19,33 +19,53 @@ yarn add vue-aliplayer-v2
|
||||
import VueAliplayerV2 from 'vue-aliplayer-v2';
|
||||
|
||||
Vue.use(VueAliplayerV2);
|
||||
|
||||
//可选全局配置
|
||||
//Vue.use(VueAliplayerV2,{
|
||||
// cssLink: 'https://g.alicdn.com/de/prismplayer/2.8.2/skins/default/aliplayer-min.css',
|
||||
// scriptSrc: 'https://g.alicdn.com/de/prismplayer/2.8.2/aliplayer-min.js'
|
||||
//});
|
||||
```
|
||||
|
||||
#### 局部注册 App.vue
|
||||
|
||||
```javascript
|
||||
|
||||
//推荐第一种(仅v1.2.3)及以上的版本可用
|
||||
import VueAliplayerV2 from 'vue-aliplayer-v2';
|
||||
components:{ VueAliplayerV2 }
|
||||
|
||||
//或者
|
||||
components:{ VueAliplayerV2: VueAliplayerV2.Player }
|
||||
|
||||
```
|
||||
|
||||
## 2.组件中使用
|
||||
|
||||
### 组件模板使用,但需要注意的是,假如你的页面中有多个播放器,那么这个id需要唯一!!,ID必传,只有一个的时候,可以忽略,命名只能是有效字符开头. 下面的视频连接仅供演示测试.
|
||||
### 组件模板使用,下面的视频连接仅供演示测试.
|
||||
```html
|
||||
<template>
|
||||
<div id="app">
|
||||
<template v-if="show">
|
||||
<template v-if="!isShowMultiple && show">
|
||||
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options" />
|
||||
</template>
|
||||
<p class="remove-text" v-else>播放器已销毁!</p>
|
||||
<div v-if="isShowMultiple && show" class="show-multiple">
|
||||
<template v-for="x in 5">
|
||||
<vue-aliplayer-v2 class="multiple-player" :key="x" :source="source" ref="VueAliplayerV2" :options="options" />
|
||||
</template>
|
||||
</div>
|
||||
<p class="remove-text" v-if="!show">播放器已销毁!</p>
|
||||
<div class="player-btns">
|
||||
<template v-if="!isShowMultiple && show">
|
||||
<span @click="play()">播放</span>
|
||||
<span @click="pause()">暂停</span>
|
||||
<span @click="replay()">重播</span>
|
||||
<span @click="getCurrentTime()">播放时刻</span>
|
||||
<span @click="getStatus()">获取播放器状态</span>
|
||||
</template>
|
||||
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
|
||||
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
|
||||
<span @click="getStatus()">获取播放器状态</span>
|
||||
<span @click="showMultiple()">{{isShowMultiple ? '显示1个播放器' : '显示多个播放器'}}</span>
|
||||
</div>
|
||||
<div class="source-box">
|
||||
<span class="source-label">选择播放源(支持动态切换):</span>
|
||||
@ -63,16 +83,18 @@ components:{ VueAliplayerV2: VueAliplayerV2.Player }
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
// import VueAliplayerV2 from 'vue-aliplayer-v2';
|
||||
export default {
|
||||
// components:{ VueAliplayerV2: VueAliplayerV2.Player },
|
||||
data(){
|
||||
return {
|
||||
options: {
|
||||
source:'//player.alicdn.com/video/aliyunmedia.mp4'
|
||||
// source:'//player.alicdn.com/video/aliyunmedia.mp4',
|
||||
isLive: true, //切换为直播流的时候必填
|
||||
// format: 'm3u8' //切换为直播流的时候必填
|
||||
},
|
||||
source: '//player.alicdn.com/video/aliyunmedia.mp4',
|
||||
show: true
|
||||
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
|
||||
show: true,
|
||||
isShowMultiple: false
|
||||
}
|
||||
},
|
||||
|
||||
@ -91,10 +113,33 @@ export default {
|
||||
},
|
||||
|
||||
getCurrentTime(){
|
||||
this.$refs.VueAliplayerV2.getCurrentTime();
|
||||
// this.$refs.VueAliplayerV2.getCurrentTime();
|
||||
this.source = 'http://ivi.bupt.edu.cn/hls/cctv1.m3u8';
|
||||
},
|
||||
|
||||
getStatus(){
|
||||
const status = this.$refs.VueAliplayerV2.getStatus();
|
||||
console.log(`getStatus:`, status);
|
||||
alert(`getStatus:${status}`);
|
||||
},
|
||||
|
||||
showMultiple(){
|
||||
this.isShowMultiple = !this.isShowMultiple;
|
||||
},
|
||||
|
||||
watch: {
|
||||
source: {
|
||||
handler() {
|
||||
this.show = !this.show
|
||||
setTimeout(()=>{ //设置延迟执行
|
||||
this.show = !this.show
|
||||
},1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="less">
|
||||
* {
|
||||
@ -106,6 +151,13 @@ export default {
|
||||
padding: 20px;
|
||||
font-size: 24px;
|
||||
}
|
||||
.show-multiple{
|
||||
display: flex;
|
||||
.multiple-player{
|
||||
width: calc(100% / 4);
|
||||
margin: 20px;
|
||||
}
|
||||
}
|
||||
.player-btns{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
@ -163,21 +215,15 @@ props:{
|
||||
default: () => null
|
||||
},
|
||||
|
||||
id:{ //播放器的ID 唯一标识符 不传就是默认的 但是有多个的时候不一定是唯一的
|
||||
required: false,
|
||||
type: [String],
|
||||
default: `player-${Date.parse(new Date())}`
|
||||
},
|
||||
|
||||
cssLink:{ //css版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.8.2/skins/default/aliplayer-min.css`
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.9.0/skins/default/aliplayer-min.css`
|
||||
},
|
||||
scriptSrc:{ //js版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.8.2/aliplayer-min.js`
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.9.0/aliplayer-min.js`
|
||||
}
|
||||
}
|
||||
```
|
||||
@ -378,7 +424,21 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
|
||||
## 更新日志
|
||||
|
||||
> v1.2.1 修复指定id情况下,播放器报错"没有为播放器指定容器",目前移除外部指定id的方式,所有的播放器id都由内部生成,不再由外部指定容器(外部指定的意义并不大), 感谢"liyoro"的反馈和建议.
|
||||
> v1.2.9 修正部分默认属性, 感谢"Schean17"网友的反馈与建议.
|
||||
|
||||
> v1.2.8 更换底层默认sdk版本为2.9.3 修复options 遇到 update loop 错误 感谢"litmonw"网友的反馈与建议.
|
||||
|
||||
> v1.2.7 更换底层默认sdk版本为2.9.1的版本. 更新线上演示demo的选项,感谢网友“Ghost23333”的demo
|
||||
|
||||
> v1.2.6 优化beforeDestroy() 部分的代码.
|
||||
|
||||
> v1.2.5 更换默认的播放器SDK版本2.8.2 => 2.9.0,2.8.2的版本存在多个播放器同时播放直播流异常的bug,增加了全局SDK版本配置,可以在Vue.use()的时候进行配置.
|
||||
|
||||
> v1.2.4 修复多个播放器加载,只初始化一个播放器的bug.文档部分更新,增加了问题栏. 感谢"沙洲ad"的反馈与建议.
|
||||
|
||||
> v1.2.3 优化播放器的初始化代码,调整包内结构,优化局部组件的注册方式,也兼容老版本的引用方式.文档部分更新,增加了问题栏. 感谢"liangzhiyuan2015"和"fancheur"两位网友的反馈与建议.
|
||||
|
||||
> v1.2.2 修复指定id情况下,播放器报错"没有为播放器指定容器",目前移除外部指定id的方式,所有的播放器id都由内部生成,不再由外部指定容器(外部指定的意义并不大),其它的说明:更新1.2.1后报错Uncaught TypeError: 没有为播放器指定容器,因为源码中变更了部分代码,以及最大限度的简化代码,组件内部的根容器就只有一个div容器,导致以前外部指定id的时候,容器id与外部的不一致,导致抛出异常了,现在已经紧急修复了,若在使用,请更新到v1.2.2的版本;如果使用了外部指定id的方式请移除外部的id.否则id会出现重复的情况., 感谢"liyoro"的反馈和建议.
|
||||
|
||||
> v1.2.1 修复直播播放的情况下,播放器已经销毁,而后台还在继续下载资源造成卡顿的bug,修复多个播放器只渲染1个的bug, 感谢"Jonauil"和"guangming95"两位网友的反馈和建议.
|
||||
|
||||
@ -392,3 +452,30 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
|
||||
> v1.1.6 修复部分已知bug和优化局部的引用方式
|
||||
|
||||
---
|
||||
## 其它问题
|
||||
|
||||
1. IOS 或者其它设备无法全屏播放,或者点击全屏按钮的时候也只是显示竖屏?
|
||||
|
||||
> 方案与问题所在:
|
||||
|
||||
一般情况下可能是开启了强制竖屏(也就是屏幕锁定)打开后就会竖屏而不会全屏了!如下关闭就可以了:
|
||||
参考issues: https://github.com/langyuxiansheng/vue-aliplayer-v2/issues/25
|
||||
|
||||
-开启了屏幕锁定,只要上拉控制中心,点击屏幕锁定关闭就可以了!
|
||||
|
||||
-也可能是播放器或者浏览器兼容性问题.
|
||||
|
||||
2. 关于直播视频切换的问题,可以参考:
|
||||
```javascript
|
||||
watch: {
|
||||
source: {
|
||||
handler() {
|
||||
this.show = !this.show
|
||||
setTimeout(()=>{ //直播视频切换的问题,设置延迟执行
|
||||
this.show = !this.show
|
||||
},1);
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
@ -34,23 +34,74 @@
|
||||
<span class="source-label">输入播放源(支持动态切换):</span>
|
||||
<input class="source-input" type="text" v-model="source">
|
||||
</div>
|
||||
<div class="source-box">
|
||||
<span class="source-label">指定为flash:</span>
|
||||
<select v-model="options.useFlashPrism">
|
||||
<option :value="true">是</option>
|
||||
<option :value="false">否</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="source-box">
|
||||
<span class="source-label">禁止用户拖动(仅flash有效):</span>
|
||||
<select v-model="options.disableSeek">
|
||||
<option :value="true">是</option>
|
||||
<option :value="false">否</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
// import VueAliplayerV2 from '../packages';
|
||||
export default {
|
||||
// components:{ VueAliplayerV2: VueAliplayerV2.Player },
|
||||
// components:{ VueAliplayerV2 },
|
||||
data(){
|
||||
return {
|
||||
options: {
|
||||
// source:'//player.alicdn.com/video/aliyunmedia.mp4',
|
||||
isLive: true, //切换为直播流的时候必填
|
||||
// format: 'm3u8' //切换为直播流的时候必填
|
||||
isLive: !true, //切换为直播流的时候必填
|
||||
// skinLayout: [
|
||||
// {
|
||||
// 'name': 'bigPlayButton',
|
||||
// 'align': 'blabs',
|
||||
// 'x': 30,
|
||||
// 'y': 80
|
||||
// },
|
||||
// {
|
||||
// 'name': 'infoDisplay'
|
||||
// },
|
||||
// {
|
||||
// 'name': 'controlBar',
|
||||
// 'align': 'blabs',
|
||||
// 'x': 0,
|
||||
// 'y': 0,
|
||||
// 'children': [
|
||||
// {
|
||||
// 'name': 'liveDisplay',
|
||||
// 'align': 'tlabs',
|
||||
// 'x': 15,
|
||||
// 'y': 6
|
||||
// },
|
||||
// {
|
||||
// 'name': 'fullScreenButton',
|
||||
// 'align': 'tr',
|
||||
// 'x': 10,
|
||||
// 'y': 10
|
||||
// },
|
||||
// {
|
||||
// 'name': 'volume',
|
||||
// 'align': 'tr',
|
||||
// 'x': 5,
|
||||
// 'y': 10
|
||||
// }
|
||||
// ]
|
||||
// }]
|
||||
// useFlashPrism: false, //指定为flash
|
||||
// disableSeek: true //禁用进度条的Seek,默认值为false
|
||||
},
|
||||
source: '//player.alicdn.com/video/aliyunmedia.mp4',
|
||||
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
|
||||
show: true,
|
||||
isShowMultiple: false
|
||||
isShowMultiple: false,
|
||||
}
|
||||
},
|
||||
|
||||
@ -124,7 +175,7 @@ export default {
|
||||
}
|
||||
.source-box{
|
||||
padding: 5px 10px;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 10px;
|
||||
.source-label{
|
||||
margin-right: 20px;
|
||||
font-size: 16px;
|
||||
|
@ -1,7 +1,10 @@
|
||||
import Vue from 'vue';
|
||||
import App from './App.vue';
|
||||
import VueAliplayerV2 from '../packages';
|
||||
Vue.use(VueAliplayerV2);
|
||||
Vue.use(VueAliplayerV2,{
|
||||
// cssLink: 'https://g.alicdn.com/de/prismplayer/2.8.2/skins/default/aliplayer-min.css',
|
||||
// scriptSrc: 'https://g.alicdn.com/de/prismplayer/2.8.2/aliplayer-min.js'
|
||||
});
|
||||
Vue.config.productionTip = false;
|
||||
new Vue({
|
||||
render: h => h(App),
|
||||
|
23
gh-page.sh
Normal file
23
gh-page.sh
Normal file
@ -0,0 +1,23 @@
|
||||
echo "打包 => dist";
|
||||
|
||||
npm run build;
|
||||
|
||||
echo "更新gh-pages";
|
||||
|
||||
git branch -D gh-pages;
|
||||
|
||||
echo "删除gh-pages";
|
||||
|
||||
git checkout -b gh-pages;
|
||||
|
||||
echo "创建并切换到gh-pages";
|
||||
|
||||
git add -f dist;
|
||||
|
||||
git commit -m 'create gh-pages';
|
||||
|
||||
git push origin -d gh-pages;
|
||||
|
||||
git subtree push --prefix dist origin gh-pages;
|
||||
|
||||
echo "已推送gh-pages";
|
@ -142,26 +142,39 @@ if (typeof window !== 'undefined') {
|
||||
// EXTERNAL MODULE: ./node_modules/_core-js@2.6.10@core-js/modules/es6.function.name.js
|
||||
var es6_function_name = __webpack_require__("7cfd");
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"05d0d90a-vue-loader-template"}!./node_modules/_vue-loader@15.7.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/src/main.vue?vue&type=template&id=12592c3a&
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"05d0d90a-vue-loader-template"}!./node_modules/_vue-loader@15.7.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/index.vue?vue&type=template&id=2b8c739e&
|
||||
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":_vm.playerId}})}
|
||||
var staticRenderFns = []
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/src/main.vue?vue&type=template&id=12592c3a&
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.vue?vue&type=template&id=2b8c739e&
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_core-js@2.6.10@core-js/modules/web.dom.iterable.js
|
||||
var web_dom_iterable = __webpack_require__("4634");
|
||||
// CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.7.2@@babel/runtime/helpers/esm/typeof.js
|
||||
function _typeof2(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof2(obj); }
|
||||
|
||||
function _typeof(obj) {
|
||||
if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") {
|
||||
_typeof = function _typeof(obj) {
|
||||
return _typeof2(obj);
|
||||
};
|
||||
} else {
|
||||
_typeof = function _typeof(obj) {
|
||||
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj);
|
||||
};
|
||||
}
|
||||
|
||||
return _typeof(obj);
|
||||
}
|
||||
// EXTERNAL MODULE: ./node_modules/_core-js@2.6.10@core-js/modules/es6.regexp.to-string.js
|
||||
var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_thread-loader@2.1.3@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.0.6@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/src/main.vue?vue&type=script&lang=js&
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_thread-loader@2.1.3@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.0.6@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/index.vue?vue&type=script&lang=js&
|
||||
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
/* harmony default export */ var AliplayerV2vue_type_script_lang_js_ = ({
|
||||
name: 'VueAliplayerV2',
|
||||
props: {
|
||||
options: {
|
||||
@ -178,22 +191,17 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
type: [String],
|
||||
default: null
|
||||
},
|
||||
// id:{
|
||||
// required: false,
|
||||
// type: [String],
|
||||
// default: null
|
||||
// },
|
||||
cssLink: {
|
||||
//css版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.8.2/skins/default/aliplayer-min.css"
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.9.3/skins/default/aliplayer-min.css"
|
||||
},
|
||||
scriptSrc: {
|
||||
//js版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.8.2/aliplayer-min.js"
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.9.3/aliplayer-min.js"
|
||||
}
|
||||
},
|
||||
data: function data() {
|
||||
@ -327,8 +335,8 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
init: function init() {
|
||||
var _this3 = this;
|
||||
|
||||
var linkID = 'aliplayer-min-css';
|
||||
var scriptID = 'aliplayer-min-js';
|
||||
var linkID = 'app__aliplayer-min-css';
|
||||
var scriptID = 'app__aliplayer-min-js';
|
||||
var head = document.getElementsByTagName('head');
|
||||
var html = document.getElementsByTagName('html');
|
||||
var scriptTag = document.getElementById(scriptID);
|
||||
@ -340,7 +348,8 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
link.type = 'text/css';
|
||||
link.rel = 'stylesheet';
|
||||
link.href = this.cssLink;
|
||||
link.id = linkID;
|
||||
link.id = linkID; // link.className = linkID;
|
||||
|
||||
head[0].appendChild(link);
|
||||
}
|
||||
|
||||
@ -348,19 +357,18 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
// console.log('scriptTag');
|
||||
scriptTag = document.createElement('script');
|
||||
scriptTag.type = "text/javascript";
|
||||
scriptTag.id = scriptID;
|
||||
scriptTag.id = scriptID; // scriptTag.className = scriptID;
|
||||
|
||||
scriptTag.src = this.scriptSrc;
|
||||
html[0].appendChild(scriptTag);
|
||||
scriptTag.addEventListener("load", function () {
|
||||
_this3.initPlayer();
|
||||
});
|
||||
} else {
|
||||
this.initPlayer(); //这样是为了兼容页面上有多个播放器
|
||||
} //兼容单页加载和硬加载
|
||||
|
||||
|
||||
scriptTag.addEventListener("load", function () {
|
||||
_this3.initPlayer();
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
@ -371,7 +379,7 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
var _this4 = this;
|
||||
|
||||
if (typeof window.Aliplayer != 'undefined') {
|
||||
var options = this.options;
|
||||
var options = this.deepCloneObject(this.options);
|
||||
|
||||
if (options) {
|
||||
for (var key in options) {
|
||||
@ -675,22 +683,49 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
*/
|
||||
off: function off(ev, handle) {
|
||||
this.player && this.player.off(ev, handle);
|
||||
},
|
||||
|
||||
/**
|
||||
* 深度拷贝
|
||||
* @param {*} obj
|
||||
*/
|
||||
deepCloneObject: function deepCloneObject(obj) {
|
||||
var objClone = Array.isArray(obj) ? [] : {};
|
||||
|
||||
if (obj && _typeof(obj) === 'object') {
|
||||
for (var key in obj) {
|
||||
if (obj.hasOwnProperty(key)) {
|
||||
//判断ojb子元素是否为对象,如果是,递归复制
|
||||
if (obj[key] && _typeof(obj[key]) === 'object') {
|
||||
objClone[key] = this.deepCloneObject(obj[key]);
|
||||
} else {
|
||||
//如果不是,简单复制
|
||||
objClone[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return objClone;
|
||||
}
|
||||
},
|
||||
beforeDestroy: function beforeDestroy() {
|
||||
//防止重复创建
|
||||
this.dispose(); //销毁播放器(防止直播播放的情况下,播放器已经销毁,而后台还在继续下载资源造成卡顿的bug)
|
||||
|
||||
var head = document.querySelector('head'); //移除所有的重复创建的标签
|
||||
|
||||
var nodes = document.querySelectorAll('script[src="https://g.alicdn.com/de/prismplayer/2.8.2/hls/aliplayer-hls-min.js"]');
|
||||
head && nodes.forEach(function (item) {
|
||||
head.removeChild(item);
|
||||
});
|
||||
// const head = document.querySelector('head');
|
||||
// const cssNodes = document.querySelectorAll(`link.app__aliplayer-min-css`);
|
||||
// (html && cssNodes.length > 1) && cssNodes.forEach((item, index)=>{
|
||||
// if(index != 0) head.removeChild(item);
|
||||
// });
|
||||
// const html = document.querySelector('html');
|
||||
// const jsNodes = document.querySelectorAll(`script.app__aliplayer-min-js`);
|
||||
// (html && jsNodes.length > 1) && jsNodes.forEach((item, index)=>{
|
||||
// if(index != 0) html.removeChild(item);
|
||||
// });
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var packages_AliplayerV2vue_type_script_lang_js_ = (AliplayerV2vue_type_script_lang_js_);
|
||||
// CONCATENATED MODULE: ./node_modules/_vue-loader@15.7.2@vue-loader/lib/runtime/componentNormalizer.js
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
@ -786,7 +821,7 @@ function normalizeComponent (
|
||||
}
|
||||
}
|
||||
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/src/main.vue
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.vue
|
||||
|
||||
|
||||
|
||||
@ -795,7 +830,7 @@ function normalizeComponent (
|
||||
/* normalize component */
|
||||
|
||||
var component = normalizeComponent(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
packages_AliplayerV2vue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
@ -805,44 +840,21 @@ var component = normalizeComponent(
|
||||
|
||||
)
|
||||
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.js
|
||||
|
||||
// 导入组件,组件必须声明 name
|
||||
// 为组件添加 install 方法,用于按需引入
|
||||
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var AliplayerV2 = (main);
|
||||
/* harmony default export */ var AliplayerV2 = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/index.js
|
||||
|
||||
// packages / index.js
|
||||
// 导入单个组件
|
||||
// 以数组的结构保存组件,便于遍历
|
||||
// 定义 install 方法
|
||||
|
||||
var components = [AliplayerV2]; // 定义 install 方法
|
||||
|
||||
var install = function install(Vue) {
|
||||
if (install.installed) return false;
|
||||
install.installed = true; // 遍历并注册全局组件
|
||||
|
||||
components.map(function (component) {
|
||||
return Vue.component(component.name, component);
|
||||
});
|
||||
AliplayerV2.install = function (Vue, options) {
|
||||
if (options && options.cssLink) AliplayerV2.props.cssLink.default = options.cssLink;
|
||||
if (options && options.scriptSrc) AliplayerV2.props.scriptSrc.default = options.scriptSrc;
|
||||
Vue.component(AliplayerV2.name, AliplayerV2);
|
||||
};
|
||||
|
||||
if (typeof window !== 'undefined' && window.Vue) {
|
||||
install(window.Vue);
|
||||
}
|
||||
|
||||
/* harmony default export */ var packages_0 = ({
|
||||
// 导出的对象必须具备一个 install 方法
|
||||
install: install,
|
||||
Player: AliplayerV2 // 组件列表
|
||||
|
||||
});
|
||||
AliplayerV2.Player = AliplayerV2;
|
||||
/* harmony default export */ var packages_0 = (AliplayerV2);
|
||||
// CONCATENATED MODULE: ./node_modules/_@vue_cli-service@3.12.1@@vue/cli-service/lib/commands/build/entry-lib.js
|
||||
|
||||
|
||||
@ -850,113 +862,6 @@ if (typeof window !== 'undefined' && window.Vue) {
|
||||
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "1277":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var store = __webpack_require__("f341")('wks');
|
||||
var uid = __webpack_require__("4d2c");
|
||||
var Symbol = __webpack_require__("3f8b").Symbol;
|
||||
var USE_SYMBOL = typeof Symbol == 'function';
|
||||
|
||||
var $exports = module.exports = function (name) {
|
||||
return store[name] || (store[name] =
|
||||
USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));
|
||||
};
|
||||
|
||||
$exports.store = store;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "17cb":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var document = __webpack_require__("3f8b").document;
|
||||
module.exports = document && document.documentElement;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "1f9e":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// false -> Array#indexOf
|
||||
// true -> Array#includes
|
||||
var toIObject = __webpack_require__("6117");
|
||||
var toLength = __webpack_require__("8941");
|
||||
var toAbsoluteIndex = __webpack_require__("c3a9");
|
||||
module.exports = function (IS_INCLUDES) {
|
||||
return function ($this, el, fromIndex) {
|
||||
var O = toIObject($this);
|
||||
var length = toLength(O.length);
|
||||
var index = toAbsoluteIndex(fromIndex, length);
|
||||
var value;
|
||||
// Array#includes uses SameValueZero equality algorithm
|
||||
// eslint-disable-next-line no-self-compare
|
||||
if (IS_INCLUDES && el != el) while (length > index) {
|
||||
value = O[index++];
|
||||
// eslint-disable-next-line no-self-compare
|
||||
if (value != value) return true;
|
||||
// Array#indexOf ignores holes, Array#includes - not
|
||||
} else for (;length > index; index++) if (IS_INCLUDES || index in O) {
|
||||
if (O[index] === el) return IS_INCLUDES || index || 0;
|
||||
} return !IS_INCLUDES && -1;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "2498":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var global = __webpack_require__("3f8b");
|
||||
var core = __webpack_require__("da27");
|
||||
var hide = __webpack_require__("b8ea");
|
||||
var redefine = __webpack_require__("a6d5");
|
||||
var ctx = __webpack_require__("e85e");
|
||||
var PROTOTYPE = 'prototype';
|
||||
|
||||
var $export = function (type, name, source) {
|
||||
var IS_FORCED = type & $export.F;
|
||||
var IS_GLOBAL = type & $export.G;
|
||||
var IS_STATIC = type & $export.S;
|
||||
var IS_PROTO = type & $export.P;
|
||||
var IS_BIND = type & $export.B;
|
||||
var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];
|
||||
var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});
|
||||
var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});
|
||||
var key, own, out, exp;
|
||||
if (IS_GLOBAL) source = name;
|
||||
for (key in source) {
|
||||
// contains in native
|
||||
own = !IS_FORCED && target && target[key] !== undefined;
|
||||
// export native or passed
|
||||
out = (own ? target : source)[key];
|
||||
// bind timers to global for call from export context
|
||||
exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
|
||||
// extend global
|
||||
if (target) redefine(target, key, out, type & $export.U);
|
||||
// export
|
||||
if (exports[key] != out) hide(exports, key, exp);
|
||||
if (IS_PROTO && expProto[key] != out) expProto[key] = out;
|
||||
}
|
||||
};
|
||||
global.core = core;
|
||||
// type bitmap
|
||||
$export.F = 1; // forced
|
||||
$export.G = 2; // global
|
||||
$export.S = 4; // static
|
||||
$export.P = 8; // proto
|
||||
$export.B = 16; // bind
|
||||
$export.W = 32; // wrap
|
||||
$export.U = 64; // safe
|
||||
$export.R = 128; // real proto method for `library`
|
||||
module.exports = $export;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "25ae":
|
||||
@ -986,32 +891,6 @@ module.exports = function (it, S) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "3038":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// 7.2.1 RequireObjectCoercible(argument)
|
||||
module.exports = function (it) {
|
||||
if (it == undefined) throw TypeError("Can't call method on " + it);
|
||||
return it;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "3d87":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var def = __webpack_require__("d3d8").f;
|
||||
var has = __webpack_require__("549d");
|
||||
var TAG = __webpack_require__("1277")('toStringTag');
|
||||
|
||||
module.exports = function (it, tag, stat) {
|
||||
if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "3f8b":
|
||||
@ -1025,148 +904,6 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat
|
||||
if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "4634":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var $iterators = __webpack_require__("96dd");
|
||||
var getKeys = __webpack_require__("7d56");
|
||||
var redefine = __webpack_require__("a6d5");
|
||||
var global = __webpack_require__("3f8b");
|
||||
var hide = __webpack_require__("b8ea");
|
||||
var Iterators = __webpack_require__("e3b3");
|
||||
var wks = __webpack_require__("1277");
|
||||
var ITERATOR = wks('iterator');
|
||||
var TO_STRING_TAG = wks('toStringTag');
|
||||
var ArrayValues = Iterators.Array;
|
||||
|
||||
var DOMIterables = {
|
||||
CSSRuleList: true, // TODO: Not spec compliant, should be false.
|
||||
CSSStyleDeclaration: false,
|
||||
CSSValueList: false,
|
||||
ClientRectList: false,
|
||||
DOMRectList: false,
|
||||
DOMStringList: false,
|
||||
DOMTokenList: true,
|
||||
DataTransferItemList: false,
|
||||
FileList: false,
|
||||
HTMLAllCollection: false,
|
||||
HTMLCollection: false,
|
||||
HTMLFormElement: false,
|
||||
HTMLSelectElement: false,
|
||||
MediaList: true, // TODO: Not spec compliant, should be false.
|
||||
MimeTypeArray: false,
|
||||
NamedNodeMap: false,
|
||||
NodeList: true,
|
||||
PaintRequestList: false,
|
||||
Plugin: false,
|
||||
PluginArray: false,
|
||||
SVGLengthList: false,
|
||||
SVGNumberList: false,
|
||||
SVGPathSegList: false,
|
||||
SVGPointList: false,
|
||||
SVGStringList: false,
|
||||
SVGTransformList: false,
|
||||
SourceBufferList: false,
|
||||
StyleSheetList: true, // TODO: Not spec compliant, should be false.
|
||||
TextTrackCueList: false,
|
||||
TextTrackList: false,
|
||||
TouchList: false
|
||||
};
|
||||
|
||||
for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {
|
||||
var NAME = collections[i];
|
||||
var explicit = DOMIterables[NAME];
|
||||
var Collection = global[NAME];
|
||||
var proto = Collection && Collection.prototype;
|
||||
var key;
|
||||
if (proto) {
|
||||
if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);
|
||||
if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
|
||||
Iterators[NAME] = ArrayValues;
|
||||
if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "4aef":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var LIBRARY = __webpack_require__("6cc2");
|
||||
var $export = __webpack_require__("2498");
|
||||
var redefine = __webpack_require__("a6d5");
|
||||
var hide = __webpack_require__("b8ea");
|
||||
var Iterators = __webpack_require__("e3b3");
|
||||
var $iterCreate = __webpack_require__("c264");
|
||||
var setToStringTag = __webpack_require__("3d87");
|
||||
var getPrototypeOf = __webpack_require__("d15b");
|
||||
var ITERATOR = __webpack_require__("1277")('iterator');
|
||||
var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
|
||||
var FF_ITERATOR = '@@iterator';
|
||||
var KEYS = 'keys';
|
||||
var VALUES = 'values';
|
||||
|
||||
var returnThis = function () { return this; };
|
||||
|
||||
module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {
|
||||
$iterCreate(Constructor, NAME, next);
|
||||
var getMethod = function (kind) {
|
||||
if (!BUGGY && kind in proto) return proto[kind];
|
||||
switch (kind) {
|
||||
case KEYS: return function keys() { return new Constructor(this, kind); };
|
||||
case VALUES: return function values() { return new Constructor(this, kind); };
|
||||
} return function entries() { return new Constructor(this, kind); };
|
||||
};
|
||||
var TAG = NAME + ' Iterator';
|
||||
var DEF_VALUES = DEFAULT == VALUES;
|
||||
var VALUES_BUG = false;
|
||||
var proto = Base.prototype;
|
||||
var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
|
||||
var $default = $native || getMethod(DEFAULT);
|
||||
var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;
|
||||
var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
|
||||
var methods, key, IteratorPrototype;
|
||||
// Fix native
|
||||
if ($anyNative) {
|
||||
IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));
|
||||
if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {
|
||||
// Set @@toStringTag to native iterators
|
||||
setToStringTag(IteratorPrototype, TAG, true);
|
||||
// fix for some old engines
|
||||
if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);
|
||||
}
|
||||
}
|
||||
// fix Array#{values, @@iterator}.name in V8 / FF
|
||||
if (DEF_VALUES && $native && $native.name !== VALUES) {
|
||||
VALUES_BUG = true;
|
||||
$default = function values() { return $native.call(this); };
|
||||
}
|
||||
// Define iterator
|
||||
if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {
|
||||
hide(proto, ITERATOR, $default);
|
||||
}
|
||||
// Plug for library
|
||||
Iterators[NAME] = $default;
|
||||
Iterators[TAG] = returnThis;
|
||||
if (DEFAULT) {
|
||||
methods = {
|
||||
values: DEF_VALUES ? $default : getMethod(VALUES),
|
||||
keys: IS_SET ? $default : getMethod(KEYS),
|
||||
entries: $entries
|
||||
};
|
||||
if (FORCED) for (key in methods) {
|
||||
if (!(key in proto)) redefine(proto, key, methods[key]);
|
||||
} else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);
|
||||
}
|
||||
return methods;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "4d2c":
|
||||
@ -1190,79 +927,6 @@ module.exports = function (it, key) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "6077":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
var toString = {}.toString;
|
||||
|
||||
module.exports = function (it) {
|
||||
return toString.call(it).slice(8, -1);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "6117":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
||||
var IObject = __webpack_require__("9952");
|
||||
var defined = __webpack_require__("3038");
|
||||
module.exports = function (it) {
|
||||
return IObject(defined(it));
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "65c3":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
||||
var anObject = __webpack_require__("8cac");
|
||||
var dPs = __webpack_require__("8d69");
|
||||
var enumBugKeys = __webpack_require__("d93f");
|
||||
var IE_PROTO = __webpack_require__("9947")('IE_PROTO');
|
||||
var Empty = function () { /* empty */ };
|
||||
var PROTOTYPE = 'prototype';
|
||||
|
||||
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
||||
var createDict = function () {
|
||||
// Thrash, waste and sodomy: IE GC bug
|
||||
var iframe = __webpack_require__("6618")('iframe');
|
||||
var i = enumBugKeys.length;
|
||||
var lt = '<';
|
||||
var gt = '>';
|
||||
var iframeDocument;
|
||||
iframe.style.display = 'none';
|
||||
__webpack_require__("17cb").appendChild(iframe);
|
||||
iframe.src = 'javascript:'; // eslint-disable-line no-script-url
|
||||
// createDict = iframe.contentWindow.Object;
|
||||
// html.removeChild(iframe);
|
||||
iframeDocument = iframe.contentWindow.document;
|
||||
iframeDocument.open();
|
||||
iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
|
||||
iframeDocument.close();
|
||||
createDict = iframeDocument.F;
|
||||
while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
|
||||
return createDict();
|
||||
};
|
||||
|
||||
module.exports = Object.create || function create(O, Properties) {
|
||||
var result;
|
||||
if (O !== null) {
|
||||
Empty[PROTOTYPE] = anObject(O);
|
||||
result = new Empty();
|
||||
Empty[PROTOTYPE] = null;
|
||||
// add "__proto__" for Object.getPrototypeOf polyfill
|
||||
result[IE_PROTO] = O;
|
||||
} else result = createDict();
|
||||
return Properties === undefined ? result : dPs(result, Properties);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "6618":
|
||||
@ -1293,30 +957,6 @@ module.exports = false;
|
||||
module.exports = __webpack_require__("f341")('native-function-to-string', Function.toString);
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "7afe":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var has = __webpack_require__("549d");
|
||||
var toIObject = __webpack_require__("6117");
|
||||
var arrayIndexOf = __webpack_require__("1f9e")(false);
|
||||
var IE_PROTO = __webpack_require__("9947")('IE_PROTO');
|
||||
|
||||
module.exports = function (object, names) {
|
||||
var O = toIObject(object);
|
||||
var i = 0;
|
||||
var result = [];
|
||||
var key;
|
||||
for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);
|
||||
// Don't enum bug & hidden keys
|
||||
while (names.length > i) if (has(O, key = names[i++])) {
|
||||
~arrayIndexOf(result, key) || result.push(key);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "7cfd":
|
||||
@ -1340,44 +980,6 @@ NAME in FProto || __webpack_require__("f9a5") && dP(FProto, NAME, {
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "7d56":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
||||
var $keys = __webpack_require__("7afe");
|
||||
var enumBugKeys = __webpack_require__("d93f");
|
||||
|
||||
module.exports = Object.keys || function keys(O) {
|
||||
return $keys(O, enumBugKeys);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8451":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = function (it) {
|
||||
if (typeof it != 'function') throw TypeError(it + ' is not a function!');
|
||||
return it;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8941":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 7.1.15 ToLength
|
||||
var toInteger = __webpack_require__("a6ad");
|
||||
var min = Math.min;
|
||||
module.exports = function (it) {
|
||||
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8cac":
|
||||
@ -1390,93 +992,6 @@ module.exports = function (it) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8d69":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var dP = __webpack_require__("d3d8");
|
||||
var anObject = __webpack_require__("8cac");
|
||||
var getKeys = __webpack_require__("7d56");
|
||||
|
||||
module.exports = __webpack_require__("f9a5") ? Object.defineProperties : function defineProperties(O, Properties) {
|
||||
anObject(O);
|
||||
var keys = getKeys(Properties);
|
||||
var length = keys.length;
|
||||
var i = 0;
|
||||
var P;
|
||||
while (length > i) dP.f(O, P = keys[i++], Properties[P]);
|
||||
return O;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "96dd":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var addToUnscopables = __webpack_require__("ab19");
|
||||
var step = __webpack_require__("c8e9");
|
||||
var Iterators = __webpack_require__("e3b3");
|
||||
var toIObject = __webpack_require__("6117");
|
||||
|
||||
// 22.1.3.4 Array.prototype.entries()
|
||||
// 22.1.3.13 Array.prototype.keys()
|
||||
// 22.1.3.29 Array.prototype.values()
|
||||
// 22.1.3.30 Array.prototype[@@iterator]()
|
||||
module.exports = __webpack_require__("4aef")(Array, 'Array', function (iterated, kind) {
|
||||
this._t = toIObject(iterated); // target
|
||||
this._i = 0; // next index
|
||||
this._k = kind; // kind
|
||||
// 22.1.5.2.1 %ArrayIteratorPrototype%.next()
|
||||
}, function () {
|
||||
var O = this._t;
|
||||
var kind = this._k;
|
||||
var index = this._i++;
|
||||
if (!O || index >= O.length) {
|
||||
this._t = undefined;
|
||||
return step(1);
|
||||
}
|
||||
if (kind == 'keys') return step(0, index);
|
||||
if (kind == 'values') return step(0, O[index]);
|
||||
return step(0, [index, O[index]]);
|
||||
}, 'values');
|
||||
|
||||
// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)
|
||||
Iterators.Arguments = Iterators.Array;
|
||||
|
||||
addToUnscopables('keys');
|
||||
addToUnscopables('values');
|
||||
addToUnscopables('entries');
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "9947":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var shared = __webpack_require__("f341")('keys');
|
||||
var uid = __webpack_require__("4d2c");
|
||||
module.exports = function (key) {
|
||||
return shared[key] || (shared[key] = uid(key));
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "9952":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
||||
var cof = __webpack_require__("6077");
|
||||
// eslint-disable-next-line no-prototype-builtins
|
||||
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
||||
return cof(it) == 'String' ? it.split('') : Object(it);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "9f7e":
|
||||
@ -1489,19 +1004,6 @@ if (__webpack_require__("f9a5") && /./g.flags != 'g') __webpack_require__("d3d8"
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "a6ad":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// 7.1.4 ToInteger
|
||||
var ceil = Math.ceil;
|
||||
var floor = Math.floor;
|
||||
module.exports = function (it) {
|
||||
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "a6d5":
|
||||
@ -1540,32 +1042,6 @@ __webpack_require__("da27").inspectSource = function (it) {
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "a9cf":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 7.1.13 ToObject(argument)
|
||||
var defined = __webpack_require__("3038");
|
||||
module.exports = function (it) {
|
||||
return Object(defined(it));
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "ab19":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 22.1.3.31 Array.prototype[@@unscopables]
|
||||
var UNSCOPABLES = __webpack_require__("1277")('unscopables');
|
||||
var ArrayProto = Array.prototype;
|
||||
if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__("b8ea")(ArrayProto, UNSCOPABLES, {});
|
||||
module.exports = function (key) {
|
||||
ArrayProto[UNSCOPABLES][key] = true;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "b8ea":
|
||||
@ -1581,51 +1057,6 @@ module.exports = __webpack_require__("f9a5") ? function (object, key, value) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "c264":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var create = __webpack_require__("65c3");
|
||||
var descriptor = __webpack_require__("0614");
|
||||
var setToStringTag = __webpack_require__("3d87");
|
||||
var IteratorPrototype = {};
|
||||
|
||||
// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
|
||||
__webpack_require__("b8ea")(IteratorPrototype, __webpack_require__("1277")('iterator'), function () { return this; });
|
||||
|
||||
module.exports = function (Constructor, NAME, next) {
|
||||
Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });
|
||||
setToStringTag(Constructor, NAME + ' Iterator');
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "c3a9":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var toInteger = __webpack_require__("a6ad");
|
||||
var max = Math.max;
|
||||
var min = Math.min;
|
||||
module.exports = function (index, length) {
|
||||
index = toInteger(index);
|
||||
return index < 0 ? max(index + length, 0) : min(index, length);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "c8e9":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = function (done, value) {
|
||||
return { value: value, done: !!done };
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "cc1d":
|
||||
@ -1659,26 +1090,6 @@ if (__webpack_require__("0cc1")(function () { return $toString.call({ source: 'a
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "d15b":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
||||
var has = __webpack_require__("549d");
|
||||
var toObject = __webpack_require__("a9cf");
|
||||
var IE_PROTO = __webpack_require__("9947")('IE_PROTO');
|
||||
var ObjectProto = Object.prototype;
|
||||
|
||||
module.exports = Object.getPrototypeOf || function (O) {
|
||||
O = toObject(O);
|
||||
if (has(O, IE_PROTO)) return O[IE_PROTO];
|
||||
if (typeof O.constructor == 'function' && O instanceof O.constructor) {
|
||||
return O.constructor.prototype;
|
||||
} return O instanceof Object ? ObjectProto : null;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "d3d8":
|
||||
@ -1702,17 +1113,6 @@ exports.f = __webpack_require__("f9a5") ? Object.defineProperty : function defin
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "d93f":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// IE 8- don't enum bug keys
|
||||
module.exports = (
|
||||
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
|
||||
).split(',');
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "da0b":
|
||||
@ -1732,14 +1132,6 @@ var core = module.exports = { version: '2.6.10' };
|
||||
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "e3b3":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = {};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "e67d":
|
||||
@ -1804,33 +1196,6 @@ module.exports = function () {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "e85e":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// optional / simple context binding
|
||||
var aFunction = __webpack_require__("8451");
|
||||
module.exports = function (fn, that, length) {
|
||||
aFunction(fn);
|
||||
if (that === undefined) return fn;
|
||||
switch (length) {
|
||||
case 1: return function (a) {
|
||||
return fn.call(that, a);
|
||||
};
|
||||
case 2: return function (a, b) {
|
||||
return fn.call(that, a, b);
|
||||
};
|
||||
case 3: return function (a, b, c) {
|
||||
return fn.call(that, a, b, c);
|
||||
};
|
||||
}
|
||||
return function (/* ...args */) {
|
||||
return fn.apply(that, arguments);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "f341":
|
||||
|
@ -151,26 +151,39 @@ if (typeof window !== 'undefined') {
|
||||
// EXTERNAL MODULE: ./node_modules/_core-js@2.6.10@core-js/modules/es6.function.name.js
|
||||
var es6_function_name = __webpack_require__("7cfd");
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"05d0d90a-vue-loader-template"}!./node_modules/_vue-loader@15.7.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/src/main.vue?vue&type=template&id=12592c3a&
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"05d0d90a-vue-loader-template"}!./node_modules/_vue-loader@15.7.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/index.vue?vue&type=template&id=2b8c739e&
|
||||
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":_vm.playerId}})}
|
||||
var staticRenderFns = []
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/src/main.vue?vue&type=template&id=12592c3a&
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.vue?vue&type=template&id=2b8c739e&
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_core-js@2.6.10@core-js/modules/web.dom.iterable.js
|
||||
var web_dom_iterable = __webpack_require__("4634");
|
||||
// CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.7.2@@babel/runtime/helpers/esm/typeof.js
|
||||
function _typeof2(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof2(obj); }
|
||||
|
||||
function _typeof(obj) {
|
||||
if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") {
|
||||
_typeof = function _typeof(obj) {
|
||||
return _typeof2(obj);
|
||||
};
|
||||
} else {
|
||||
_typeof = function _typeof(obj) {
|
||||
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj);
|
||||
};
|
||||
}
|
||||
|
||||
return _typeof(obj);
|
||||
}
|
||||
// EXTERNAL MODULE: ./node_modules/_core-js@2.6.10@core-js/modules/es6.regexp.to-string.js
|
||||
var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_thread-loader@2.1.3@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.0.6@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/src/main.vue?vue&type=script&lang=js&
|
||||
// CONCATENATED MODULE: ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_thread-loader@2.1.3@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.0.6@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.7.2@vue-loader/lib??vue-loader-options!./packages/AliplayerV2/index.vue?vue&type=script&lang=js&
|
||||
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
/* harmony default export */ var AliplayerV2vue_type_script_lang_js_ = ({
|
||||
name: 'VueAliplayerV2',
|
||||
props: {
|
||||
options: {
|
||||
@ -187,22 +200,17 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
type: [String],
|
||||
default: null
|
||||
},
|
||||
// id:{
|
||||
// required: false,
|
||||
// type: [String],
|
||||
// default: null
|
||||
// },
|
||||
cssLink: {
|
||||
//css版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.8.2/skins/default/aliplayer-min.css"
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.9.3/skins/default/aliplayer-min.css"
|
||||
},
|
||||
scriptSrc: {
|
||||
//js版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.8.2/aliplayer-min.js"
|
||||
default: "https://g.alicdn.com/de/prismplayer/2.9.3/aliplayer-min.js"
|
||||
}
|
||||
},
|
||||
data: function data() {
|
||||
@ -336,8 +344,8 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
init: function init() {
|
||||
var _this3 = this;
|
||||
|
||||
var linkID = 'aliplayer-min-css';
|
||||
var scriptID = 'aliplayer-min-js';
|
||||
var linkID = 'app__aliplayer-min-css';
|
||||
var scriptID = 'app__aliplayer-min-js';
|
||||
var head = document.getElementsByTagName('head');
|
||||
var html = document.getElementsByTagName('html');
|
||||
var scriptTag = document.getElementById(scriptID);
|
||||
@ -349,7 +357,8 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
link.type = 'text/css';
|
||||
link.rel = 'stylesheet';
|
||||
link.href = this.cssLink;
|
||||
link.id = linkID;
|
||||
link.id = linkID; // link.className = linkID;
|
||||
|
||||
head[0].appendChild(link);
|
||||
}
|
||||
|
||||
@ -357,19 +366,18 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
// console.log('scriptTag');
|
||||
scriptTag = document.createElement('script');
|
||||
scriptTag.type = "text/javascript";
|
||||
scriptTag.id = scriptID;
|
||||
scriptTag.id = scriptID; // scriptTag.className = scriptID;
|
||||
|
||||
scriptTag.src = this.scriptSrc;
|
||||
html[0].appendChild(scriptTag);
|
||||
scriptTag.addEventListener("load", function () {
|
||||
_this3.initPlayer();
|
||||
});
|
||||
} else {
|
||||
this.initPlayer(); //这样是为了兼容页面上有多个播放器
|
||||
} //兼容单页加载和硬加载
|
||||
|
||||
|
||||
scriptTag.addEventListener("load", function () {
|
||||
_this3.initPlayer();
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
@ -380,7 +388,7 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
var _this4 = this;
|
||||
|
||||
if (typeof window.Aliplayer != 'undefined') {
|
||||
var options = this.options;
|
||||
var options = this.deepCloneObject(this.options);
|
||||
|
||||
if (options) {
|
||||
for (var key in options) {
|
||||
@ -684,22 +692,49 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
*/
|
||||
off: function off(ev, handle) {
|
||||
this.player && this.player.off(ev, handle);
|
||||
},
|
||||
|
||||
/**
|
||||
* 深度拷贝
|
||||
* @param {*} obj
|
||||
*/
|
||||
deepCloneObject: function deepCloneObject(obj) {
|
||||
var objClone = Array.isArray(obj) ? [] : {};
|
||||
|
||||
if (obj && _typeof(obj) === 'object') {
|
||||
for (var key in obj) {
|
||||
if (obj.hasOwnProperty(key)) {
|
||||
//判断ojb子元素是否为对象,如果是,递归复制
|
||||
if (obj[key] && _typeof(obj[key]) === 'object') {
|
||||
objClone[key] = this.deepCloneObject(obj[key]);
|
||||
} else {
|
||||
//如果不是,简单复制
|
||||
objClone[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return objClone;
|
||||
}
|
||||
},
|
||||
beforeDestroy: function beforeDestroy() {
|
||||
//防止重复创建
|
||||
this.dispose(); //销毁播放器(防止直播播放的情况下,播放器已经销毁,而后台还在继续下载资源造成卡顿的bug)
|
||||
|
||||
var head = document.querySelector('head'); //移除所有的重复创建的标签
|
||||
|
||||
var nodes = document.querySelectorAll('script[src="https://g.alicdn.com/de/prismplayer/2.8.2/hls/aliplayer-hls-min.js"]');
|
||||
head && nodes.forEach(function (item) {
|
||||
head.removeChild(item);
|
||||
});
|
||||
// const head = document.querySelector('head');
|
||||
// const cssNodes = document.querySelectorAll(`link.app__aliplayer-min-css`);
|
||||
// (html && cssNodes.length > 1) && cssNodes.forEach((item, index)=>{
|
||||
// if(index != 0) head.removeChild(item);
|
||||
// });
|
||||
// const html = document.querySelector('html');
|
||||
// const jsNodes = document.querySelectorAll(`script.app__aliplayer-min-js`);
|
||||
// (html && jsNodes.length > 1) && jsNodes.forEach((item, index)=>{
|
||||
// if(index != 0) html.removeChild(item);
|
||||
// });
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var packages_AliplayerV2vue_type_script_lang_js_ = (AliplayerV2vue_type_script_lang_js_);
|
||||
// CONCATENATED MODULE: ./node_modules/_vue-loader@15.7.2@vue-loader/lib/runtime/componentNormalizer.js
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
@ -795,7 +830,7 @@ function normalizeComponent (
|
||||
}
|
||||
}
|
||||
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/src/main.vue
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.vue
|
||||
|
||||
|
||||
|
||||
@ -804,7 +839,7 @@ function normalizeComponent (
|
||||
/* normalize component */
|
||||
|
||||
var component = normalizeComponent(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
packages_AliplayerV2vue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
@ -814,44 +849,21 @@ var component = normalizeComponent(
|
||||
|
||||
)
|
||||
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/AliplayerV2/index.js
|
||||
|
||||
// 导入组件,组件必须声明 name
|
||||
// 为组件添加 install 方法,用于按需引入
|
||||
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var AliplayerV2 = (main);
|
||||
/* harmony default export */ var AliplayerV2 = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/index.js
|
||||
|
||||
// packages / index.js
|
||||
// 导入单个组件
|
||||
// 以数组的结构保存组件,便于遍历
|
||||
// 定义 install 方法
|
||||
|
||||
var components = [AliplayerV2]; // 定义 install 方法
|
||||
|
||||
var install = function install(Vue) {
|
||||
if (install.installed) return false;
|
||||
install.installed = true; // 遍历并注册全局组件
|
||||
|
||||
components.map(function (component) {
|
||||
return Vue.component(component.name, component);
|
||||
});
|
||||
AliplayerV2.install = function (Vue, options) {
|
||||
if (options && options.cssLink) AliplayerV2.props.cssLink.default = options.cssLink;
|
||||
if (options && options.scriptSrc) AliplayerV2.props.scriptSrc.default = options.scriptSrc;
|
||||
Vue.component(AliplayerV2.name, AliplayerV2);
|
||||
};
|
||||
|
||||
if (typeof window !== 'undefined' && window.Vue) {
|
||||
install(window.Vue);
|
||||
}
|
||||
|
||||
/* harmony default export */ var packages_0 = ({
|
||||
// 导出的对象必须具备一个 install 方法
|
||||
install: install,
|
||||
Player: AliplayerV2 // 组件列表
|
||||
|
||||
});
|
||||
AliplayerV2.Player = AliplayerV2;
|
||||
/* harmony default export */ var packages_0 = (AliplayerV2);
|
||||
// CONCATENATED MODULE: ./node_modules/_@vue_cli-service@3.12.1@@vue/cli-service/lib/commands/build/entry-lib.js
|
||||
|
||||
|
||||
@ -859,113 +871,6 @@ if (typeof window !== 'undefined' && window.Vue) {
|
||||
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "1277":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var store = __webpack_require__("f341")('wks');
|
||||
var uid = __webpack_require__("4d2c");
|
||||
var Symbol = __webpack_require__("3f8b").Symbol;
|
||||
var USE_SYMBOL = typeof Symbol == 'function';
|
||||
|
||||
var $exports = module.exports = function (name) {
|
||||
return store[name] || (store[name] =
|
||||
USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));
|
||||
};
|
||||
|
||||
$exports.store = store;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "17cb":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var document = __webpack_require__("3f8b").document;
|
||||
module.exports = document && document.documentElement;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "1f9e":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// false -> Array#indexOf
|
||||
// true -> Array#includes
|
||||
var toIObject = __webpack_require__("6117");
|
||||
var toLength = __webpack_require__("8941");
|
||||
var toAbsoluteIndex = __webpack_require__("c3a9");
|
||||
module.exports = function (IS_INCLUDES) {
|
||||
return function ($this, el, fromIndex) {
|
||||
var O = toIObject($this);
|
||||
var length = toLength(O.length);
|
||||
var index = toAbsoluteIndex(fromIndex, length);
|
||||
var value;
|
||||
// Array#includes uses SameValueZero equality algorithm
|
||||
// eslint-disable-next-line no-self-compare
|
||||
if (IS_INCLUDES && el != el) while (length > index) {
|
||||
value = O[index++];
|
||||
// eslint-disable-next-line no-self-compare
|
||||
if (value != value) return true;
|
||||
// Array#indexOf ignores holes, Array#includes - not
|
||||
} else for (;length > index; index++) if (IS_INCLUDES || index in O) {
|
||||
if (O[index] === el) return IS_INCLUDES || index || 0;
|
||||
} return !IS_INCLUDES && -1;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "2498":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var global = __webpack_require__("3f8b");
|
||||
var core = __webpack_require__("da27");
|
||||
var hide = __webpack_require__("b8ea");
|
||||
var redefine = __webpack_require__("a6d5");
|
||||
var ctx = __webpack_require__("e85e");
|
||||
var PROTOTYPE = 'prototype';
|
||||
|
||||
var $export = function (type, name, source) {
|
||||
var IS_FORCED = type & $export.F;
|
||||
var IS_GLOBAL = type & $export.G;
|
||||
var IS_STATIC = type & $export.S;
|
||||
var IS_PROTO = type & $export.P;
|
||||
var IS_BIND = type & $export.B;
|
||||
var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];
|
||||
var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});
|
||||
var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});
|
||||
var key, own, out, exp;
|
||||
if (IS_GLOBAL) source = name;
|
||||
for (key in source) {
|
||||
// contains in native
|
||||
own = !IS_FORCED && target && target[key] !== undefined;
|
||||
// export native or passed
|
||||
out = (own ? target : source)[key];
|
||||
// bind timers to global for call from export context
|
||||
exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
|
||||
// extend global
|
||||
if (target) redefine(target, key, out, type & $export.U);
|
||||
// export
|
||||
if (exports[key] != out) hide(exports, key, exp);
|
||||
if (IS_PROTO && expProto[key] != out) expProto[key] = out;
|
||||
}
|
||||
};
|
||||
global.core = core;
|
||||
// type bitmap
|
||||
$export.F = 1; // forced
|
||||
$export.G = 2; // global
|
||||
$export.S = 4; // static
|
||||
$export.P = 8; // proto
|
||||
$export.B = 16; // bind
|
||||
$export.W = 32; // wrap
|
||||
$export.U = 64; // safe
|
||||
$export.R = 128; // real proto method for `library`
|
||||
module.exports = $export;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "25ae":
|
||||
@ -995,32 +900,6 @@ module.exports = function (it, S) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "3038":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// 7.2.1 RequireObjectCoercible(argument)
|
||||
module.exports = function (it) {
|
||||
if (it == undefined) throw TypeError("Can't call method on " + it);
|
||||
return it;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "3d87":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var def = __webpack_require__("d3d8").f;
|
||||
var has = __webpack_require__("549d");
|
||||
var TAG = __webpack_require__("1277")('toStringTag');
|
||||
|
||||
module.exports = function (it, tag, stat) {
|
||||
if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "3f8b":
|
||||
@ -1034,148 +913,6 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat
|
||||
if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "4634":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var $iterators = __webpack_require__("96dd");
|
||||
var getKeys = __webpack_require__("7d56");
|
||||
var redefine = __webpack_require__("a6d5");
|
||||
var global = __webpack_require__("3f8b");
|
||||
var hide = __webpack_require__("b8ea");
|
||||
var Iterators = __webpack_require__("e3b3");
|
||||
var wks = __webpack_require__("1277");
|
||||
var ITERATOR = wks('iterator');
|
||||
var TO_STRING_TAG = wks('toStringTag');
|
||||
var ArrayValues = Iterators.Array;
|
||||
|
||||
var DOMIterables = {
|
||||
CSSRuleList: true, // TODO: Not spec compliant, should be false.
|
||||
CSSStyleDeclaration: false,
|
||||
CSSValueList: false,
|
||||
ClientRectList: false,
|
||||
DOMRectList: false,
|
||||
DOMStringList: false,
|
||||
DOMTokenList: true,
|
||||
DataTransferItemList: false,
|
||||
FileList: false,
|
||||
HTMLAllCollection: false,
|
||||
HTMLCollection: false,
|
||||
HTMLFormElement: false,
|
||||
HTMLSelectElement: false,
|
||||
MediaList: true, // TODO: Not spec compliant, should be false.
|
||||
MimeTypeArray: false,
|
||||
NamedNodeMap: false,
|
||||
NodeList: true,
|
||||
PaintRequestList: false,
|
||||
Plugin: false,
|
||||
PluginArray: false,
|
||||
SVGLengthList: false,
|
||||
SVGNumberList: false,
|
||||
SVGPathSegList: false,
|
||||
SVGPointList: false,
|
||||
SVGStringList: false,
|
||||
SVGTransformList: false,
|
||||
SourceBufferList: false,
|
||||
StyleSheetList: true, // TODO: Not spec compliant, should be false.
|
||||
TextTrackCueList: false,
|
||||
TextTrackList: false,
|
||||
TouchList: false
|
||||
};
|
||||
|
||||
for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {
|
||||
var NAME = collections[i];
|
||||
var explicit = DOMIterables[NAME];
|
||||
var Collection = global[NAME];
|
||||
var proto = Collection && Collection.prototype;
|
||||
var key;
|
||||
if (proto) {
|
||||
if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);
|
||||
if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
|
||||
Iterators[NAME] = ArrayValues;
|
||||
if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "4aef":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var LIBRARY = __webpack_require__("6cc2");
|
||||
var $export = __webpack_require__("2498");
|
||||
var redefine = __webpack_require__("a6d5");
|
||||
var hide = __webpack_require__("b8ea");
|
||||
var Iterators = __webpack_require__("e3b3");
|
||||
var $iterCreate = __webpack_require__("c264");
|
||||
var setToStringTag = __webpack_require__("3d87");
|
||||
var getPrototypeOf = __webpack_require__("d15b");
|
||||
var ITERATOR = __webpack_require__("1277")('iterator');
|
||||
var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
|
||||
var FF_ITERATOR = '@@iterator';
|
||||
var KEYS = 'keys';
|
||||
var VALUES = 'values';
|
||||
|
||||
var returnThis = function () { return this; };
|
||||
|
||||
module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {
|
||||
$iterCreate(Constructor, NAME, next);
|
||||
var getMethod = function (kind) {
|
||||
if (!BUGGY && kind in proto) return proto[kind];
|
||||
switch (kind) {
|
||||
case KEYS: return function keys() { return new Constructor(this, kind); };
|
||||
case VALUES: return function values() { return new Constructor(this, kind); };
|
||||
} return function entries() { return new Constructor(this, kind); };
|
||||
};
|
||||
var TAG = NAME + ' Iterator';
|
||||
var DEF_VALUES = DEFAULT == VALUES;
|
||||
var VALUES_BUG = false;
|
||||
var proto = Base.prototype;
|
||||
var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
|
||||
var $default = $native || getMethod(DEFAULT);
|
||||
var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;
|
||||
var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
|
||||
var methods, key, IteratorPrototype;
|
||||
// Fix native
|
||||
if ($anyNative) {
|
||||
IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));
|
||||
if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {
|
||||
// Set @@toStringTag to native iterators
|
||||
setToStringTag(IteratorPrototype, TAG, true);
|
||||
// fix for some old engines
|
||||
if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);
|
||||
}
|
||||
}
|
||||
// fix Array#{values, @@iterator}.name in V8 / FF
|
||||
if (DEF_VALUES && $native && $native.name !== VALUES) {
|
||||
VALUES_BUG = true;
|
||||
$default = function values() { return $native.call(this); };
|
||||
}
|
||||
// Define iterator
|
||||
if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {
|
||||
hide(proto, ITERATOR, $default);
|
||||
}
|
||||
// Plug for library
|
||||
Iterators[NAME] = $default;
|
||||
Iterators[TAG] = returnThis;
|
||||
if (DEFAULT) {
|
||||
methods = {
|
||||
values: DEF_VALUES ? $default : getMethod(VALUES),
|
||||
keys: IS_SET ? $default : getMethod(KEYS),
|
||||
entries: $entries
|
||||
};
|
||||
if (FORCED) for (key in methods) {
|
||||
if (!(key in proto)) redefine(proto, key, methods[key]);
|
||||
} else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);
|
||||
}
|
||||
return methods;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "4d2c":
|
||||
@ -1199,79 +936,6 @@ module.exports = function (it, key) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "6077":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
var toString = {}.toString;
|
||||
|
||||
module.exports = function (it) {
|
||||
return toString.call(it).slice(8, -1);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "6117":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
||||
var IObject = __webpack_require__("9952");
|
||||
var defined = __webpack_require__("3038");
|
||||
module.exports = function (it) {
|
||||
return IObject(defined(it));
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "65c3":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
||||
var anObject = __webpack_require__("8cac");
|
||||
var dPs = __webpack_require__("8d69");
|
||||
var enumBugKeys = __webpack_require__("d93f");
|
||||
var IE_PROTO = __webpack_require__("9947")('IE_PROTO');
|
||||
var Empty = function () { /* empty */ };
|
||||
var PROTOTYPE = 'prototype';
|
||||
|
||||
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
||||
var createDict = function () {
|
||||
// Thrash, waste and sodomy: IE GC bug
|
||||
var iframe = __webpack_require__("6618")('iframe');
|
||||
var i = enumBugKeys.length;
|
||||
var lt = '<';
|
||||
var gt = '>';
|
||||
var iframeDocument;
|
||||
iframe.style.display = 'none';
|
||||
__webpack_require__("17cb").appendChild(iframe);
|
||||
iframe.src = 'javascript:'; // eslint-disable-line no-script-url
|
||||
// createDict = iframe.contentWindow.Object;
|
||||
// html.removeChild(iframe);
|
||||
iframeDocument = iframe.contentWindow.document;
|
||||
iframeDocument.open();
|
||||
iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
|
||||
iframeDocument.close();
|
||||
createDict = iframeDocument.F;
|
||||
while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
|
||||
return createDict();
|
||||
};
|
||||
|
||||
module.exports = Object.create || function create(O, Properties) {
|
||||
var result;
|
||||
if (O !== null) {
|
||||
Empty[PROTOTYPE] = anObject(O);
|
||||
result = new Empty();
|
||||
Empty[PROTOTYPE] = null;
|
||||
// add "__proto__" for Object.getPrototypeOf polyfill
|
||||
result[IE_PROTO] = O;
|
||||
} else result = createDict();
|
||||
return Properties === undefined ? result : dPs(result, Properties);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "6618":
|
||||
@ -1302,30 +966,6 @@ module.exports = false;
|
||||
module.exports = __webpack_require__("f341")('native-function-to-string', Function.toString);
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "7afe":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var has = __webpack_require__("549d");
|
||||
var toIObject = __webpack_require__("6117");
|
||||
var arrayIndexOf = __webpack_require__("1f9e")(false);
|
||||
var IE_PROTO = __webpack_require__("9947")('IE_PROTO');
|
||||
|
||||
module.exports = function (object, names) {
|
||||
var O = toIObject(object);
|
||||
var i = 0;
|
||||
var result = [];
|
||||
var key;
|
||||
for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);
|
||||
// Don't enum bug & hidden keys
|
||||
while (names.length > i) if (has(O, key = names[i++])) {
|
||||
~arrayIndexOf(result, key) || result.push(key);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "7cfd":
|
||||
@ -1349,44 +989,6 @@ NAME in FProto || __webpack_require__("f9a5") && dP(FProto, NAME, {
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "7d56":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
||||
var $keys = __webpack_require__("7afe");
|
||||
var enumBugKeys = __webpack_require__("d93f");
|
||||
|
||||
module.exports = Object.keys || function keys(O) {
|
||||
return $keys(O, enumBugKeys);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8451":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = function (it) {
|
||||
if (typeof it != 'function') throw TypeError(it + ' is not a function!');
|
||||
return it;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8941":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 7.1.15 ToLength
|
||||
var toInteger = __webpack_require__("a6ad");
|
||||
var min = Math.min;
|
||||
module.exports = function (it) {
|
||||
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8cac":
|
||||
@ -1399,93 +1001,6 @@ module.exports = function (it) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "8d69":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var dP = __webpack_require__("d3d8");
|
||||
var anObject = __webpack_require__("8cac");
|
||||
var getKeys = __webpack_require__("7d56");
|
||||
|
||||
module.exports = __webpack_require__("f9a5") ? Object.defineProperties : function defineProperties(O, Properties) {
|
||||
anObject(O);
|
||||
var keys = getKeys(Properties);
|
||||
var length = keys.length;
|
||||
var i = 0;
|
||||
var P;
|
||||
while (length > i) dP.f(O, P = keys[i++], Properties[P]);
|
||||
return O;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "96dd":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var addToUnscopables = __webpack_require__("ab19");
|
||||
var step = __webpack_require__("c8e9");
|
||||
var Iterators = __webpack_require__("e3b3");
|
||||
var toIObject = __webpack_require__("6117");
|
||||
|
||||
// 22.1.3.4 Array.prototype.entries()
|
||||
// 22.1.3.13 Array.prototype.keys()
|
||||
// 22.1.3.29 Array.prototype.values()
|
||||
// 22.1.3.30 Array.prototype[@@iterator]()
|
||||
module.exports = __webpack_require__("4aef")(Array, 'Array', function (iterated, kind) {
|
||||
this._t = toIObject(iterated); // target
|
||||
this._i = 0; // next index
|
||||
this._k = kind; // kind
|
||||
// 22.1.5.2.1 %ArrayIteratorPrototype%.next()
|
||||
}, function () {
|
||||
var O = this._t;
|
||||
var kind = this._k;
|
||||
var index = this._i++;
|
||||
if (!O || index >= O.length) {
|
||||
this._t = undefined;
|
||||
return step(1);
|
||||
}
|
||||
if (kind == 'keys') return step(0, index);
|
||||
if (kind == 'values') return step(0, O[index]);
|
||||
return step(0, [index, O[index]]);
|
||||
}, 'values');
|
||||
|
||||
// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)
|
||||
Iterators.Arguments = Iterators.Array;
|
||||
|
||||
addToUnscopables('keys');
|
||||
addToUnscopables('values');
|
||||
addToUnscopables('entries');
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "9947":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var shared = __webpack_require__("f341")('keys');
|
||||
var uid = __webpack_require__("4d2c");
|
||||
module.exports = function (key) {
|
||||
return shared[key] || (shared[key] = uid(key));
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "9952":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
||||
var cof = __webpack_require__("6077");
|
||||
// eslint-disable-next-line no-prototype-builtins
|
||||
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
||||
return cof(it) == 'String' ? it.split('') : Object(it);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "9f7e":
|
||||
@ -1498,19 +1013,6 @@ if (__webpack_require__("f9a5") && /./g.flags != 'g') __webpack_require__("d3d8"
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "a6ad":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// 7.1.4 ToInteger
|
||||
var ceil = Math.ceil;
|
||||
var floor = Math.floor;
|
||||
module.exports = function (it) {
|
||||
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "a6d5":
|
||||
@ -1549,32 +1051,6 @@ __webpack_require__("da27").inspectSource = function (it) {
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "a9cf":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 7.1.13 ToObject(argument)
|
||||
var defined = __webpack_require__("3038");
|
||||
module.exports = function (it) {
|
||||
return Object(defined(it));
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "ab19":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 22.1.3.31 Array.prototype[@@unscopables]
|
||||
var UNSCOPABLES = __webpack_require__("1277")('unscopables');
|
||||
var ArrayProto = Array.prototype;
|
||||
if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__("b8ea")(ArrayProto, UNSCOPABLES, {});
|
||||
module.exports = function (key) {
|
||||
ArrayProto[UNSCOPABLES][key] = true;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "b8ea":
|
||||
@ -1590,51 +1066,6 @@ module.exports = __webpack_require__("f9a5") ? function (object, key, value) {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "c264":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var create = __webpack_require__("65c3");
|
||||
var descriptor = __webpack_require__("0614");
|
||||
var setToStringTag = __webpack_require__("3d87");
|
||||
var IteratorPrototype = {};
|
||||
|
||||
// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
|
||||
__webpack_require__("b8ea")(IteratorPrototype, __webpack_require__("1277")('iterator'), function () { return this; });
|
||||
|
||||
module.exports = function (Constructor, NAME, next) {
|
||||
Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });
|
||||
setToStringTag(Constructor, NAME + ' Iterator');
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "c3a9":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var toInteger = __webpack_require__("a6ad");
|
||||
var max = Math.max;
|
||||
var min = Math.min;
|
||||
module.exports = function (index, length) {
|
||||
index = toInteger(index);
|
||||
return index < 0 ? max(index + length, 0) : min(index, length);
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "c8e9":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = function (done, value) {
|
||||
return { value: value, done: !!done };
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "cc1d":
|
||||
@ -1668,26 +1099,6 @@ if (__webpack_require__("0cc1")(function () { return $toString.call({ source: 'a
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "d15b":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
||||
var has = __webpack_require__("549d");
|
||||
var toObject = __webpack_require__("a9cf");
|
||||
var IE_PROTO = __webpack_require__("9947")('IE_PROTO');
|
||||
var ObjectProto = Object.prototype;
|
||||
|
||||
module.exports = Object.getPrototypeOf || function (O) {
|
||||
O = toObject(O);
|
||||
if (has(O, IE_PROTO)) return O[IE_PROTO];
|
||||
if (typeof O.constructor == 'function' && O instanceof O.constructor) {
|
||||
return O.constructor.prototype;
|
||||
} return O instanceof Object ? ObjectProto : null;
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "d3d8":
|
||||
@ -1711,17 +1122,6 @@ exports.f = __webpack_require__("f9a5") ? Object.defineProperty : function defin
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "d93f":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// IE 8- don't enum bug keys
|
||||
module.exports = (
|
||||
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
|
||||
).split(',');
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "da0b":
|
||||
@ -1741,14 +1141,6 @@ var core = module.exports = { version: '2.6.10' };
|
||||
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "e3b3":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = {};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "e67d":
|
||||
@ -1813,33 +1205,6 @@ module.exports = function () {
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "e85e":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// optional / simple context binding
|
||||
var aFunction = __webpack_require__("8451");
|
||||
module.exports = function (fn, that, length) {
|
||||
aFunction(fn);
|
||||
if (that === undefined) return fn;
|
||||
switch (length) {
|
||||
case 1: return function (a) {
|
||||
return fn.call(that, a);
|
||||
};
|
||||
case 2: return function (a, b) {
|
||||
return fn.call(that, a, b);
|
||||
};
|
||||
case 3: return function (a, b, c) {
|
||||
return fn.call(that, a, b, c);
|
||||
};
|
||||
}
|
||||
return function (/* ...args */) {
|
||||
return fn.apply(that, arguments);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "f341":
|
||||
|
2
lib/vue-aliplayer-v2.umd.min.js
vendored
2
lib/vue-aliplayer-v2.umd.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "vue-aliplayer-v2",
|
||||
"version": "1.2.2",
|
||||
"version": "1.2.9",
|
||||
"author": "yxs",
|
||||
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的集成播放器.",
|
||||
"description": "感谢每一位支持开源的朋友. 这是一个基于Alipayer 开发并封装成vue组件的集成播放器.可播放rtmp,m3u8,mp4....视频.除支持直播流与点播的基础功能外,也支持视频的加密播放、清晰度切换、直播时移等业务场景",
|
||||
"main": "lib/vue-aliplayer-v2.umd.min.js",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
|
@ -1,7 +0,0 @@
|
||||
// 导入组件,组件必须声明 name
|
||||
import VueAliplayerV2 from './src/main.vue';
|
||||
// 为组件添加 install 方法,用于按需引入
|
||||
VueAliplayerV2.install = function (Vue) {
|
||||
Vue.component(VueAliplayerV2.name, VueAliplayerV2);
|
||||
}
|
||||
export default VueAliplayerV2;
|
@ -15,20 +15,15 @@ export default {
|
||||
type: [String],
|
||||
default: null
|
||||
},
|
||||
// id:{
|
||||
// required: false,
|
||||
// type: [String],
|
||||
// default: null
|
||||
// },
|
||||
cssLink:{ //css版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.8.2/skins/default/aliplayer-min.css`
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.9.3/skins/default/aliplayer-min.css`
|
||||
},
|
||||
scriptSrc:{ //js版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.8.2/aliplayer-min.js`
|
||||
default: `https://g.alicdn.com/de/prismplayer/2.9.3/aliplayer-min.js`
|
||||
}
|
||||
},
|
||||
data () {
|
||||
@ -155,8 +150,8 @@ export default {
|
||||
* 加载Alipayer的SDK
|
||||
*/
|
||||
init(){
|
||||
const linkID = 'aliplayer-min-css';
|
||||
const scriptID = 'aliplayer-min-js';
|
||||
const linkID = 'app__aliplayer-min-css';
|
||||
const scriptID = 'app__aliplayer-min-js';
|
||||
const head = document.getElementsByTagName('head');
|
||||
const html = document.getElementsByTagName('html');
|
||||
let scriptTag = document.getElementById(scriptID);
|
||||
@ -168,6 +163,7 @@ export default {
|
||||
link.rel = 'stylesheet';
|
||||
link.href = this.cssLink;
|
||||
link.id = linkID;
|
||||
// link.className = linkID;
|
||||
head[0].appendChild(link);
|
||||
}
|
||||
if(!scriptTag) {
|
||||
@ -175,17 +171,16 @@ export default {
|
||||
scriptTag = document.createElement('script');
|
||||
scriptTag.type = "text/javascript";
|
||||
scriptTag.id = scriptID;
|
||||
// scriptTag.className = scriptID;
|
||||
scriptTag.src = this.scriptSrc;
|
||||
html[0].appendChild(scriptTag);
|
||||
scriptTag.addEventListener("load", () => {
|
||||
this.initPlayer();
|
||||
});
|
||||
} else {
|
||||
this.initPlayer(); //这样是为了兼容页面上有多个播放器
|
||||
}
|
||||
//兼容单页加载和硬加载
|
||||
scriptTag.addEventListener("load", () => {
|
||||
this.initPlayer();
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
@ -194,7 +189,7 @@ export default {
|
||||
*/
|
||||
initPlayer(){
|
||||
if(typeof window.Aliplayer != 'undefined') {
|
||||
const options = this.options;
|
||||
const options = this.deepCloneObject(this.options);
|
||||
if(options){
|
||||
for (const key in options) {
|
||||
this.config[key] = options[key];
|
||||
@ -488,15 +483,44 @@ export default {
|
||||
*/
|
||||
off(ev,handle){
|
||||
this.player && this.player.off(ev,handle);
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 深度拷贝
|
||||
* @param {*} obj
|
||||
*/
|
||||
deepCloneObject (obj) {
|
||||
let objClone = Array.isArray(obj) ? [] : {};
|
||||
if (obj && typeof obj === 'object') {
|
||||
for (let key in obj) {
|
||||
if (obj.hasOwnProperty(key)) {
|
||||
//判断ojb子元素是否为对象,如果是,递归复制
|
||||
if (obj[key] && typeof obj[key] === 'object') {
|
||||
objClone[key] = this.deepCloneObject(obj[key]);
|
||||
} else {
|
||||
//如果不是,简单复制
|
||||
objClone[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return objClone;
|
||||
}
|
||||
|
||||
},
|
||||
beforeDestroy(){ //防止重复创建
|
||||
this.dispose(); //销毁播放器(防止直播播放的情况下,播放器已经销毁,而后台还在继续下载资源造成卡顿的bug)
|
||||
const head = document.querySelector('head'); //移除所有的重复创建的标签
|
||||
const nodes = document.querySelectorAll('script[src="https://g.alicdn.com/de/prismplayer/2.8.2/hls/aliplayer-hls-min.js"]');
|
||||
head && nodes.forEach((item)=>{
|
||||
head.removeChild(item);
|
||||
});
|
||||
// const head = document.querySelector('head');
|
||||
// const cssNodes = document.querySelectorAll(`link.app__aliplayer-min-css`);
|
||||
// (html && cssNodes.length > 1) && cssNodes.forEach((item, index)=>{
|
||||
// if(index != 0) head.removeChild(item);
|
||||
// });
|
||||
// const html = document.querySelector('html');
|
||||
// const jsNodes = document.querySelectorAll(`script.app__aliplayer-min-js`);
|
||||
// (html && jsNodes.length > 1) && jsNodes.forEach((item, index)=>{
|
||||
// if(index != 0) html.removeChild(item);
|
||||
// });
|
||||
}
|
||||
};
|
||||
</script>
|
@ -1,27 +1,11 @@
|
||||
// packages / index.js
|
||||
// 导入单个组件
|
||||
import VueAliplayerV2 from './AliplayerV2';
|
||||
|
||||
// 以数组的结构保存组件,便于遍历
|
||||
const components = [
|
||||
VueAliplayerV2
|
||||
];
|
||||
|
||||
// 定义 install 方法
|
||||
const install = (Vue) =>{
|
||||
if (install.installed) return false;
|
||||
install.installed = true;
|
||||
// 遍历并注册全局组件
|
||||
components.map(component => {
|
||||
return Vue.component(component.name, component)
|
||||
});
|
||||
};
|
||||
if (typeof window !== 'undefined' && window.Vue) {
|
||||
install(window.Vue);
|
||||
}
|
||||
export default {
|
||||
// 导出的对象必须具备一个 install 方法
|
||||
install,
|
||||
Player: VueAliplayerV2
|
||||
// 组件列表
|
||||
VueAliplayerV2.install = (Vue, options) =>{
|
||||
if(options && options.cssLink) VueAliplayerV2.props.cssLink.default = options.cssLink;
|
||||
if(options && options.scriptSrc) VueAliplayerV2.props.scriptSrc.default = options.scriptSrc;
|
||||
Vue.component(VueAliplayerV2.name, VueAliplayerV2);
|
||||
};
|
||||
VueAliplayerV2.Player = VueAliplayerV2;
|
||||
export default VueAliplayerV2;
|
||||
|
23
t.sh
23
t.sh
@ -1,3 +1,7 @@
|
||||
echo "设置 npm config set registry http://registry.npmjs.org"
|
||||
|
||||
npm config set registry http://registry.npmjs.org
|
||||
|
||||
echo "打包 => dist";
|
||||
|
||||
# 打包 => dist
|
||||
@ -13,6 +17,10 @@ echo "推送到npmjs";
|
||||
#推送到npmjs
|
||||
npm publish;
|
||||
|
||||
echo "设置 npm config set registry https://registry.npm.taobao.org"
|
||||
|
||||
npm config set registry https://registry.npm.taobao.org
|
||||
|
||||
# 更新gh-pages
|
||||
echo "更新gh-pages";
|
||||
|
||||
@ -33,18 +41,3 @@ git push origin -d gh-pages;
|
||||
git subtree push --prefix dist origin gh-pages;
|
||||
|
||||
echo "已推送gh-pages";
|
||||
|
||||
# 推送完成后切换回master
|
||||
git checkout master;
|
||||
|
||||
echo "切换回master";
|
||||
|
||||
git add .;
|
||||
|
||||
git commit -m "更新lib包";
|
||||
|
||||
git pull;
|
||||
|
||||
git push;
|
||||
|
||||
echo "完成";
|
Loading…
x
Reference in New Issue
Block a user