Repository URL to install this package:
|
Version:
0.5.2-rc.0 ▾
|
import getSystemType from './getSystemType';
const getBasicAnalyticsData = ({ pageType, NODE_ENV, DOODLE_ENV }) => ({
page: {
...(pageType && { pageType }),
viewportHeight: window.innerHeight || 0,
viewportWidth: window.innerWidth || 0,
},
environment: {
systemType: getSystemType({ NODE_ENV, DOODLE_ENV }),
},
});
export default getBasicAnalyticsData;