communitas 0.2.6

A diagnostic chat application for the P2P Foundation network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
import React, { useState, useCallback } from 'react'
import {
  Box,
  Typography,
  Button,
  Card,
  CardContent,
  Grid,
  Chip,
  LinearProgress,
  IconButton,
  Menu,
  MenuItem,
  Dialog,
  DialogTitle,
  DialogContent,
  DialogActions,
  TextField,
} from '@mui/material'
import {
  CloudUpload,
  Folder,
  InsertDriveFile,
  Image,
  VideoFile,
  AudioFile,
  PictureAsPdf,
  Download,
  Share,
  Delete,
  MoreVert,
} from '@mui/icons-material'

interface FileItem {
  id: string
  name: string
  type: string
  size: number
  uploadDate: Date
  sharedBy: string
  downloadUrl: string
  thumbnail?: string
  isUploading?: boolean
  uploadProgress?: number
}

interface FileShareInterfaceProps {
  groupId?: string
  onFileUpload: (files: File[]) => void
  onFileDownload: (file: FileItem) => void
  onFileDelete: (fileId: string) => void
  onFileShare: (fileId: string, recipients: string[]) => void
}

const mockFiles: FileItem[] = [
  {
    id: '1',
    name: 'Project Proposal.pdf',
    type: 'application/pdf',
    size: 2048000,
    uploadDate: new Date(2025, 0, 5),
    sharedBy: 'Alice Johnson',
    downloadUrl: '#',
  },
  {
    id: '2',
    name: 'Team Photo.jpg',
    type: 'image/jpeg',
    size: 512000,
    uploadDate: new Date(2025, 0, 4),
    sharedBy: 'Bob Smith',
    downloadUrl: '#',
    thumbnail: '/placeholder-image.jpg',
  },
  {
    id: '3',
    name: 'Meeting Recording.mp4',
    type: 'video/mp4',
    size: 15728640,
    uploadDate: new Date(2025, 0, 3),
    sharedBy: 'Carol Williams',
    downloadUrl: '#',
    isUploading: true,
    uploadProgress: 67,
  },
]

export default function FileShareInterface({
  groupId,
  onFileUpload,
  onFileDownload,
  onFileDelete,
  onFileShare,
}: FileShareInterfaceProps) {
  const [files, setFiles] = useState<FileItem[]>(mockFiles)
  const [dragOver, setDragOver] = useState(false)
  const [menuAnchor, setMenuAnchor] = useState<HTMLElement | null>(null)
  const [selectedFile, setSelectedFile] = useState<FileItem | null>(null)
  const [shareDialog, setShareDialog] = useState(false)
  const [shareRecipients, setShareRecipients] = useState('')
  const [viewMode, setViewMode] = useState<'grid' | 'list'>('grid')

  const handleDragOver = useCallback((e: React.DragEvent) => {
    e.preventDefault()
    setDragOver(true)
  }, [])

  const handleDragLeave = useCallback((e: React.DragEvent) => {
    e.preventDefault()
    setDragOver(false)
  }, [])

  const handleDrop = useCallback((e: React.DragEvent) => {
    e.preventDefault()
    setDragOver(false)
    
    const droppedFiles = Array.from(e.dataTransfer.files)
    if (droppedFiles.length > 0) {
      onFileUpload(droppedFiles)
      
      // Add optimistic updates
      const newFiles = droppedFiles.map(file => ({
        id: 'temp-' + Date.now() + Math.random(),
        name: file.name,
        type: file.type,
        size: file.size,
        uploadDate: new Date(),
        sharedBy: 'You',
        downloadUrl: '',
        isUploading: true,
        uploadProgress: 0,
      }))
      
      setFiles(prev => [...newFiles, ...prev])
    }
  }, [onFileUpload])

  const handleFileSelect = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
    const selectedFiles = e.target.files
    if (selectedFiles) {
      const fileArray = Array.from(selectedFiles)
      onFileUpload(fileArray)
      
      // Reset input
      e.target.value = ''
    }
  }, [onFileUpload])

  const formatFileSize = (bytes: number) => {
    const sizes = ['Bytes', 'KB', 'MB', 'GB']
    if (bytes === 0) return '0 Bytes'
    const i = Math.floor(Math.log(bytes) / Math.log(1024))
    return Math.round(bytes / Math.pow(1024, i) * 100) / 100 + ' ' + sizes[i]
  }

  const getFileIcon = (type: string) => {
    if (type.startsWith('image/')) return <Image color="primary" />
    if (type.startsWith('video/')) return <VideoFile color="secondary" />
    if (type.startsWith('audio/')) return <AudioFile color="success" />
    if (type === 'application/pdf') return <PictureAsPdf color="error" />
    if (type.includes('folder')) return <Folder color="warning" />
    return <InsertDriveFile color="action" />
  }

  const handleMenuOpen = (event: React.MouseEvent, file: FileItem) => {
    setMenuAnchor(event.currentTarget as HTMLElement)
    setSelectedFile(file)
  }

  const handleMenuClose = () => {
    setMenuAnchor(null)
    setSelectedFile(null)
  }

  const handleShare = () => {
    setShareDialog(true)
    handleMenuClose()
  }

  const handleShareConfirm = () => {
    if (selectedFile && shareRecipients) {
      const recipients = shareRecipients.split(',').map(r => r.trim())
      onFileShare(selectedFile.id, recipients)
      setShareDialog(false)
      setShareRecipients('')
    }
  }

  const handleDownload = (file: FileItem) => {
    onFileDownload(file)
    handleMenuClose()
  }

  const handleDelete = (file: FileItem) => {
    onFileDelete(file.id)
    setFiles(prev => prev.filter(f => f.id !== file.id))
    handleMenuClose()
  }

  const filteredFiles = files
  const totalSize = files.reduce((acc, f) => acc + f.size, 0)
  const uploadingCount = files.filter(f => f.isUploading).length

  return (
    <Box sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
      <Card sx={{ mb: 2 }}>
        <CardContent>
          <Box sx={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', mb: 2 }}>
            <Typography variant="h6">
              Shared Files {groupId && ('- Group ' + groupId)}
            </Typography>
            <Box sx={{ display: 'flex', gap: 1 }}>
              <Button
                variant="outlined"
                onClick={() => setViewMode(viewMode === 'grid' ? 'list' : 'grid')}
              >
                {viewMode === 'grid' ? 'List' : 'Grid'}
              </Button>
              <Button
                variant="contained"
                component="label"
                startIcon={<CloudUpload />}
              >
                Upload Files
                <input
                  type="file"
                  hidden
                  multiple
                  onChange={handleFileSelect}
                  accept="image/*,video/*,audio/*,.pdf,.doc,.docx,.txt,.zip"
                />
              </Button>
            </Box>
          </Box>

          <Box sx={{ display: 'flex', gap: 2 }}>
            <Chip 
              label={files.length + ' files'}
              variant="outlined" 
            />
            <Chip 
              label={formatFileSize(totalSize) + ' total'}
              variant="outlined" 
            />
            <Chip 
              label={uploadingCount + ' uploading'}
              color="info" 
              variant="outlined" 
            />
          </Box>
        </CardContent>
      </Card>

      <Box
        sx={{
          flexGrow: 1,
          position: 'relative',
          border: dragOver ? '2px dashed #1976d2' : '2px dashed transparent',
          borderRadius: 2,
          backgroundColor: dragOver ? 'action.hover' : 'transparent',
          transition: 'all 0.2s ease',
          overflow: 'auto',
        }}
        onDragOver={handleDragOver}
        onDragLeave={handleDragLeave}
        onDrop={handleDrop}
      >
        {dragOver && (
          <Box
            sx={{
              position: 'absolute',
              top: 0,
              left: 0,
              right: 0,
              bottom: 0,
              display: 'flex',
              alignItems: 'center',
              justifyContent: 'center',
              backgroundColor: 'rgba(25, 118, 210, 0.1)',
              zIndex: 10,
              borderRadius: 2,
            }}
          >
            <Box sx={{ textAlign: 'center' }}>
              <CloudUpload sx={{ fontSize: 64, color: 'primary.main', mb: 2 }} />
              <Typography variant="h6" color="primary">
                Drop files here to upload
              </Typography>
            </Box>
          </Box>
        )}

        {filteredFiles.length === 0 ? (
          <Box sx={{ 
            display: 'flex', 
            flexDirection: 'column', 
            alignItems: 'center', 
            justifyContent: 'center',
            height: '400px',
            color: 'text.secondary' 
          }}>
            <Folder sx={{ fontSize: 64, mb: 2 }} />
            <Typography variant="h6" gutterBottom>
              No files shared yet
            </Typography>
            <Typography variant="body2">
              Drop files here or click upload to get started
            </Typography>
          </Box>
        ) : (
          <Grid container spacing={2} sx={{ p: 2 }}>
            {filteredFiles.map((file) => (
              <Grid 
                item 
                xs={12} 
                sm={viewMode === 'grid' ? 6 : 12} 
                md={viewMode === 'grid' ? 4 : 12} 
                lg={viewMode === 'grid' ? 3 : 12}
                key={file.id}
              >
                <Card
                  sx={{
                    position: 'relative',
                    cursor: 'pointer',
                    '&:hover': { elevation: 4 },
                    opacity: file.isUploading ? 0.7 : 1,
                  }}
                >
                  <CardContent sx={{ p: 2 }}>
                    <Box sx={{ display: 'flex', alignItems: 'flex-start', gap: 2 }}>
                      <Box sx={{ minWidth: 48 }}>
                        {file.thumbnail ? (
                          <img 
                            src={file.thumbnail} 
                            alt={file.name}
                            style={{ 
                              width: 48, 
                              height: 48, 
                              objectFit: 'cover', 
                              borderRadius: 4 
                            }}
                          />
                        ) : (
                          <Box sx={{ 
                            width: 48, 
                            height: 48, 
                            display: 'flex', 
                            alignItems: 'center', 
                            justifyContent: 'center',
                            backgroundColor: 'grey.100',
                            borderRadius: 1,
                          }}>
                            {getFileIcon(file.type)}
                          </Box>
                        )}
                      </Box>

                      <Box sx={{ flexGrow: 1, minWidth: 0 }}>
                        <Typography variant="subtitle1" noWrap title={file.name}>
                          {file.name}
                        </Typography>
                        <Typography variant="body2" color="text.secondary">
                          {formatFileSize(file.size)}  •  {file.sharedBy}
                        </Typography>
                        <Typography variant="caption" color="text.secondary">
                          {file.uploadDate.toLocaleDateString()}
                        </Typography>

                        {file.isUploading && (
                          <Box sx={{ mt: 1 }}>
                            <LinearProgress 
                              variant="determinate" 
                              value={file.uploadProgress || 0} 
                              sx={{ mb: 0.5 }}
                            />
                            <Typography variant="caption">
                              Uploading... {file.uploadProgress || 0}%
                            </Typography>
                          </Box>
                        )}
                      </Box>

                      <IconButton
                        size="small"
                        onClick={(e) => handleMenuOpen(e, file)}
                        disabled={file.isUploading}
                      >
                        <MoreVert fontSize="small" />
                      </IconButton>
                    </Box>
                  </CardContent>
                </Card>
              </Grid>
            ))}
          </Grid>
        )}
      </Box>

      <Menu
        anchorEl={menuAnchor}
        open={Boolean(menuAnchor)}
        onClose={handleMenuClose}
      >
        <MenuItem onClick={() => selectedFile && handleDownload(selectedFile)}>
          <Download sx={{ mr: 1 }} />
          Download
        </MenuItem>
        <MenuItem onClick={handleShare}>
          <Share sx={{ mr: 1 }} />
          Share
        </MenuItem>
        <MenuItem onClick={() => selectedFile && handleDelete(selectedFile)}>
          <Delete sx={{ mr: 1 }} />
          Delete
        </MenuItem>
      </Menu>

      <Dialog open={shareDialog} onClose={() => setShareDialog(false)}>
        <DialogTitle>Share File</DialogTitle>
        <DialogContent>
          <Typography variant="body2" color="text.secondary" sx={{ mb: 2 }}>
            Share "{selectedFile?.name}" with:
          </Typography>
          <TextField
            fullWidth
            label="Recipients (comma-separated addresses)"
            value={shareRecipients}
            onChange={(e) => setShareRecipients(e.target.value)}
            placeholder="calm-river-mountain-dawn, bright-star-ocean-wind"
            helperText="Enter four-word addresses separated by commas"
          />
        </DialogContent>
        <DialogActions>
          <Button onClick={() => setShareDialog(false)}>Cancel</Button>
          <Button variant="contained" onClick={handleShareConfirm}>
            Share
          </Button>
        </DialogActions>
      </Dialog>
    </Box>
  )
}