@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
74 lines • 2.06 kB
JavaScript
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from './types';
export const buildEditLinkPayload = type => {
return {
action: ACTION.CLICKED,
actionSubject: type === ACTION_SUBJECT_ID.HYPERLINK ? ACTION_SUBJECT.HYPERLINK : ACTION_SUBJECT.SMART_LINK,
actionSubjectId: ACTION_SUBJECT_ID.EDIT_LINK,
attributes: type !== ACTION_SUBJECT_ID.HYPERLINK ? {
display: type
} : {},
eventType: EVENT_TYPE.UI
};
};
const mapLinkTypeToCardAppearance = type => {
switch (type) {
case ACTION_SUBJECT_ID.CARD_INLINE:
{
return 'inline';
}
case ACTION_SUBJECT_ID.CARD_BLOCK:
{
return 'block';
}
case ACTION_SUBJECT_ID.EMBEDS:
{
return 'embed';
}
default:
{
return 'url';
}
}
};
export const buildVisitedLinkPayload = type => {
return type === ACTION_SUBJECT_ID.HYPERLINK ? {
action: ACTION.VISITED,
actionSubject: ACTION_SUBJECT.HYPERLINK,
actionSubjectId: undefined,
attributes: {
inputMethod: INPUT_METHOD.TOOLBAR
},
eventType: EVENT_TYPE.TRACK
} : {
action: ACTION.VISITED,
actionSubject: ACTION_SUBJECT.SMART_LINK,
actionSubjectId: type,
attributes: {
inputMethod: INPUT_METHOD.TOOLBAR
},
eventType: EVENT_TYPE.TRACK
};
};
export const buildOpenedSettingsPayload = type => {
return {
action: ACTION.CLICKED,
actionSubject: ACTION_SUBJECT.BUTTON,
actionSubjectId: ACTION_SUBJECT_ID.GOTO_SMART_LINK_SETTINGS,
attributes: {
inputMethod: INPUT_METHOD.TOOLBAR,
display: mapLinkTypeToCardAppearance(type)
},
eventType: EVENT_TYPE.UI
};
};
export const unlinkPayload = type => {
return {
action: ACTION.UNLINK,
actionSubject: type === ACTION_SUBJECT_ID.HYPERLINK ? ACTION_SUBJECT.HYPERLINK : ACTION_SUBJECT.SMART_LINK,
actionSubjectId: type === ACTION_SUBJECT_ID.HYPERLINK ? undefined : type,
attributes: {
inputMethod: INPUT_METHOD.TOOLBAR
},
eventType: EVENT_TYPE.TRACK
};
};