
type HairProfile = {
type: "4A" | "4B" | "4C" | "3A-3C" | "locs";
concern: "dryness" | "breakage" | "density" | "growth" | "scalp";
goal: "hydration" | "length" | "definition" | "repair" | "volume";
};
export class HairDiagnosticService {
constructor(
private readonly catalog: ProductCatalogPort,
private readonly quiz: DiagnosticQuizPort,
) {}
async recommendRoutine(answers: DiagnosticAnswers): Promise<HairRoutine> {
const profile = this.quiz.buildProfile(answers);
const candidates = await this.catalog.findByHairProfile(profile);
return {
hairType: profile.type,
products: candidates
.filter((product) => product.matches(profile))
.slice(0, 4)
.map((product) => ({
id: product.id,
name: product.name,
role: product.routineRole,
})),
};
}
}Awura Beauty — E-commerce cosmétique premium
Site e-commerce de production pour une marque française de soins capillaires naturels dédiée aux cheveux texturés. Boutique, diagnostic capillaire, paiements, livraison et administration complète, dans une charte Luxury Organic (Vert Forêt / Doré).

