19 lines
		
	
	
		
			664 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			664 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = function computeApiBreadCrumbs(API_DOC_TYPES_TO_RENDER) {
 | 
						|
  return {
 | 
						|
    $runAfter: ['paths-computed'],
 | 
						|
    $runBefore: ['rendering-docs'],
 | 
						|
    $process(docs) {
 | 
						|
      // Compute the breadcrumb for each doc by processing its containers
 | 
						|
      docs.forEach(doc => {
 | 
						|
        if (API_DOC_TYPES_TO_RENDER.indexOf(doc.docType) !== -1) {
 | 
						|
          doc.breadCrumbs = [];
 | 
						|
          doc.breadCrumbs.push({ text: 'API', path: '/api' });
 | 
						|
          if (doc.moduleDoc) doc.breadCrumbs.push({ text: '@angular/' + doc.moduleDoc.id, path: doc.moduleDoc.path });
 | 
						|
          doc.breadCrumbs.push({ text: doc.name, path: doc.path });
 | 
						|
        }
 | 
						|
      });
 | 
						|
    }
 | 
						|
  };
 | 
						|
};
 | 
						|
 |