@dolphinweex/weex-harmony 0.1.9 → 0.1.11
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/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/midea-audio-wave-view.vue +72 -0
- package/src/components/midea-video.vue +20 -0
- package/src/components/midea-villa-card-view.vue +53 -0
- package/src/components/midea-wave-progress-view.vue +56 -0
- package/src/index.js +17 -1
package/package.json
CHANGED
package/src/.DS_Store
ADDED
Binary file
|
Binary file
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<template>
|
2
|
+
<BaseSameLayer
|
3
|
+
:hosSameLayerArgs="hosSameLayerArgs"
|
4
|
+
embedType="native/midea-audio-wave-view"
|
5
|
+
:defaultWidth="300"
|
6
|
+
:defaultHeight="300"
|
7
|
+
ref="audioWaveRef"
|
8
|
+
></BaseSameLayer>
|
9
|
+
</template>
|
10
|
+
|
11
|
+
<script>
|
12
|
+
import BaseSameLayer from "./baseSameLayer.vue";
|
13
|
+
const weexModule = weex.requireModule('weexModule');
|
14
|
+
|
15
|
+
export default {
|
16
|
+
name: "mideaAudioWaveView",
|
17
|
+
data() {
|
18
|
+
return {
|
19
|
+
width: 0,
|
20
|
+
height: 0
|
21
|
+
}
|
22
|
+
},
|
23
|
+
components: {
|
24
|
+
BaseSameLayer,
|
25
|
+
},
|
26
|
+
props: {
|
27
|
+
hosUniqueProps: {
|
28
|
+
type: Object,
|
29
|
+
default() {
|
30
|
+
return {};
|
31
|
+
},
|
32
|
+
},
|
33
|
+
data: {
|
34
|
+
type: Object,
|
35
|
+
default() {
|
36
|
+
return {
|
37
|
+
embedId:''
|
38
|
+
};
|
39
|
+
},
|
40
|
+
},
|
41
|
+
},
|
42
|
+
computed: {
|
43
|
+
hosSameLayerArgs() {
|
44
|
+
return {
|
45
|
+
...this.hosUniqueProps, // 鸿蒙原生组件独有属性
|
46
|
+
width: this.width,
|
47
|
+
height: this.height,
|
48
|
+
data: this.data,
|
49
|
+
updateVolume: this.updateVolume,
|
50
|
+
};
|
51
|
+
},
|
52
|
+
},
|
53
|
+
mounted() {
|
54
|
+
this.width = this.$el.clientWidth;
|
55
|
+
this.height = this.$el.clientHeight;
|
56
|
+
this.embedId = this.$refs.audioWaveRef.embedId;
|
57
|
+
},
|
58
|
+
|
59
|
+
methods: {
|
60
|
+
updateVolume(volume) {
|
61
|
+
weexModule.callNative(
|
62
|
+
'audioWaveHandle',
|
63
|
+
{
|
64
|
+
method: 'updateVolume',
|
65
|
+
name: this.embedId,
|
66
|
+
volume
|
67
|
+
},
|
68
|
+
);
|
69
|
+
},
|
70
|
+
},
|
71
|
+
};
|
72
|
+
</script>
|
@@ -41,6 +41,22 @@ export default {
|
|
41
41
|
type: String,
|
42
42
|
default: "",
|
43
43
|
},
|
44
|
+
controls: {
|
45
|
+
type: Boolean,
|
46
|
+
default: true,
|
47
|
+
},
|
48
|
+
objectFit: {
|
49
|
+
type: String,
|
50
|
+
default: "",
|
51
|
+
},
|
52
|
+
muted: {
|
53
|
+
type: Boolean,
|
54
|
+
default: false,
|
55
|
+
},
|
56
|
+
videoCover: {
|
57
|
+
type: String,
|
58
|
+
default: "",
|
59
|
+
},
|
44
60
|
},
|
45
61
|
computed: {
|
46
62
|
hosSameLayerArgs() {
|
@@ -51,10 +67,14 @@ export default {
|
|
51
67
|
autoplay: this.autoplay,
|
52
68
|
src: this.src,
|
53
69
|
videoCover: this.videoCover,
|
70
|
+
controls:this.controls,
|
54
71
|
start: this.start,
|
55
72
|
pause: this.pause,
|
56
73
|
fail: this.fail,
|
57
74
|
finish: this.finish,
|
75
|
+
objectFit: this.objectFit,
|
76
|
+
muted: this.muted,
|
77
|
+
videoCover: this.videoCover,
|
58
78
|
};
|
59
79
|
},
|
60
80
|
},
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<template>
|
2
|
+
<BaseSameLayer
|
3
|
+
:hosSameLayerArgs="hosSameLayerArgs"
|
4
|
+
embedType="native/midea-villa-card-view"
|
5
|
+
:defaultWidth="100"
|
6
|
+
:defaultHeight="100"
|
7
|
+
></BaseSameLayer>
|
8
|
+
</template>
|
9
|
+
|
10
|
+
<script>
|
11
|
+
import BaseSameLayer from './baseSameLayer.vue';
|
12
|
+
|
13
|
+
export default {
|
14
|
+
data() {
|
15
|
+
return {
|
16
|
+
width: 0,
|
17
|
+
height: 0,
|
18
|
+
};
|
19
|
+
},
|
20
|
+
name: 'MideaVillaCardView',
|
21
|
+
components: {
|
22
|
+
BaseSameLayer,
|
23
|
+
},
|
24
|
+
props: {
|
25
|
+
hosUniqueProps: {
|
26
|
+
type: Object,
|
27
|
+
default() {
|
28
|
+
return {};
|
29
|
+
},
|
30
|
+
},
|
31
|
+
data: {
|
32
|
+
type: Object,
|
33
|
+
default() {
|
34
|
+
return {};
|
35
|
+
},
|
36
|
+
},
|
37
|
+
},
|
38
|
+
computed: {
|
39
|
+
hosSameLayerArgs() {
|
40
|
+
return {
|
41
|
+
...this.hosUniqueProps, // 鸿蒙原生组件独有属性
|
42
|
+
width: this.width,
|
43
|
+
height: this.height,
|
44
|
+
data: this.data,
|
45
|
+
};
|
46
|
+
},
|
47
|
+
},
|
48
|
+
mounted() {
|
49
|
+
this.width = this.$el.clientWidth;
|
50
|
+
this.height = this.$el.clientHeight;
|
51
|
+
},
|
52
|
+
};
|
53
|
+
</script>
|
@@ -0,0 +1,56 @@
|
|
1
|
+
<template>
|
2
|
+
<BaseSameLayer
|
3
|
+
:hosSameLayerArgs="hosSameLayerArgs"
|
4
|
+
embedType="native/midea-wave-progress-view"
|
5
|
+
:defaultWidth="300"
|
6
|
+
:defaultHeight="300"
|
7
|
+
></BaseSameLayer>
|
8
|
+
</template>
|
9
|
+
|
10
|
+
<script>
|
11
|
+
import BaseSameLayer from "./baseSameLayer.vue";
|
12
|
+
|
13
|
+
export default {
|
14
|
+
name: "MideaWaveProgressView",
|
15
|
+
data() {
|
16
|
+
return {
|
17
|
+
width: 0,
|
18
|
+
height: 0
|
19
|
+
}
|
20
|
+
},
|
21
|
+
components: {
|
22
|
+
BaseSameLayer,
|
23
|
+
},
|
24
|
+
props: {
|
25
|
+
hosUniqueProps: {
|
26
|
+
type: Object,
|
27
|
+
default() {
|
28
|
+
return {};
|
29
|
+
},
|
30
|
+
},
|
31
|
+
data: {
|
32
|
+
type: Object,
|
33
|
+
default() {
|
34
|
+
return {};
|
35
|
+
},
|
36
|
+
},
|
37
|
+
},
|
38
|
+
computed: {
|
39
|
+
hosSameLayerArgs() {
|
40
|
+
return {
|
41
|
+
...this.hosUniqueProps, // 鸿蒙原生组件独有属性
|
42
|
+
width: this.width,
|
43
|
+
height: this.height,
|
44
|
+
data: this.data,
|
45
|
+
};
|
46
|
+
},
|
47
|
+
},
|
48
|
+
mounted() {
|
49
|
+
this.width = this.$el.clientWidth;
|
50
|
+
this.height = this.$el.clientHeight;
|
51
|
+
},
|
52
|
+
|
53
|
+
methods: {
|
54
|
+
},
|
55
|
+
};
|
56
|
+
</script>
|
package/src/index.js
CHANGED
@@ -174,7 +174,23 @@ const componentMap = [
|
|
174
174
|
componentName: 'DragVerticalListView',
|
175
175
|
componentAddress: 'drag-vertical-list-view.vue',
|
176
176
|
isInPlugin: false
|
177
|
-
}
|
177
|
+
},
|
178
|
+
{
|
179
|
+
componentName: 'mideaWaveProgressView',
|
180
|
+
componentAddress: 'midea-wave-progress-view.vue',
|
181
|
+
isInPlugin: false
|
182
|
+
},
|
183
|
+
{
|
184
|
+
componentName: 'mideaAudioWaveView',
|
185
|
+
componentAddress: 'midea-audio-wave-view.vue',
|
186
|
+
isInPlugin: false
|
187
|
+
},
|
188
|
+
{
|
189
|
+
componentName: 'MideaVillaCardView',
|
190
|
+
componentAddress: 'midea-villa-card-view.vue',
|
191
|
+
isInPlugin: false
|
192
|
+
},
|
193
|
+
|
178
194
|
]
|
179
195
|
|
180
196
|
module.exports = componentMap
|