Skip to content

Commit cdeaf63

Browse files
committed
feat: Remove unused storage and file details configuration from Controller
1 parent a3df86a commit cdeaf63

File tree

1 file changed

+0
-97
lines changed

1 file changed

+0
-97
lines changed

src/client/controller/controller.ts

Lines changed: 0 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -6,102 +6,5 @@ export class Controller {
66
page: 'dashboard',
77
modules,
88
labels,
9-
storageInfo: {
10-
totalStorage: 200,
11-
usedStorage: 150,
12-
freeStorage: 50,
13-
percentage: 75
14-
},
15-
fileTypes: [
16-
{ name: 'Images', size: 60, percentage: 40, color: 'blue' },
17-
{ name: 'Documents', size: 45, percentage: 30, color: 'orange' },
18-
{ name: 'Videos', size: 30, percentage: 20, color: 'green' },
19-
{ name: 'Others', size: 15, percentage: 10, color: 'orange-400' }
20-
],
21-
quickAccess: [
22-
{
23-
name: 'Design System',
24-
size: '4.2 GB',
25-
files: 21,
26-
updated: '2h ago',
27-
type: 'folder',
28-
icon: 'folder',
29-
color: 'blue'
30-
},
31-
{
32-
name: 'Marketing Assets',
33-
size: '12.8 GB',
34-
files: 348,
35-
updated: 'yesterday',
36-
type: 'folder',
37-
icon: 'image',
38-
color: 'purple'
39-
},
40-
{
41-
name: 'Contracts & Legal',
42-
size: '5.1 GB',
43-
files: 96,
44-
updated: '5d ago',
45-
type: 'folder',
46-
icon: 'file-alt',
47-
color: 'green'
48-
},
49-
{
50-
name: 'Shared with me',
51-
size: '4.4 GB',
52-
files: 58,
53-
updated: '1h ago',
54-
type: 'shortcut',
55-
icon: 'link',
56-
color: 'blue'
57-
}
58-
],
59-
fileDetails: [
60-
{
61-
type: 'Images (JPG, PNG, SVG)',
62-
totalFiles: '8,420',
63-
storageUsed: '60 GB',
64-
averageSize: '7.3 MB',
65-
shareOfTotal: '40%',
66-
icon: 'image',
67-
iconColor: 'blue'
68-
},
69-
{
70-
type: 'Documents (PDF, DOCX)',
71-
totalFiles: '3,210',
72-
storageUsed: '45 GB',
73-
averageSize: '5.6 MB',
74-
shareOfTotal: '30%',
75-
icon: 'file-pdf',
76-
iconColor: 'red'
77-
},
78-
{
79-
type: 'Videos (MP4, MOV)',
80-
totalFiles: '640',
81-
storageUsed: '30 GB',
82-
averageSize: '4.8 MB',
83-
shareOfTotal: '20%',
84-
icon: 'video',
85-
iconColor: 'purple'
86-
},
87-
{
88-
type: 'Archives (ZIP, RAR)',
89-
totalFiles: '210',
90-
storageUsed: '10 GB',
91-
averageSize: '4.8 MB',
92-
shareOfTotal: '7%',
93-
icon: 'file-archive',
94-
iconColor: 'yellow'
95-
},
96-
{
97-
type: 'Code & Others',
98-
totalFiles: '1,120',
99-
storageUsed: '5 GB',
100-
averageSize: '4.5 MB',
101-
shareOfTotal: '3%',
102-
icon: 'code',
103-
iconColor: 'green'
104-
}
105-
]
1069
}
10710
}

0 commit comments

Comments
 (0)