@cmstops/pro-compo 0.3.41 → 0.3.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +49 -0
- package/dist/index.min.css +1 -1
- package/es/docHistory/component.js +45 -38
- package/es/docHistory/scripts/useDocHistory.js +1 -1
- package/es/hooks/useMediaContext.d.ts +12 -0
- package/es/index.css +49 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/index.less +1 -0
- package/es/utils/request.js +2 -0
- package/es/videoThumb/component.d.ts +0 -0
- package/es/videoThumb/component.js +103 -0
- package/es/videoThumb/index.d.ts +2 -0
- package/es/videoThumb/index.js +7 -0
- package/es/videoThumb/scripts/api.d.ts +9 -0
- package/es/videoThumb/scripts/api.js +11 -0
- package/es/videoThumb/scripts/useVideoThumbs.d.ts +7 -0
- package/es/videoThumb/scripts/useVideoThumbs.js +48 -0
- package/es/videoThumb/style/css.js +1 -0
- package/es/videoThumb/style/index.css +49 -0
- package/es/videoThumb/style/index.d.ts +1 -0
- package/es/videoThumb/style/index.js +1 -0
- package/es/videoThumb/style/index.less +61 -0
- package/lib/docHistory/component.js +44 -37
- package/lib/docHistory/scripts/useDocHistory.js +1 -1
- package/lib/index.css +49 -0
- package/lib/index.js +2 -0
- package/lib/index.less +1 -0
- package/lib/utils/request.js +2 -0
- package/lib/videoThumb/component.js +104 -0
- package/lib/videoThumb/index.js +8 -0
- package/lib/videoThumb/scripts/api.js +13 -0
- package/lib/videoThumb/scripts/useVideoThumbs.js +50 -0
- package/lib/videoThumb/style/css.js +2 -0
- package/lib/videoThumb/style/index.css +49 -0
- package/lib/videoThumb/style/index.js +2 -0
- package/lib/videoThumb/style/index.less +61 -0
- package/package.json +6 -6
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var vue = require("vue");
|
|
3
|
+
var config = require("../config.js");
|
|
4
|
+
var useVideoThumbs = require("./scripts/useVideoThumbs.js");
|
|
5
|
+
const _hoisted_1 = { class: "video-thumb" };
|
|
6
|
+
const _hoisted_2 = { class: "video-player-container" };
|
|
7
|
+
const _hoisted_3 = ["src"];
|
|
8
|
+
const _hoisted_4 = ["onClick"];
|
|
9
|
+
const _hoisted_5 = ["src"];
|
|
10
|
+
const _sfc_main = vue.defineComponent({
|
|
11
|
+
...{ name: "videoThumb" },
|
|
12
|
+
__name: "component",
|
|
13
|
+
props: {
|
|
14
|
+
BASE_API: {},
|
|
15
|
+
src: {},
|
|
16
|
+
duration: {}
|
|
17
|
+
},
|
|
18
|
+
emits: ["select"],
|
|
19
|
+
setup(__props, { emit: __emit }) {
|
|
20
|
+
const props = __props;
|
|
21
|
+
const emit = __emit;
|
|
22
|
+
const BASE_API = props.BASE_API || config.DEFAULT_BASE_API;
|
|
23
|
+
const { thumbs, curThumb, getVideoThumbs, handleSelectThumb } = useVideoThumbs.useVideoThumbs();
|
|
24
|
+
const videoThumbRef = vue.ref();
|
|
25
|
+
const videoThumbDrager = vue.ref();
|
|
26
|
+
const isDrag = vue.ref(false);
|
|
27
|
+
const width = vue.computed(() => {
|
|
28
|
+
if (!videoThumbRef.value)
|
|
29
|
+
return 0;
|
|
30
|
+
const rect = videoThumbRef.value.getBoundingClientRect();
|
|
31
|
+
return parseInt((rect.width / thumbs.value.length).toFixed(0), 10);
|
|
32
|
+
});
|
|
33
|
+
function moveDragger(moveX) {
|
|
34
|
+
if (!videoThumbDrager.value || !videoThumbRef.value)
|
|
35
|
+
return;
|
|
36
|
+
const rect = videoThumbRef.value.getBoundingClientRect();
|
|
37
|
+
if (moveX < 0 || moveX > rect.width)
|
|
38
|
+
return;
|
|
39
|
+
videoThumbDrager.value.style.left = `${moveX}px`;
|
|
40
|
+
const index = Math.floor(moveX / width.value);
|
|
41
|
+
curThumb.value = thumbs.value[index];
|
|
42
|
+
}
|
|
43
|
+
const handleMousedown = () => {
|
|
44
|
+
isDrag.value = true;
|
|
45
|
+
window.onmouseup = handleMouseup;
|
|
46
|
+
window.onmousemove = handleMousemove;
|
|
47
|
+
};
|
|
48
|
+
const handleMouseup = () => {
|
|
49
|
+
isDrag.value = false;
|
|
50
|
+
window.onmouseup = null;
|
|
51
|
+
window.onmousemove = null;
|
|
52
|
+
};
|
|
53
|
+
const handleMousemove = (e) => {
|
|
54
|
+
if (!isDrag.value)
|
|
55
|
+
return;
|
|
56
|
+
const moveX = e.x - 30;
|
|
57
|
+
moveDragger(moveX);
|
|
58
|
+
};
|
|
59
|
+
function handleSelect(idx) {
|
|
60
|
+
handleSelectThumb(idx);
|
|
61
|
+
moveDragger(idx * width.value + width.value / 2);
|
|
62
|
+
}
|
|
63
|
+
vue.watch(
|
|
64
|
+
() => curThumb.value,
|
|
65
|
+
() => emit("select", curThumb.value)
|
|
66
|
+
);
|
|
67
|
+
vue.onMounted(() => {
|
|
68
|
+
getVideoThumbs(BASE_API, props.src, props.duration);
|
|
69
|
+
});
|
|
70
|
+
return (_ctx, _cache) => {
|
|
71
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
|
|
72
|
+
vue.createElementVNode("div", _hoisted_2, [
|
|
73
|
+
vue.createElementVNode("img", { src: vue.unref(curThumb) }, null, 8, _hoisted_3)
|
|
74
|
+
]),
|
|
75
|
+
vue.createCommentVNode(" \u5C01\u9762\u56FE "),
|
|
76
|
+
vue.createElementVNode("div", {
|
|
77
|
+
ref_key: "videoThumbRef",
|
|
78
|
+
ref: videoThumbRef,
|
|
79
|
+
class: "video-thumb-list"
|
|
80
|
+
}, [
|
|
81
|
+
vue.createElementVNode("div", {
|
|
82
|
+
ref_key: "videoThumbDrager",
|
|
83
|
+
ref: videoThumbDrager,
|
|
84
|
+
class: "video-thumb-list-drager",
|
|
85
|
+
onMousedown: handleMousedown
|
|
86
|
+
}, null, 544),
|
|
87
|
+
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(thumbs), (thumb, idx) => {
|
|
88
|
+
return vue.openBlock(), vue.createElementBlock("div", {
|
|
89
|
+
key: thumb,
|
|
90
|
+
class: vue.normalizeClass(["video-thumb-list-item", { active: vue.unref(curThumb) === thumb }]),
|
|
91
|
+
onClick: ($event) => handleSelect(idx)
|
|
92
|
+
}, [
|
|
93
|
+
vue.createElementVNode("img", {
|
|
94
|
+
src: thumb,
|
|
95
|
+
alt: ""
|
|
96
|
+
}, null, 8, _hoisted_5)
|
|
97
|
+
], 10, _hoisted_4);
|
|
98
|
+
}), 128))
|
|
99
|
+
], 512)
|
|
100
|
+
]);
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
module.exports = _sfc_main;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
var request = require("../../utils/request.js");
|
|
4
|
+
function editthumb(BASE_URL, params) {
|
|
5
|
+
const { url, count, start, end, search } = params;
|
|
6
|
+
const src = encodeURIComponent(url);
|
|
7
|
+
const n = count > 50 ? 50 : count;
|
|
8
|
+
return request(BASE_URL, {
|
|
9
|
+
url: `/poplar/v2/editthumb?src=${src}&n=${n}&starttime=${start}&endtime=${end}${search}`,
|
|
10
|
+
method: "get"
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
exports.editthumb = editthumb;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
var vue = require("vue");
|
|
4
|
+
var api = require("./api.js");
|
|
5
|
+
function calculateFrameCoverCount(videoDuration) {
|
|
6
|
+
const base = 5;
|
|
7
|
+
const coefficient = 10;
|
|
8
|
+
const maxCount = 50;
|
|
9
|
+
let count = Math.log(videoDuration / base) * coefficient;
|
|
10
|
+
count = Math.min(count, maxCount);
|
|
11
|
+
return Math.ceil(count);
|
|
12
|
+
}
|
|
13
|
+
function useVideoThumbs() {
|
|
14
|
+
const thumbs = vue.ref([]);
|
|
15
|
+
const loading = vue.ref(true);
|
|
16
|
+
const curThumb = vue.ref();
|
|
17
|
+
async function getVideoThumbs(BASE_API, url, duration) {
|
|
18
|
+
loading.value = true;
|
|
19
|
+
try {
|
|
20
|
+
const { Code, Msg } = await api.editthumb(BASE_API, {
|
|
21
|
+
url,
|
|
22
|
+
count: calculateFrameCoverCount(duration),
|
|
23
|
+
start: 0,
|
|
24
|
+
end: duration,
|
|
25
|
+
search: "&cover=true"
|
|
26
|
+
});
|
|
27
|
+
if (Code !== 200)
|
|
28
|
+
return;
|
|
29
|
+
const { Domain, Frames } = Msg;
|
|
30
|
+
thumbs.value = Frames.map((item) => {
|
|
31
|
+
return `${Domain}/${item}`;
|
|
32
|
+
});
|
|
33
|
+
[curThumb.value] = thumbs.value;
|
|
34
|
+
} catch (e) {
|
|
35
|
+
console.log("\u52A0\u8F7D\u5C01\u9762\u56FE\u5931\u8D25", e);
|
|
36
|
+
} finally {
|
|
37
|
+
loading.value = false;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
function handleSelectThumb(idx) {
|
|
41
|
+
curThumb.value = thumbs.value[idx];
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
thumbs,
|
|
45
|
+
curThumb,
|
|
46
|
+
getVideoThumbs,
|
|
47
|
+
handleSelectThumb
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
exports.useVideoThumbs = useVideoThumbs;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.video-thumb {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 10px;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
padding: 10px;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
}
|
|
11
|
+
.video-thumb .video-player-container {
|
|
12
|
+
display: flex;
|
|
13
|
+
flex: 1;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
}
|
|
17
|
+
.video-thumb .video-player-container video {
|
|
18
|
+
height: 100%;
|
|
19
|
+
}
|
|
20
|
+
.video-thumb .video-thumb-list {
|
|
21
|
+
position: relative;
|
|
22
|
+
display: flex;
|
|
23
|
+
height: 80px;
|
|
24
|
+
padding: 20px 0;
|
|
25
|
+
}
|
|
26
|
+
.video-thumb .video-thumb-list .video-thumb-list-item {
|
|
27
|
+
flex: 1;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
user-select: none;
|
|
30
|
+
}
|
|
31
|
+
.video-thumb .video-thumb-list .video-thumb-list-item img {
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 100%;
|
|
34
|
+
object-fit: cover;
|
|
35
|
+
transition: all 0.1s ease-in-out;
|
|
36
|
+
pointer-events: none;
|
|
37
|
+
}
|
|
38
|
+
.video-thumb .video-thumb-list .video-thumb-list-item:hover:not(.active) img {
|
|
39
|
+
transform: scale(1.05);
|
|
40
|
+
}
|
|
41
|
+
.video-thumb .video-thumb-list .video-thumb-list-drager {
|
|
42
|
+
position: absolute;
|
|
43
|
+
top: 20px;
|
|
44
|
+
left: 0;
|
|
45
|
+
width: 6px;
|
|
46
|
+
height: calc(100% - 40px);
|
|
47
|
+
background-color: rgb(var(--primary-5));
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.video-thumb {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 10px;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
padding: 10px;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
|
|
11
|
+
// 播放器
|
|
12
|
+
.video-player-container {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex: 1;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
overflow: hidden;
|
|
17
|
+
|
|
18
|
+
video {
|
|
19
|
+
height: 100%;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// 视频封面列表
|
|
24
|
+
.video-thumb-list {
|
|
25
|
+
position: relative;
|
|
26
|
+
display: flex;
|
|
27
|
+
height: 80px;
|
|
28
|
+
padding: 20px 0;
|
|
29
|
+
|
|
30
|
+
.video-thumb-list-item {
|
|
31
|
+
flex: 1;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
user-select: none;
|
|
34
|
+
|
|
35
|
+
img {
|
|
36
|
+
width: 100%;
|
|
37
|
+
height: 100%;
|
|
38
|
+
object-fit: cover;
|
|
39
|
+
transition: all 0.1s ease-in-out;
|
|
40
|
+
// 不允许拖动
|
|
41
|
+
pointer-events: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:hover:not(.active) {
|
|
45
|
+
img {
|
|
46
|
+
transform: scale(1.05);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.video-thumb-list-drager {
|
|
52
|
+
position: absolute;
|
|
53
|
+
top: 20px;
|
|
54
|
+
left: 0;
|
|
55
|
+
width: 6px;
|
|
56
|
+
height: calc(100% - 40px);
|
|
57
|
+
background-color: rgb(var(--primary-5));
|
|
58
|
+
cursor: pointer;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmstops/pro-compo",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.43",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"colorthief": "^2.4.0",
|
|
52
52
|
"cropperjs": "^1.6.1",
|
|
53
53
|
"dayjs": "^1.11.9",
|
|
54
|
+
"diff": "^5.2.0",
|
|
54
55
|
"gif-to-canvas": "^1.0.0",
|
|
55
56
|
"gif.js": "^0.2.0",
|
|
56
57
|
"tus-js-client": "^3.1.1",
|
|
57
58
|
"vue": "^3.2.0",
|
|
58
|
-
"vuedraggable": "^4.1.0"
|
|
59
|
-
"diff": "^5.2.0"
|
|
59
|
+
"vuedraggable": "^4.1.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@arco-design/web-vue": "~2",
|
|
63
|
-
"@arco-iconbox/vue-cmstop-icons": "^0.0.
|
|
63
|
+
"@arco-iconbox/vue-cmstop-icons": "^0.0.30",
|
|
64
64
|
"@babel/core": "^7.14.6",
|
|
65
65
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
66
66
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"colorthief": "^2.4.0",
|
|
91
91
|
"cropperjs": "^1.6.1",
|
|
92
92
|
"dayjs": "^1.11.9",
|
|
93
|
+
"diff": "^5.2.0",
|
|
93
94
|
"eslint": "^7.21.0",
|
|
94
95
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
95
96
|
"eslint-config-prettier": "^8.3.0",
|
|
@@ -119,8 +120,7 @@
|
|
|
119
120
|
"vue": "^3.2.0",
|
|
120
121
|
"vue-loader": "^16.2.0",
|
|
121
122
|
"vuedraggable": "^4.1.0",
|
|
122
|
-
"webpack": "^5.88.2"
|
|
123
|
-
"diff": "^5.2.0"
|
|
123
|
+
"webpack": "^5.88.2"
|
|
124
124
|
},
|
|
125
125
|
"arcoMeta": {
|
|
126
126
|
"type": "vue-library",
|