This commit is contained in:
JACS 2026-05-01 19:39:45 -05:00
parent eec9697a71
commit 65f7715b05
7 changed files with 242 additions and 3 deletions

View file

@ -43,3 +43,134 @@ func SampleNavbarMenu() TablerMenu {
},
}
}
// SampleTableRows returns sample data for table demos
// Migrated from liquid/data/people.json
func SampleTableRows() []TableRow {
return []TableRow{
{
ID: "1",
Name: "Paweł Kuna",
AvatarID: "000m",
Email: "paweluna@howstuffworks.com",
City: "Peimei",
Country: "China",
Status: "VIP",
JobTitle: "UI Designer",
Department: "Training",
Date: "2025-04-07",
Tags: []string{"High Volume"},
Category: "Training",
},
{
ID: "2",
Name: "Jeffie Lewzey",
AvatarID: "052f",
Email: "jlewzey1@seesaa.net",
City: "Indaial",
Country: "Brazil",
Status: "New",
JobTitle: "Chemical Engineer",
Department: "Support",
Date: "2024-12-12",
Tags: []string{"No Refunds"},
Category: "Support",
},
{
ID: "3",
Name: "Mallory Hulme",
AvatarID: "002m",
Email: "mhulme2@domainmarket.com",
City: "Cimuncang",
Country: "Indonesia",
Status: "VIP",
JobTitle: "Geologist IV",
Department: "Support",
Date: "2025-01-09",
Tags: []string{"High Value", "No Refunds", "Loyal"},
Category: "Support",
},
{
ID: "4",
Name: "Dunn Slane",
AvatarID: "003m",
Email: "dslane3@epa.gov",
City: "Liutang",
Country: "China",
Status: "Regular",
JobTitle: "Research Nurse",
Department: "Sales",
Date: "2022-10-01",
Tags: []string{"No Refunds"},
Category: "Sales",
},
{
ID: "5",
Name: "Emmy Levet",
AvatarID: "000f",
Email: "elevet4@senate.gov",
City: "Kaliprak",
Country: "Indonesia",
Status: "Regular",
JobTitle: "VP Product Management",
Department: "Accounting",
Date: "2025-05-18",
Tags: []string{"Standard"},
Category: "Accounting",
},
{
ID: "6",
Name: "Maryjo Lebarree",
AvatarID: "001f",
Email: "mlebarree5@unc.edu",
City: "Hantai",
Country: "China",
Status: "Regular",
JobTitle: "Civil Engineer",
Department: "Product Management",
Date: "2025-06-06",
Tags: []string{"No Refunds", "Loyal"},
Category: "Product Management",
},
{
ID: "7",
Name: "Egan Poetz",
AvatarID: "004m",
Email: "epoetz6@free.fr",
City: "Villaguay",
Country: "Argentina",
Status: "New",
JobTitle: "Research Nurse",
Department: "Engineering",
Date: "2024-08-21",
Tags: []string{"No Refunds"},
Category: "Engineering",
},
{
ID: "8",
Name: "Kellie Skingley",
AvatarID: "002f",
Email: "kskingley7@columbia.edu",
City: "Sidon",
Country: "Lebanon",
Status: "VIP",
JobTitle: "Teacher",
Department: "Services",
Date: "2025-02-23",
Tags: []string{"No Refunds", "Loyal"},
Category: "Services",
},
}
}
// SampleTableHeaders returns headers for the advanced table
func SampleTableHeaders() []TableHeader {
return []TableHeader{
{Name: "Name", Sort: "sort-name"},
{Name: "City", Sort: "sort-city"},
{Name: "Status", Sort: "sort-status"},
{Name: "Start date", Sort: "sort-date"},
{Name: "Tags", Sort: "sort-tags"},
{Name: "Category", Sort: "sort-category"},
}
}