Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
28 lines
662 B
Plaintext
28 lines
662 B
Plaintext
export function getDocumentViewInfo(segments) {
|
|
const [tabSegment, versionSegment] = segments;
|
|
if (versionSegment) {
|
|
if (tabSegment === 'versions') {
|
|
return {
|
|
documentSubViewType: 'version',
|
|
viewType: 'version'
|
|
};
|
|
}
|
|
} else {
|
|
if (tabSegment === 'versions') {
|
|
return {
|
|
documentSubViewType: 'versions',
|
|
viewType: 'document'
|
|
};
|
|
} else if (tabSegment === 'api') {
|
|
return {
|
|
documentSubViewType: 'api',
|
|
viewType: 'document'
|
|
};
|
|
}
|
|
}
|
|
return {
|
|
documentSubViewType: 'default',
|
|
viewType: 'document'
|
|
};
|
|
}
|
|
//# sourceMappingURL=getDocumentViewInfo.js.map |