Files
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

45 lines
1.6 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MERGE_COMMIT_MESSAGE = exports.DEFAULT_PR_BODY = exports.CMS_BRANCH_PREFIX = void 0;
exports.branchFromContentKey = branchFromContentKey;
exports.contentKeyFromBranch = contentKeyFromBranch;
exports.generateContentKey = generateContentKey;
exports.isCMSLabel = isCMSLabel;
exports.labelToStatus = labelToStatus;
exports.parseContentKey = parseContentKey;
exports.statusToLabel = statusToLabel;
const CMS_BRANCH_PREFIX = exports.CMS_BRANCH_PREFIX = 'cms';
const DEFAULT_PR_BODY = exports.DEFAULT_PR_BODY = 'Automatically generated by Decap CMS';
const MERGE_COMMIT_MESSAGE = exports.MERGE_COMMIT_MESSAGE = 'Automatically generated. Merged on Decap CMS.';
const DEFAULT_DECAP_CMS_LABEL_PREFIX = 'decap-cms/';
function getLabelPrefix(labelPrefix) {
return labelPrefix || DEFAULT_DECAP_CMS_LABEL_PREFIX;
}
function isCMSLabel(label, labelPrefix) {
return label.startsWith(getLabelPrefix(labelPrefix));
}
function labelToStatus(label, labelPrefix) {
return label.slice(getLabelPrefix(labelPrefix).length);
}
function statusToLabel(status, labelPrefix) {
return `${getLabelPrefix(labelPrefix)}${status}`;
}
function generateContentKey(collectionName, slug) {
return `${collectionName}/${slug}`;
}
function parseContentKey(contentKey) {
const index = contentKey.indexOf('/');
return {
collection: contentKey.slice(0, index),
slug: contentKey.slice(index + 1)
};
}
function contentKeyFromBranch(branch) {
return branch.slice(`${CMS_BRANCH_PREFIX}/`.length);
}
function branchFromContentKey(contentKey) {
return `${CMS_BRANCH_PREFIX}/${contentKey}`;
}