@atlaskit/editor-plugin-code-block-advanced
Version:
CodeBlockAdvanced plugin for @atlaskit/editor-core
12 lines • 397 B
JavaScript
import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
export var getCodeFoldingAnalyticsPayload = function getCodeFoldingAnalyticsPayload(folded, trigger) {
return {
action: ACTION.TOGGLE_CODE_FOLDING,
actionSubject: ACTION_SUBJECT.CODE_BLOCK,
attributes: {
folded: folded,
trigger: trigger
},
eventType: EVENT_TYPE.TRACK
};
};