advanced-search-library
Version:
Intelligent search library with typo correction, autocomplete, and flexible data structure support
254 lines (245 loc) • 6.71 kB
JavaScript
/**
* Advanced Search Library - Sample Data
*
* @author Rıdvan Sevindik <sevindikbusiness@gmail.com>
* @github https://github.com/Ridvan0
* @linkedin https://www.linkedin.com/in/ridvansevindik/
*/
// For browser usage
const sampleData = [
// Beverages
{
id: 1,
name: "Turkish Coffee",
category: "Beverage",
brand: "Selamlique",
price: 45,
rating: 4.8,
viewCount: 1250,
description: "Traditional Turkish coffee, specially blended",
tags: ["hot", "traditional", "coffee"]
},
{
id: 2,
name: "Tea Glass Set",
category: "Kitchenware",
brand: "Pasabahce",
price: 85,
rating: 4.5,
viewCount: 890,
description: "6-piece tea glass set, heat-resistant glass",
tags: ["glass", "set", "tea"]
},
{
id: 3,
name: "Earl Grey Tea",
category: "Beverage",
brand: "Lipton",
price: 25,
rating: 4.2,
viewCount: 560,
description: "Bergamot flavored Earl Grey tea",
tags: ["tea", "flavored", "bergamot"]
},
// Musical Instruments
{
id: 4,
name: "Drum Set",
category: "Music",
brand: "Pearl",
price: 2500,
rating: 4.9,
viewCount: 230,
description: "5-piece acoustic drum set, professional quality",
tags: ["drum", "acoustic", "professional"]
},
{
id: 5,
name: "Classical Guitar",
category: "Music",
brand: "Yamaha",
price: 850,
rating: 4.7,
viewCount: 450,
description: "Solid wood classical guitar",
tags: ["guitar", "classical", "wood"]
},
// Electronics
{
id: 6,
name: "Smartphone",
category: "Electronics",
brand: "Samsung",
price: 15000,
rating: 4.6,
viewCount: 2300,
description: "Latest model smartphone with high-resolution camera",
tags: ["phone", "smart", "camera"]
},
{
id: 7,
name: "Laptop Computer",
category: "Electronics",
brand: "Apple",
price: 25000,
rating: 4.8,
viewCount: 1800,
description: "High-performance laptop for professionals",
tags: ["computer", "laptop", "professional"]
},
// Clothing
{
id: 8,
name: "White Shirt",
category: "Clothing",
brand: "Zara",
price: 120,
rating: 4.3,
viewCount: 780,
description: "Cotton white dress shirt",
tags: ["shirt", "white", "cotton"]
},
{
id: 9,
name: "Sports Shoes",
category: "Footwear",
brand: "Nike",
price: 650,
rating: 4.7,
viewCount: 1200,
description: "Comfortable sports shoes for running",
tags: ["shoes", "sports", "running"]
},
// Books
{
id: 10,
name: "Programming Book",
category: "Books",
brand: "O'Reilly",
price: 95,
rating: 4.9,
viewCount: 320,
description: "Comprehensive programming guide for beginners",
tags: ["book", "programming", "guide"]
},
{
id: 11,
name: "History Book",
category: "Books",
brand: "Penguin",
price: 75,
rating: 4.4,
viewCount: 210,
description: "World history encyclopedia",
tags: ["book", "history", "encyclopedia"]
},
// Home & Garden
{
id: 12,
name: "Kitchen Knife Set",
category: "Kitchenware",
brand: "Zwilling",
price: 450,
rating: 4.8,
viewCount: 340,
description: "Professional chef knife set with wooden block",
tags: ["knife", "kitchen", "professional"]
},
{
id: 13,
name: "Coffee Machine",
category: "Appliances",
brand: "Delonghi",
price: 1200,
rating: 4.6,
viewCount: 890,
description: "Automatic espresso coffee machine",
tags: ["coffee", "machine", "automatic"]
},
// Additional items for better search testing
{
id: 14,
name: "Desk Lamp",
category: "Lighting",
brand: "IKEA",
price: 85,
rating: 4.2,
viewCount: 450,
description: "Adjustable LED desk lamp for study",
tags: ["lamp", "desk", "LED"]
},
{
id: 15,
name: "Office Chair",
category: "Furniture",
brand: "Herman Miller",
price: 1800,
rating: 4.9,
viewCount: 320,
description: "Ergonomic office chair for long work sessions",
tags: ["chair", "office", "ergonomic"]
},
{
id: 16,
name: "Water Bottle",
category: "Sports",
brand: "Hydro Flask",
price: 45,
rating: 4.5,
viewCount: 1100,
description: "Insulated stainless steel water bottle",
tags: ["water", "bottle", "insulated"]
},
{
id: 17,
name: "Backpack",
category: "Bags",
brand: "Northface",
price: 280,
rating: 4.7,
viewCount: 670,
description: "Durable hiking backpack with multiple compartments",
tags: ["backpack", "hiking", "durable"]
},
{
id: 18,
name: "Bluetooth Speaker",
category: "Electronics",
brand: "JBL",
price: 150,
rating: 4.4,
viewCount: 890,
description: "Portable wireless bluetooth speaker",
tags: ["speaker", "bluetooth", "wireless"]
},
{
id: 19,
name: "Pen Set",
category: "Stationery",
brand: "Parker",
price: 125,
rating: 4.6,
viewCount: 230,
description: "Premium fountain pen set with ink cartridges",
tags: ["pen", "fountain", "premium"]
},
{
id: 20,
name: "Winter Jacket",
category: "Clothing",
brand: "Columbia",
price: 420,
rating: 4.8,
viewCount: 540,
description: "Waterproof winter jacket with thermal insulation",
tags: ["jacket", "winter", "waterproof"]
}
];
// Node.js export
if (typeof module !== 'undefined' && module.exports) {
module.exports = sampleData;
}
// Browser global
if (typeof window !== 'undefined') {
window.sampleData = sampleData;
}