Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /**
* Site Source Factory
*
* Factory for creating site source instances based on source configuration type.
* Currently supports 'folder' type sources.
*/
import { FolderSiteSource } from './folder-site-source.js';
/**
* SiteSourceFactory creates site source instances based on source configuration
*/
export class SiteSourceFactory {
pathHelper;
constructor(pathHelper) {
this.pathHelper = pathHelper;
}
/**
* Get a site source instance for the given configuration
*
* @param key - The site key
* @param config - The source configuration
* @returns A site source instance
* @throws Error if the source type is not implemented
*/
get(key, config) {
const Type = this.getType(config);
return new Type({ ...config, key }, this.pathHelper);
}
/**
* Get the site source class for the given configuration
*
* @param config - The source configuration
* @returns The site source class constructor
* @throws Error if the source type is not implemented
*/
getType(config) {
const type = config.type.toLowerCase();
if (type === 'folder') {
// Use new ESM implementation
return FolderSiteSource;
}
else {
throw new Error(`Site source (${config.type}) not implemented.`);
}
}
}
|