aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/youtube/YoutubeBox.tsx
blob: d3a15cd84548d71198b7ea8a638e9fbe162fada8 (plain)
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
import { action, observable, runInAction } from 'mobx';
import { observer } from 'mobx-react';
import { Doc, DocListCastAsync } from '../../../fields/Doc';
import { InkTool } from '../../../fields/InkField';
import { Cast, NumCast, StrCast } from '../../../fields/Types';
import { Utils } from '../../../Utils';
import { DocServer } from '../../DocServer';
import { Docs } from '../../documents/Documents';
import { DocumentView } from '../../views/nodes/DocumentView';
import { FieldView, FieldViewProps } from '../../views/nodes/FieldView';
import '../../views/nodes/WebBox.scss';
import './YoutubeBox.scss';
import * as React from 'react';
import { SnappingManager } from '../../util/SnappingManager';

interface VideoTemplate {
    thumbnailUrl: string;
    videoTitle: string;
    videoId: string;
    duration: string;
    channelTitle: string;
    viewCount: string;
    publishDate: string;
    videoDescription: string;
}

/**
 * This class models the youtube search document that can be dropped on to canvas.
 */
@observer
export class YoutubeBox extends React.Component<FieldViewProps> {
    @observable YoutubeSearchElement: HTMLInputElement | undefined;
    @observable searchResultsFound: boolean = false;
    @observable searchResults: any[] = [];
    @observable videoClicked: boolean = false;
    @observable selectedVideoUrl: string = '';
    @observable lisOfBackUp: JSX.Element[] = [];
    @observable videoIds: string | undefined;
    @observable videoDetails: any[] = [];
    @observable curVideoTemplates: VideoTemplate[] = [];

    public static LayoutString(fieldKey: string) {
        return FieldView.LayoutString(YoutubeBox, fieldKey);
    }

    /**
     * When component mounts, last search's results are laoded in based on the back up stored
     * in the document of the props.
     */
    async componentDidMount() {
        //DocServer.getYoutubeChannels();
        const castedSearchBackUp = Cast(this.props.Document.cachedSearchResults, Doc);
        const awaitedBackUp = await castedSearchBackUp;
        const castedDetailBackUp = Cast(this.props.Document.cachedDetails, Doc);
        const awaitedDetails = await castedDetailBackUp;

        if (awaitedBackUp) {
            const jsonList = await DocListCastAsync(awaitedBackUp.json);
            const jsonDetailList = await DocListCastAsync(awaitedDetails!.json);

            if (jsonList!.length !== 0) {
                runInAction(() => (this.searchResultsFound = true));
                let index = 0;
                //getting the necessary information from backUps and building templates that will be used to map in render
                for (const video of jsonList!) {
                    const videoId = await Cast(video.id, Doc);
                    const id = StrCast(videoId!.videoId);
                    const snippet = await Cast(video.snippet, Doc);
                    const videoTitle = this.filterYoutubeTitleResult(StrCast(snippet!.title));
                    const thumbnail = await Cast(snippet!.thumbnails, Doc);
                    const thumbnailMedium = await Cast(thumbnail!.medium, Doc);
                    const thumbnailUrl = StrCast(thumbnailMedium!.url);
                    const videoDescription = StrCast(snippet!.description);
                    const pusblishDate = this.roundPublishTime(StrCast(snippet!.publishedAt))!;
                    const channelTitle = StrCast(snippet!.channelTitle);
                    let duration: string = '';
                    let viewCount: string = '';
                    if (jsonDetailList!.length !== 0) {
                        const contentDetails = await Cast(jsonDetailList![index].contentDetails, Doc);
                        const statistics = await Cast(jsonDetailList![index].statistics, Doc);
                        duration = this.convertIsoTimeToDuration(StrCast(contentDetails!.duration));
                        viewCount = this.abbreviateViewCount(parseInt(StrCast(statistics!.viewCount)))!;
                    }
                    index = index + 1;
                    const newTemplate: VideoTemplate = {
                        videoId: id,
                        videoTitle: videoTitle,
                        thumbnailUrl: thumbnailUrl,
                        publishDate: pusblishDate,
                        channelTitle: channelTitle,
                        videoDescription: videoDescription,
                        duration: duration,
                        viewCount: viewCount,
                    };
                    runInAction(() => this.curVideoTemplates.push(newTemplate));
                }
            }
        }
    }

    _ignore = 0;
    onPreWheel = (e: React.WheelEvent) => {
        this._ignore = e.timeStamp;
    };
    onPrePointer = (e: React.PointerEvent) => {
        this._ignore = e.timeStamp;
    };
    onPostPointer = (e: React.PointerEvent) => {
        if (this._ignore !== e.timeStamp) {
            e.stopPropagation();
        }
    };
    onPostWheel = (e: React.WheelEvent) => {
        if (this._ignore !== e.timeStamp) {
            e.stopPropagation();
        }
    };

    /**
     * Function that submits the title entered by user on enter press.
     */
    onEnterKeyDown = (e: React.KeyboardEvent) => {
        if (e.keyCode === 13) {
            const submittedTitle = this.YoutubeSearchElement!.value;
            this.YoutubeSearchElement!.value = '';
            this.YoutubeSearchElement!.blur();
            DocServer.getYoutubeVideos(submittedTitle, this.processesVideoResults);
        }
    };

    /**
     * The callback that is passed in to server, which functions as a way to
     * get videos that is returned by search. It also makes a call to server
     * to get details for the videos found.
     */
    @action
    processesVideoResults = (videos: any[]) => {
        this.searchResults = videos;
        if (this.searchResults.length > 0) {
            this.searchResultsFound = true;
            this.videoIds = '';
            videos.forEach(video => {
                if (this.videoIds === '') {
                    this.videoIds = video.id.videoId;
                } else {
                    this.videoIds = this.videoIds! + ', ' + video.id.videoId;
                }
            });
            //Asking for details that include duration and viewCount from server for videoIds
            DocServer.getYoutubeVideoDetails(this.videoIds, this.processVideoDetails);
            this.backUpSearchResults(videos);
            if (this.videoClicked) {
                this.videoClicked = false;
            }
        }
    };

    /**
     * The callback that is given to server to process and receive returned details about the videos.
     */
    @action
    processVideoDetails = (videoDetails: any[]) => {
        this.videoDetails = videoDetails;
        this.props.Document.cachedDetails = Doc.Get.FromJson({ data: videoDetails, title: 'detailBackUp' });
    };

    /**
     * The function that stores the search results in the props document.
     */
    backUpSearchResults = (videos: any[]) => {
        this.props.Document.cachedSearchResults = Doc.Get.FromJson({ data: videos, title: 'videosBackUp' });
    };

    /**
     * The function that filters out escaped characters returned by the api
     * in the title of the videos.
     */
    filterYoutubeTitleResult = (resultTitle: string) => {
        let processedTitle: string = resultTitle.replace(/&amp;/g, '&'); //.ReplaceAll("&amp;", "&");
        processedTitle = processedTitle.replace(/"&#39;/g, "'");
        processedTitle = processedTitle.replace(/&quot;/g, '"');
        return processedTitle;
    };

    /**
     * The function that converts ISO date, which is passed in, to normal date and finds the
     * difference between today's date and that date, in terms of "ago" to imitate youtube.
     */
    roundPublishTime = (publishTime: string) => {
        const date = new Date(publishTime).getTime();
        const curDate = new Date().getTime();
        const timeDif = curDate - date;
        const totalSeconds = timeDif / 1000;
        const totalMin = totalSeconds / 60;
        const totalHours = totalMin / 60;
        const totalDays = totalHours / 24;
        const totalMonths = totalDays / 30.417;
        const totalYears = totalMonths / 12;

        const truncYears = Math.trunc(totalYears);
        const truncMonths = Math.trunc(totalMonths);
        const truncDays = Math.trunc(totalDays);
        const truncHours = Math.trunc(totalHours);
        const truncMin = Math.trunc(totalMin);
        const truncSec = Math.trunc(totalSeconds);

        let pluralCase = '';

        if (truncYears !== 0) {
            truncYears > 1 ? (pluralCase = 's') : (pluralCase = '');
            return truncYears + ' year' + pluralCase + ' ago';
        } else if (truncMonths !== 0) {
            truncMonths > 1 ? (pluralCase = 's') : (pluralCase = '');
            return truncMonths + ' month' + pluralCase + ' ago';
        } else if (truncDays !== 0) {
            truncDays > 1 ? (pluralCase = 's') : (pluralCase = '');
            return truncDays + ' day' + pluralCase + ' ago';
        } else if (truncHours !== 0) {
            truncHours > 1 ? (pluralCase = 's') : (pluralCase = '');
            return truncHours + ' hour' + pluralCase + ' ago';
        } else if (truncMin !== 0) {
            truncMin > 1 ? (pluralCase = 's') : (pluralCase = '');
            return truncMin + ' minute' + pluralCase + ' ago';
        } else if (truncSec !== 0) {
            truncSec > 1 ? (pluralCase = 's') : (pluralCase = '');
            return truncSec + ' second' + pluralCase + ' ago';
        }
    };

    /**
     * The function that converts the passed in ISO time to normal duration time.
     */
    convertIsoTimeToDuration = (isoDur: string) => {
        const convertedTime = isoDur.replace(/D|H|M/g, ':').replace(/P|T|S/g, '').split(':');

        if (1 === convertedTime.length) {
            2 !== convertedTime[0].length && (convertedTime[0] = '0' + convertedTime[0]), (convertedTime[0] = '0:' + convertedTime[0]);
        } else {
            for (var r = 1, l = convertedTime.length - 1; l >= r; r++) {
                2 !== convertedTime[r].length && (convertedTime[r] = '0' + convertedTime[r]);
            }
        }

        return convertedTime.join(':');
    };

    /**
     * The function that rounds the viewCount to the nearest
     * thousand, million or billion, given a viewCount number.
     */
    abbreviateViewCount = (viewCount: number) => {
        if (viewCount < 1000) {
            return viewCount.toString();
        } else if (viewCount >= 1000 && viewCount < 1000000) {
            return Math.trunc(viewCount / 1000) + 'K';
        } else if (viewCount >= 1000000 && viewCount < 1000000000) {
            return Math.trunc(viewCount / 1000000) + 'M';
        } else if (viewCount >= 1000000000) {
            return Math.trunc(viewCount / 1000000000) + 'B';
        }
    };

    /**
     * The function that is called to decide on what'll be rendered by the component.
     * It renders search Results if found. If user didn't do a new search, it renders from the videoTemplates
     * generated by the backUps. If none present, renders nothing.
     */
    renderSearchResultsOrVideo = () => {
        if (this.searchResultsFound) {
            if (this.searchResults.length !== 0) {
                return (
                    <ul>
                        {this.searchResults.map((video, index) => {
                            const filteredTitle = this.filterYoutubeTitleResult(video.snippet.title);
                            const channelTitle = video.snippet.channelTitle;
                            const videoDescription = video.snippet.description;
                            const pusblishDate = this.roundPublishTime(video.snippet.publishedAt);
                            let duration;
                            let viewCount;
                            if (this.videoDetails.length !== 0) {
                                duration = this.convertIsoTimeToDuration(this.videoDetails[index].contentDetails.duration);
                                viewCount = this.abbreviateViewCount(this.videoDetails[index].statistics.viewCount);
                            }

                            return (
                                <li onClick={() => this.embedVideoOnClick(video.id.videoId, filteredTitle)} key={Utils.GenerateGuid()}>
                                    <div className="search_wrapper">
                                        <div style={{ backgroundColor: 'yellow' }}>
                                            <img src={video.snippet.thumbnails.medium.url} />
                                            <span className="video_duration">{duration}</span>
                                        </div>
                                        <div className="textual_info">
                                            <span className="videoTitle">{filteredTitle}</span>
                                            <span className="channelName">{channelTitle}</span>
                                            <span className="viewCount">{viewCount}</span>
                                            <span className="publish_time">{pusblishDate}</span>
                                            <p className="video_description">{videoDescription}</p>
                                        </div>
                                    </div>
                                </li>
                            );
                        })}
                    </ul>
                );
            } else if (this.curVideoTemplates.length !== 0) {
                return (
                    <ul>
                        {this.curVideoTemplates.map((video: VideoTemplate) => {
                            return (
                                <li onClick={() => this.embedVideoOnClick(video.videoId, video.videoTitle)} key={Utils.GenerateGuid()}>
                                    <div className="search_wrapper">
                                        <div style={{ backgroundColor: 'yellow' }}>
                                            <img src={video.thumbnailUrl} />
                                            <span className="video_duration">{video.duration}</span>
                                        </div>
                                        <div className="textual_info">
                                            <span className="videoTitle">{video.videoTitle}</span>
                                            <span className="channelName">{video.channelTitle}</span>
                                            <span className="viewCount">{video.viewCount}</span>
                                            <span className="publish_time">{video.publishDate}</span>
                                            <p className="video_description">{video.videoDescription}</p>
                                        </div>
                                    </div>
                                </li>
                            );
                        })}
                    </ul>
                );
            }
        } else {
            return null;
        }
    };

    /**
     * Given a videoId and title, creates a new youtube embedded url, and uses that
     * to create a new video document.
     */
    @action
    embedVideoOnClick = (videoId: string, filteredTitle: string) => {
        const embeddedUrl = 'https://www.youtube.com/embed/' + videoId;
        this.selectedVideoUrl = embeddedUrl;
        const addFunction = this.props.addDocument!;
        const newVideoX = NumCast(this.props.Document.x);
        const newVideoY = NumCast(this.props.Document.y) + NumCast(this.props.Document.height);

        addFunction(Docs.Create.VideoDocument(embeddedUrl, { title: filteredTitle, _width: 400, _height: 315, x: newVideoX, y: newVideoY }));
        this.videoClicked = true;
    };

    render() {
        const content = (
            <div className="youtubeBox-cont" style={{ width: '100%', height: '100%', position: 'absolute' }} onWheel={this.onPostWheel} onPointerDown={this.onPostPointer} onPointerMove={this.onPostPointer} onPointerUp={this.onPostPointer}>
                <input type="text" placeholder="Search for a video" onKeyDown={this.onEnterKeyDown} style={{ height: 40, width: '100%', border: '1px solid black', padding: 5, textAlign: 'center' }} ref={e => (this.YoutubeSearchElement = e!)} />
                {this.renderSearchResultsOrVideo()}
            </div>
        );

        const frozen = !this.props.isSelected() || SnappingManager.IsResizing;

        const classname = 'webBox-cont' + (this.props.isSelected() && Doc.ActiveTool === InkTool.None && !SnappingManager.IsResizing ? '-interactive' : '');
        return (
            <>
                <div className={classname}>{content}</div>
                {!frozen ? null : <div className="webBox-overlay" onWheel={this.onPreWheel} onPointerDown={this.onPrePointer} onPointerMove={this.onPrePointer} onPointerUp={this.onPrePointer} />}
            </>
        );
    }
}