mirror of
https://github.com/strapi/strapi.git
synced 2025-07-30 04:20:34 +00:00
30 lines
934 B
JavaScript
30 lines
934 B
JavaScript
'use strict';
|
|
|
|
const { reduce } = require('lodash/fp');
|
|
const { getService } = require('../utils');
|
|
|
|
const sendDidInitializeEvent = async () => {
|
|
const { isLocalizedContentType } = getService('content-types');
|
|
|
|
// TODO: V5: This event should be renamed numberOfContentTypes in V5 as the name is already taken to describe the number of content types using i18n.
|
|
const numberOfContentTypes = reduce(
|
|
(sum, contentType) => (isLocalizedContentType(contentType) ? sum + 1 : sum),
|
|
0
|
|
)(strapi.contentTypes);
|
|
|
|
await strapi.telemetry.send('didInitializeI18n', { groupProperties: { numberOfContentTypes } });
|
|
};
|
|
|
|
const sendDidUpdateI18nLocalesEvent = async () => {
|
|
const numberOfLocales = await getService('locales').count();
|
|
|
|
await strapi.telemetry.send('didUpdateI18nLocales', {
|
|
groupProperties: { numberOfLocales },
|
|
});
|
|
};
|
|
|
|
module.exports = () => ({
|
|
sendDidInitializeEvent,
|
|
sendDidUpdateI18nLocalesEvent,
|
|
});
|