Skip to content

Commit

Permalink
review: Sort files
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoulongne committed Nov 7, 2024
1 parent 9d129ba commit 9649fd0
Showing 1 changed file with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,24 @@ import java.util.Date
import java.util.UUID

val filesPreviewData = listOf(
FileUi(
uid = UUID.randomUUID().toString(),
fileName = "The 5-Step Guide to Not Breaking Your Code.txt",
fileSize = 57_689_032L,
mimeType = null,
localPath = null,
),
FileUi(
uid = UUID.randomUUID().toString(),
fileName = "Introduction to Turning It Off and On Again.pptx",
fileSize = 98_723_143L,
FileUi( // Non-preview file (i.e. pdf, txt, etc.)
fileName = "How to not get fired.pdf",
uid = "How to not get fired.pdf",
fileSize = 10_302_130L,
mimeType = null,
localPath = null,
localPath = "",
),
FileUi(
FileUi( // Preview file (i.e. png, jpg, etc.)
fileName = "Opening images tutorial.png",
uid = "Opening images tutorial.png",
fileSize = 456_782L,
mimeType = null,
localPath = "https://picsum.photos/200/300",
),
FileUi(
fileName = "How to not get fired.pdf",
uid = "How to not get fired.pdf",
fileSize = 10_302_130L,
fileName = "The 5 step guide to turning it off and on again.docx",
uid = "The 5 step guide to turning it off and on again.docx",
fileSize = 89_723_143L,
mimeType = null,
localPath = "",
),
Expand All @@ -60,11 +53,18 @@ val filesPreviewData = listOf(
localPath = null,
),
FileUi(
fileName = "The 5 step guide to turning it off and on again.docx",
uid = "The 5 step guide to turning it off and on again.docx",
fileSize = 89_723_143L,
uid = UUID.randomUUID().toString(),
fileName = "Introduction to Turning It Off and On Again.pptx",
fileSize = 98_723_143L,
mimeType = null,
localPath = "",
localPath = null,
),
FileUi(
uid = UUID.randomUUID().toString(),
fileName = "The 5-Step Guide to Not Breaking Your Code.txt",
fileSize = 57_689_032L,
mimeType = null,
localPath = null,
),
)

Expand Down

0 comments on commit 9649fd0

Please sign in to comment.