Last active
January 21, 2021 02:29
-
-
Save pierreabreup/7b07e31b529694ff46ff4f116d6bea61 to your computer and use it in GitHub Desktop.
Tracking H5P xapi events and send it to LRS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import PropTypes from 'prop-types' | |
import axios from 'axios' | |
const H5pContent = ({ iframeSrc }) => { | |
const handleContentRef = dom => { | |
if (dom) { | |
dom.onload = () => { | |
dom.contentWindow.H5P.externalDispatcher.on('xAPI', function(event) { | |
console.log('INITIAL STATEMENT ON externalDispatcher') | |
axios({ | |
method: 'post', | |
url: `${process.env.REACT_APP_LRS_HOST}/data/xAPI/statements`, | |
headers: { | |
'Content-Type': 'application/json' | |
}, | |
data: JSON.stringify(lrsStatement.toLrs()), | |
}) | |
.then(response => { | |
console.log('SAVED STATEMENT ID') | |
console.log(response.data) | |
}) | |
.catch(error => { | |
console.log('FAIL TO SEND STATEMENT') | |
console.log(error.response.data) | |
}) | |
}) | |
} | |
} | |
} | |
return ( | |
<iframe | |
title='h5p-embed' | |
ref={handleContentRef} | |
src={iframeSrc} | |
frameBorder='0' | |
allowFullScreen='allowfullscreen' | |
/> | |
) | |
} | |
H5pContent.propTypes = { | |
iframeSrc: PropTypes.string.isRequired, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment