UNPKG

@atlaskit/editor-plugin-code-block-advanced

Version:

CodeBlockAdvanced plugin for @atlaskit/editor-core

10 lines 318 B
import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/analytics'; export const getCodeFoldingAnalyticsPayload = (folded, trigger) => ({ action: ACTION.TOGGLE_CODE_FOLDING, actionSubject: ACTION_SUBJECT.CODE_BLOCK, attributes: { folded, trigger }, eventType: EVENT_TYPE.TRACK });