Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/strapi-admin/admin/src/containers/Onboarding/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import React, { useEffect, useReducer, memo } from 'react';
import { FormattedMessage } from 'react-intl';
import axios from 'axios';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faQuestion, faTimes } from '@fortawesome/free-solid-svg-icons';
import cn from 'classnames';
import { useGlobalContext } from 'strapi-helper-plugin';
import formatVideoArray from './utils/formatAndStoreVideoArray';
import StaticLinks from './StaticLinks';
import Video from './Video';
import Wrapper from './Wrapper';
import init from './init';
import reducer, { initialState } from './reducer';
const OnboardingVideos = () => {
const { emitEvent } = useGlobalContext();
const [reducerState, dispatch] = useReducer(reducer, initialState, init);
const { isLoading, isOpen, videos } = reducerState.toJS();
useEffect(() => {
const getData = async () => {
try {
const { data } = await axios.get('https://strapi.io/videos', {
timeout: 1000,
});
const { didWatchVideos, videos } = formatVideoArray(data);
dispatch({
type: 'GET_DATA_SUCCEEDED',
didWatchVideos,
videos,
});
} catch (err) {
console.error(err);
dispatch({
type: 'HIDE_VIDEO_ONBOARDING',
});
}
};
getData();
}, []);
// Hide the player in case of request error
if (isLoading) {
return null;
}
const handleClick = () => {
const eventName = isOpen
? 'didOpenGetStartedVideoContainer'
: 'didCloseGetStartedVideoContainer';
dispatch({ type: 'SET_IS_OPEN' });
emitEvent(eventName);
};
const handleClickOpenVideo = videoIndexToOpen => {
dispatch({
type: 'TOGGLE_VIDEO_MODAL',
videoIndexToOpen,
});
};
const handleUpdateVideoStartTime = (videoIndex, elapsedTime) => {
dispatch({
type: 'UPDATE_VIDEO_STARTED_TIME_AND_PLAYED_INFOS',
videoIndex,
elapsedTime,
});
};
const setVideoDuration = (videoIndex, duration) => {
dispatch({
type: 'SET_VIDEO_DURATION',
duration,
videoIndex,
});
};
const hasVideos = videos.length > 0;
const className = hasVideos ? 'visible' : 'hidden';
return (
<Wrapper className={className} isOpen={isOpen}>
<div className={cn('videosContent', isOpen ? 'shown' : 'hide')}>
<div className="videosHeader">
<p>
<FormattedMessage id="app.components.Onboarding.title" />
</p>
<p>
{Math.floor((videos.filter(v => v.end).length * 100) / videos.length)}
<FormattedMessage id="app.components.Onboarding.label.completed" />
</p>
</div>
<ul className="onboardingList">
{videos.map((video, index) => (
<Video
key={video.id || index}
id={index}
video={video}
onClick={() => handleClickOpenVideo(index)}
setVideoDuration={(_, duration) => {
setVideoDuration(index, duration);
}}
getVideoCurrentTime={(_, elapsedTime) => {
handleUpdateVideoStartTime(index, elapsedTime);
}}
didPlayVideo={(_, elapsedTime) => {
const eventName = `didPlay${index}GetStartedVideo`;
emitEvent(eventName, { timestamp: elapsedTime });
}}
didStopVideo={(_, elapsedTime) => {
const eventName = `didStop${index}Video`;
emitEvent(eventName, { timestamp: elapsedTime });
}}
/>
))}
</ul>
<StaticLinks />
</div>
<div className="openBtn">
<button onClick={handleClick} className={isOpen ? 'active' : ''} type="button">
<FontAwesomeIcon icon={faQuestion} />
<FontAwesomeIcon icon={faTimes} />
<span />
</button>
</div>
</Wrapper>
);
};
export default memo(OnboardingVideos);
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0071 ]-- |