34 |
35 |
36 |

Fashion Product Finder

37 |

38 | This demo uses the built in Vector Search capabilities of Redis Enterprise 39 | to show how unstructured data, such as images and text, can be used to create powerful 40 | search engines. 41 |

42 |
43 |
44 | {props.products && props.products.length > 0 ? ( 45 |
46 | 56 |
57 | ) : ( 58 | <> 59 | )} 60 | 61 | queryProductsWithLimit(props)}> 62 | Load More Products 63 | 64 | 65 |
66 |
67 |
68 |
69 |
70 |
71 |

72 | 73 | {props.total} searchable products 74 | 75 |

76 |
77 | {props.category !== "" ? ( 78 | { props.setCategory(""); queryProducts(props, props.gender, "") }} 85 | disabled={props.category === ''} 86 | /> 87 | ) : ( 88 | <> 89 | )} 90 | {props.gender !== "" ? ( 91 | { props.setGender(""); queryProducts(props, "", props.category) }} 98 | disabled={props.gender === ''} 99 | /> 100 | ) : ( 101 | <> 102 | )} 103 |
104 | {props.products && ( 105 |
106 | 107 | {props.products.map((product) => ( 108 | 120 | 121 | ))} 122 |
123 | )} 124 |
125 |
126 |