repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Projectflow
stars
latest
clone command
git clone gitlawb://did:key:z6Mkfh4Y...QBEi/projectflowgit clone gitlawb://did:key:z6Mkfh4Y.../projectflowb3cded1async from playground1d ago| #1 | import type { Comment } from "../../domain/entities"; |
| #2 | |
| #3 | export const comments: Comment[] = [ |
| #4 | { |
| #5 | id: "c1", |
| #6 | issueId: "i4", |
| #7 | userId: "u1", |
| #8 | content: |
| #9 | "I've started with the @dnd-kit library for drag-and-drop. The performance looks promising so far.", |
| #10 | createdAt: "2025-03-16T10:00:00Z", |
| #11 | updatedAt: "2025-03-16T10:00:00Z", |
| #12 | }, |
| #13 | { |
| #14 | id: "c2", |
| #15 | issueId: "i4", |
| #16 | userId: "u2", |
| #17 | content: |
| #18 | "Have you considered the touch support? We need this to work well on tablets too.", |
| #19 | createdAt: "2025-03-16T14:30:00Z", |
| #20 | updatedAt: "2025-03-16T14:30:00Z", |
| #21 | }, |
| #22 | { |
| #23 | id: "c3", |
| #24 | issueId: "i4", |
| #25 | userId: "u1", |
| #26 | content: |
| #27 | "Yes! @dnd-kit has great touch support out of the box. I'll make sure to test on iPad as well.", |
| #28 | createdAt: "2025-03-16T15:00:00Z", |
| #29 | updatedAt: "2025-03-16T15:00:00Z", |
| #30 | }, |
| #31 | { |
| #32 | id: "c4", |
| #33 | issueId: "i5", |
| #34 | userId: "u2", |
| #35 | content: |
| #36 | "The design mockups are ready in Figma. I'll start implementing the sidebar component today.", |
| #37 | createdAt: "2025-03-17T09:00:00Z", |
| #38 | updatedAt: "2025-03-17T09:00:00Z", |
| #39 | }, |
| #40 | { |
| #41 | id: "c5", |
| #42 | issueId: "i5", |
| #43 | userId: "u4", |
| #44 | content: |
| #45 | "I've updated the color tokens in the design system. Make sure to use the new surface-3 color for hover states.", |
| #46 | createdAt: "2025-03-17T11:00:00Z", |
| #47 | updatedAt: "2025-03-17T11:00:00Z", |
| #48 | }, |
| #49 | { |
| #50 | id: "c6", |
| #51 | issueId: "i8", |
| #52 | userId: "u1", |
| #53 | content: |
| #54 | "The command palette is working well. Added fuzzy search and keyboard navigation. Ready for review.", |
| #55 | createdAt: "2025-03-19T10:00:00Z", |
| #56 | updatedAt: "2025-03-19T10:00:00Z", |
| #57 | }, |
| #58 | { |
| #59 | id: "c7", |
| #60 | issueId: "i9", |
| #61 | userId: "u2", |
| #62 | content: |
| #63 | "I've identified the issue - it's the width transition causing a layout recalculation. Will use transform instead.", |
| #64 | createdAt: "2025-03-17T10:00:00Z", |
| #65 | updatedAt: "2025-03-17T10:00:00Z", |
| #66 | }, |
| #67 | ]; |
| #68 |