Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions redisinsight/ui/src/assets/img/icons/bike.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions redisinsight/ui/src/assets/img/icons/popcorn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions redisinsight/ui/src/components/base/icons/iconRegistry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ import UserInCircleSvg from 'uiSrc/assets/img/icons/user_in_circle.svg?react'
import UserSvg from 'uiSrc/assets/img/icons/user.svg?react'
import VersionSvg from 'uiSrc/assets/img/icons/version.svg?react'
import VisTagCloudSvg from 'uiSrc/assets/img/workbench/vis_tag_cloud.svg?react'
import BikeSvg from 'uiSrc/assets/img/icons/bike.svg?react'
import PopcornSvg from 'uiSrc/assets/img/icons/popcorn.svg?react'

// Import guides icons
import ProbabilisticDataSvg from 'uiSrc/assets/img/guides/probabilistic-data.svg?react'
Expand Down Expand Up @@ -217,6 +219,8 @@ export const Trigger = createIconComponent(TriggerIcon)
export const UserInCircle = createIconComponent(UserInCircleSvg)
export const VersionIcon = createIconComponent(VersionSvg)
export const VisTagCloudIcon = createIconComponent(VisTagCloudSvg)
export const BikeIcon = createIconComponent(BikeSvg)
export const PopcornIcon = createIconComponent(PopcornSvg)

// Guides icons
export const ProbabilisticDataIcon = createIconComponent(ProbabilisticDataSvg)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { FieldTypes } from 'uiSrc/pages/browser/components/create-redisearch-ind
import { VectorSearchBox } from 'uiSrc/components/new-index/create-index-step/field-box/types'
import { BoxSelectionOption } from 'uiSrc/components/new-index/selection-box/SelectionBox'
import {
DatabaseIcon,
UniversityIcon,
BikeIcon,
PopcornIcon,
VectorSearchIcon,
WandIcon,
} from 'uiSrc/components/base/icons'
Expand Down Expand Up @@ -47,20 +47,13 @@ export const indexDataContent: BoxSelectionOption<SampleDataContent>[] = [
value: SampleDataContent.E_COMMERCE_DISCOVERY,
label: 'E-commerce Discovery',
text: 'Find products by meaning, not just keywords.',
icon: UniversityIcon, // TODO: bike icon?
},
{
value: SampleDataContent.AI_ASSISTANTS,
label: 'AI Assistants',
text: 'Find products by meaning, not just keywords.',
icon: DatabaseIcon,
disabled: true,
icon: BikeIcon,
},
{
value: SampleDataContent.CONTENT_RECOMMENDATIONS,
label: 'Content Recommendations',
text: 'Find products by meaning, not just keywords.',
icon: UniversityIcon,
label: 'Movie Recommendations',
text: 'Suggest movies based on the true meaning of plots or themes.',
icon: PopcornIcon,
disabled: true,
},
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export enum SampleDataType {

export enum SampleDataContent {
E_COMMERCE_DISCOVERY = 'e-commerce-discovery',
AI_ASSISTANTS = 'ai-assistants',
CONTENT_RECOMMENDATIONS = 'content-recommendations',
}

Expand Down