File size: 10,128 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<p align="center">
  <img src="https://cdn.gudsen.com/2021/08/31/11f7398259634e94bddb8b0d9d7506c8.png">
</p>




<h1 align="center">JoL-player</h1>

<p align="center">Simple, beautiful and powerful react player</p>

<p align="center">
     <a href="https://github.com/microsoft/TypeScript">

    <img src="https://img.shields.io/badge/typescript-4.4.2-brightgreen.svg" alt="license">

  </a>

  <a href="https://github.com/facebook/react">

    <img src="https://img.shields.io/badge/react-18.1.0-brightgreen.svg" alt="react">

  </a>

</p>




English | [简体中文](./zh.md)

## ✨ Characteristics

- 📦 High-quality React components out of the box.
- 🛡 Use TypeScript to develop, provide a complete type definition file.
- 🌍 Internationalized language support.
- 🎨 Themes, components, customization capabilities.
- :facepunch: Powerful API and callback function
- :zap: Small size, 80kb
-  :gem: Support `HLS` format (m3u8) etc.
-  🛡 support React`v18+`Version

## 📦 Install
#### npm
```bash

npm install jol-player --save

```
#### yarn
```bash

yarn add jol-player 

```
#### `<script>` tag introduction

```bash

https://cdn.jsdelivr.net/npm/jol-player@3.0.0/index.min.js



// Introduced in the `typescript` environment

https://cdn.jsdelivr.net/npm/jol-player@3.0.0/index.d.ts

```

## 🔨 Example

```tsx

import {JolPlayer} from "jol-player";



const App = () => (

  <>

    <JolPlayer

        option={{

          videoSrc:"https://x.com/a.mp4",

          width: 750,

          height: 420,

        }}

      />

  </>

);

```

:point_right:[demo case](https://codesandbox.io/s/bold-night-i9vy4?file=/src/App.tsx)



## :blue_book:  Documentation

#### Properties/Configuration Items

The following attributes come from the `option` property configuration item

| Parameter           | Description                                                  | type                      | Default value |
| ------------------- | ------------------------------------------------------------ | ------------------------- | ------------- |
| videoSrc            | Video address (**required**)                                 | `string`                  | required      |
| mode | Video zoom mode | `scaleToFill`(Does not maintain the aspect ratio to scale the video),`widthFix`(The width is unchanged, and the height changes automatically, keeping the aspect ratio of the original video unchanged),`heightFix`(When the height is unchanged, the width changes automatically, keeping the aspect ratio of the original video unchanged) | `scaleToFill` |
| height              | The height of the video container             | `number`                  | -     |
| width               | The width of the video container                  | `number`                  | -     |
| autoPlay | Video autoplay | `boolean` | false |
| theme               | theme                                                        | `string`                  | \#ffb821      |
| poster              | Video cover image                                            | `string`                  | -             |
| setEndPlayContent   | Customize what is displayed at the end of the video          | `React.ReactNode`         | -             |
| setBufferContent    | Custom video buffer loading component                        | `React.ReactNode`         | -             |
| setPauseButtonContent | Custom video pause button | `React.ReactNode` | - |
| pausePlacement      | The position of the pause button                             | `bottomRight``center` | `bottomRight` |
| hideMouseTime       | How many milliseconds, without any operation, hide the mouse and controller/ms | `number`                  | 2000          |
| isShowMultiple      | Whether to display the multiplier function                   | `boolean`                 | true          |
| isShowSet           | Whether to display the setting function                      | `boolean`                 | true          |
| isShowScreenshot    | Whether to display the screenshot function                   | `boolean`                 | true          |
| isShowPicture       | Whether to show picture-in-picture                           | `boolean`                 | true          |
| isShowWebFullScreen | Whether to display the full screen of the webpage            | `boolean`                 | true          |
| language            | Language                                                     | `zh``en`               | `zh`          |
| isShowPauseButton | Whether to show the pause button | `boolean` | true |
| quality | Selection list of video quality definition | `qualityAttributes[]` | - |
| videoType | Video playback format, supports h264(`.mp4`,`.webm`,`.ogg`), hls(`.m3u8`) | `h264` `hls` | `h264` |
| isToast | Whether to show toast | `boolean` | false |
| toastPosition | The position of the toast, this value only has an effect when `isToast` is true | `leftTop`,`rightTop`,`leftBottom`,`rightBottom`,`center` | `leftTop` |
| isProgressFloat | Whether to display the progress bar floating layer prompt | `boolean` | false |
| progressFloatPosition | The position of the floating layer prompt of the progress bar. This value is effective only when `isProgressFloat `is true | `tp`,`bt` | `bt` |

> Tips:`qualityAttributes`:The interface declaration is as follows:point_down:

>

> ```typescript

> /**

>  * 360P SD

>  * 540P HD

>  * 720P FHD

>  * 1080P BD

>  */

> export type qualityName = 'SD' | 'HD' | 'FHD' | 'BD';

> 

> export type qualityKey = '360P' | '540P' | '720P' | '1080P';

> 

> export interface qualityAttributes<T = qualityName> {

>   name: T;

>   url: string;

> }

> ```

>

> 



#### Method



| Name        | Description                                        | type                    |

| ----------- | -------------------------------------------------- | ----------------------- |

| load        | Reload                                             | () => void              |

| pause       | Pause                                              | () => void              |

| play        | Start playing                                      | () => void              |

| setVolume   | Set the volume, [0-100]                            | (par:`number` ) => void |

| seek        | Set the playback position of the specified video/s | (par:`number` ) => void |

| setVideoSrc | Set the address to play the video src              | (par:`string` ) => void |



`Hint:`The above method requires the help of`ref`Can call,as:xxx.current.load()



:point_right:[For details, please refer to the demo case](https://codesandbox.io/s/bold-night-i9vy4?file=/src/App.tsx)

#### Callback function

```tsx

export interface videoAttributes<T = number, K = boolean> {

  /**

   * @description Whether to play

   */

  isPlay: K;

  /**

   * @description Current time/s

   */

  currentTime: T;

  /**

   * @description Total time

   */

  duration: T;

  /**

   * @description Cache duration/s

   */

  bufferedTime: T;

  /**

   * @description Whether to open picture-in-picture

   */

  isPictureinpicture: K;

  /**

   * @description Volume

   */

  volume: T;

  /**

   * @description Video playback multiple

   */

  multiple: T;

  /**

   * @description Whether to end

   */

  isEndEd: K;

  /**

   * @description Wrong

   */

  error: null | T;

}

export type qualityKey = '360P' | '540P' | '720P' | '1080P';

```

| Name                | Description                                     | type                                     |
| ------------------- | ----------------------------------------------- | ---------------------------------------- |
| onProgressMouseDown | Press and hold the slide bar, drag the callback | (e: videoAttributes) => void             |
| onProgressMouseUp   | Slide bar press and release callback            | (e: videoAttributes) => void             |
| onPlay              | Video start playing callback                    | (e: videoAttributes) => void             |
| onPause             | Callback when the video is paused               | (e: videoAttributes) => void             |
| onTimeChange        | Video is playing, time change callback          | (e: videoAttributes) => void             |
| onEndEd             | Callback when the video ends                    | (e: videoAttributes) => void             |
| onvolumechange      | Callback when the volume changes                | (e: videoAttributes) => void             |
| onError             | Video playback failed callback                  | () => void                               |
| onQualityChange     | Callback when the video resolution changes      | (e: videoAttributes<qualityKey>) => void |

#### The parameter interface received by `JoLPlaye`r is as follows: :point_down:



``` tsx

export interface videoparameter extends Partial<videoCallback> {

  style?: React.CSSProperties;

  /**

   * @description Component configuration items

   */

  option: videoOption;

  className?: string;

  ref?: JoLPlayerRef

}

```

## :rose:Praise



If you think this project is helpful to you, you can give the author a like, the author is very grateful: blush::blush::rose:



##  :european_castle:Ecosphere

1.  [ant-simple-pro](https://github.com/lgf196/ant-simple-pro)One support[vue3.0](https://github.com/vuejs/vue),[react](https://github.com/facebook/react),[angular](https://github.com/angular/angular),[typescript](https://github.com/microsoft/TypeScript)Front-end solutions for middle-end platforms supported by multiple frameworks.
2.  [ant-simple-draw](https://github.com/lgf196/ant-simple-draw)An online graphic editor, commonly used to express business processes, etc.
3.  [h5-Dooring](https://github.com/MrXujiang/h5-Dooring) Make H5 production as simple as building blocks, easily build H5 pages, H5 websites, PC-side websites, and visual design

[MIT](https://github.com/lgf196/ant-simple-pro/blob/master/LICENSE)

Copyright (c) 2021-present LiGuoFeng