diff --git a/src/data.cpp b/src/data.cpp index 9292884..d0103ab 100644 --- a/src/data.cpp +++ b/src/data.cpp @@ -26,10 +26,10 @@ void Data::initializeFakeData() // Particles for Personal Notes m_particles[stream1.id].append({"p1", "text", "viet@flowy.com", "Meeting notes from standup", true}); - m_particles[stream1.id].append({"p2", "link", "viet@flowy.com", "API documentation for new endpoint", false}); - m_particles[stream1.id].append({"p3", "image", "stephen@flowy.com", "Screenshot of bug in login flow", true}); + m_particles[stream1.id].append({"p2", "link", "viet@flowy.com", "API documentation for new endpoint", true}); + m_particles[stream1.id].append({"p3", "image", "stephen@flowy.com", "Screenshot of bug in login flow", false}); m_particles[stream1.id].append({"p4", "text", "stephen@flowy.com", "Quick thought about architecture refactor", false}); - m_particles[stream1.id].append({"p5", "link", "anthony@flowy.com", "Design inspiration board from Dribbble", true}); + m_particles[stream1.id].append({"p5", "link", "anthony@flowy.com", "Design inspiration board from Dribbble", false}); // Stream: Quick Captures Stream stream2; @@ -57,22 +57,22 @@ void Data::initializeFakeData() stream3.id = "stream-eng"; stream3.name = "wild-shape"; stream3.status = Stream::OPEN; - stream3.unseenCount = 5; + stream3.unseenCount = 10; m_streams[net2.id].append(stream3); // Particles for Engineering - m_particles[stream3.id].append({"p8", "text", "charlie@flowy.com", "hey team, anyone seeing issues with the auth service?", false}); + m_particles[stream3.id].append({"p8", "text", "charlie@flowy.com", "hey team, anyone seeing issues with the auth service?", true}); m_particles[stream3.id].append({"p9", "text", "dave@flowy.com", "yeah, getting 401s on the staging server", true}); - m_particles[stream3.id].append({"p10", "text", "eve@flowy.com", "i think it's the JWT expiration. checking now", false}); + m_particles[stream3.id].append({"p10", "text", "eve@flowy.com", "i think it's the JWT expiration. checking now", true}); m_particles[stream3.id].append({"p11", "link", "eve@flowy.com", "https://github.com/flowy/api/pull/234", true}); m_particles[stream3.id].append({"p12", "text", "eve@flowy.com", "^ PR ready for review. fixed the token refresh logic", false}); m_particles[stream3.id].append({"p13", "text", "frank@flowy.com", "looking at it now", false}); - m_particles[stream3.id].append({"p14", "text", "grace@flowy.com", "nice catch! left a few comments about error handling", true}); + m_particles[stream3.id].append({"p14", "text", "grace@flowy.com", "nice catch! left a few comments about error handling", false}); m_particles[stream3.id].append({"p15", "text", "eve@flowy.com", "updated, should be good to merge", false}); - m_particles[stream3.id].append({"p16", "text", "charlie@flowy.com", "merged! deploying to staging now", true}); + m_particles[stream3.id].append({"p16", "text", "charlie@flowy.com", "merged! deploying to staging now", false}); m_particles[stream3.id].append({"p17", "text", "henry@flowy.com", "btw, we should probably add monitoring for token expiration", false}); m_particles[stream3.id].append({"p18", "text", "dave@flowy.com", "good idea, i can set that up after lunch", false}); - m_particles[stream3.id].append({"p19", "text", "ivy@flowy.com", "also, can someone review my database migration PR?", true}); + m_particles[stream3.id].append({"p19", "text", "ivy@flowy.com", "also, can someone review my database migration PR?", false}); m_particles[stream3.id].append({"p20", "image", "ivy@flowy.com", "here's the schema changes", false}); m_particles[stream3.id].append({"p21", "text", "jack@flowy.com", "looks good to me. just run it by charlie for final approval", false}); @@ -81,18 +81,18 @@ void Data::initializeFakeData() stream4.id = "stream-design"; stream4.name = "arch-rival"; stream4.status = Stream::OPEN; - stream4.unseenCount = 2; + stream4.unseenCount = 4; m_streams[net2.id].append(stream4); // Particles for Design - m_particles[stream4.id].append({"p22", "text", "karen@flowy.com", "starting on the mobile dashboard redesign", false}); + m_particles[stream4.id].append({"p22", "text", "karen@flowy.com", "starting on the mobile dashboard redesign", true}); m_particles[stream4.id].append({"p23", "image", "karen@flowy.com", "initial mockup - thoughts?", true}); - m_particles[stream4.id].append({"p24", "text", "leo@flowy.com", "love the direction! maybe try a darker header?", false}); + m_particles[stream4.id].append({"p24", "text", "leo@flowy.com", "love the direction! maybe try a darker header?", true}); m_particles[stream4.id].append({"p25", "text", "maya@flowy.com", "agreed, and can we use the new color palette from the design system?", true}); - m_particles[stream4.id].append({"p26", "link", "maya@flowy.com", "https://figma.com/design-system-v2", false}); - m_particles[stream4.id].append({"p27", "text", "karen@flowy.com", "oh perfect! i'll update it", false}); + m_particles[stream4.id].append({"p26", "link", "maya@flowy.com", "https://figma.com/design-system-v2", true}); + m_particles[stream4.id].append({"p27", "text", "karen@flowy.com", "oh perfect! i'll update it", true}); m_particles[stream4.id].append({"p28", "text", "nathan@flowy.com", "hey, should the settings page follow the same style?", false}); - m_particles[stream4.id].append({"p29", "text", "leo@flowy.com", "yes definitely, keeping it consistent across all pages", true}); + m_particles[stream4.id].append({"p29", "text", "leo@flowy.com", "yes definitely, keeping it consistent across all pages", false}); m_particles[stream4.id].append({"p30", "image", "nathan@flowy.com", "cool, here's my wireframe draft", false}); m_particles[stream4.id].append({"p31", "text", "maya@flowy.com", "looks great! can you add that to the figma file?", false});