Files
Compass/web/lib/firebase/storage.ts
MartinBraquet a5c4969d48 Introduce new components and utilities: ProfileAvatar, ShareCTAButton, custom video extensions, and responsive hooks.
- Added `ProfileAvatar` for consistent avatar rendering across profiles, with fallback initials and gradient backgrounds.
- Created `ShareCTAButton` for sharing links with native sharing support and clipboard fallback.
- Integrated custom `tiptap` video extension (`tiptap-video`) for video support in rich text editing.
- Introduced `useColumnCount` for responsive column count management in dynamic masonry layouts.
- Enhanced onboarding flow with refined "Share My Profile" feature using the new share button.
- Updated styles and layout in filtered profiles and onboarding screens for better consistency and responsiveness.
2026-07-27 00:51:20 +02:00

185 lines
5.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import {captureMessage} from '@sentry/nextjs'
import {YEAR_SECONDS} from 'common/util/time'
import Compressor from 'compressorjs'
import {getDownloadURL, ref, uploadBytesResumable} from 'firebase/storage'
import {nanoid} from 'nanoid'
import {storage} from './init'
export const uploadImage = async (
username: string,
file: File,
prefix?: string,
onProgress?: (progress: number, isRunning: boolean) => void,
) => {
const fileType = await getFileType(file)
const lastDot = file.name.lastIndexOf('.')
let ext = lastDot !== -1 ? file.name.slice(lastDot + 1) : undefined
ext ??= fileType?.split('/')[1]
ext ??= 'bin'
ext = ext.toLowerCase()
// Replace filename with a nanoid to avoid collisions
const stem = nanoid(10)
const ALLOWED_TYPES = [
'video/mp4',
'video/webm',
'image/jpeg',
'image/png',
'image/webp',
'image/avif',
'image/heic',
'image/heif',
]
if (!ALLOWED_TYPES.includes(fileType || '')) {
captureMessage('Likely unsupported image format', {attributes: {type: file.type}})
console.warn('Likely unsupported image format', file.type)
}
if (isHeic(file) && typeof window !== 'undefined') {
file = await convertHeicToJpeg(file)
ext = 'jpg'
}
if (file.type === 'image/webp') {
file = await convertWebpToJpeg(file)
ext = 'jpg'
}
const filename = `${stem}.${ext}`
console.log('filename', filename)
const storageRef = ref(
storage,
`user-images/${username}${prefix ? '/' + prefix : ''}/${filename}`,
)
if (file.size > 20 * 1024 ** 2) {
return Promise.reject('File is over 20 MB')
}
// 2⃣ Compress if > 1MB (images only; Compressor operates on raster images)
if (file.size > 1024 ** 2 && file.type.startsWith('image')) {
file = await new Promise((resolve, reject) => {
new Compressor(file, {
quality: 0.6,
maxHeight: 1920,
maxWidth: 1920,
convertSize: 1000000, // if result >1MB turn to jpeg
success: (file: File) => resolve(file),
error: (error) => reject(error.message),
})
})
}
const uploadTask = uploadBytesResumable(storageRef, file, {
cacheControl: `public, max-age=${YEAR_SECONDS}`,
})
let resolvePromise: (url: string) => void
let rejectPromise: (reason?: any) => void
const promise = new Promise<string>((resolve, reject) => {
resolvePromise = resolve
rejectPromise = reject
})
const unsubscribe = uploadTask.on(
'state_changed',
(snapshot) => {
const progress = snapshot.bytesTransferred / snapshot.totalBytes
const isRunning = snapshot.state === 'running'
if (onProgress) onProgress(progress, isRunning)
},
(error) => {
// A full list of error codes is available at
// https://firebase.google.com/docs/storage/web/handle-errors
rejectPromise(error)
unsubscribe()
},
() => {
getDownloadURL(uploadTask.snapshot.ref).then((downloadURL) => {
resolvePromise(downloadURL)
})
unsubscribe()
},
)
return await promise
}
export async function convertWebpToJpeg(file: File): Promise<File> {
if (file.type !== 'image/webp') return file
return new Promise((resolve, reject) => {
const img = new Image()
const url = URL.createObjectURL(file)
img.onload = () => {
const canvas = document.createElement('canvas')
canvas.width = img.width
canvas.height = img.height
canvas.getContext('2d')!.drawImage(img, 0, 0)
canvas.toBlob(
(blob) => {
URL.revokeObjectURL(url)
if (!blob) return reject(new Error('Conversion failed'))
resolve(new File([blob], file.name.replace(/\.webp$/, '.jpg'), {type: 'image/jpeg'}))
},
'image/jpeg',
0.92,
)
}
img.onerror = reject
img.src = url
})
}
const isHeic = (file: File) =>
file.type === 'image/heic' || file.type === 'image/heif' || /\.heic$/i.test(file.name)
export async function convertHeicToJpeg(file: File): Promise<File> {
// Convert HEIC → JPEG immediately (as HEIC not rendered)
// heic2any available in client only
const {default: heic2any} = await import('heic2any')
const converted = await heic2any({
blob: file,
toType: 'image/jpeg',
quality: 0.9,
})
return new File([converted as Blob], file.name.replace(/\.heic$/, '.jpg'), {
type: 'image/jpeg',
})
}
async function getFileType(file: File): Promise<string | undefined> {
if (file.type) return file.type
const buf = await file.slice(0, 12).arrayBuffer()
const bytes = new Uint8Array(buf)
// MP4/MOV: bytes 4-8 = "ftyp"
if (bytes[4] === 0x66 && bytes[5] === 0x74 && bytes[6] === 0x79 && bytes[7] === 0x70)
return 'video/mp4'
// WebM: starts with 0x1A45DFA3
if (bytes[0] === 0x1a && bytes[1] === 0x45 && bytes[2] === 0xdf && bytes[3] === 0xa3)
return 'video/webm'
// JPEG: FF D8 FF
if (bytes[0] === 0xff && bytes[1] === 0xd8 && bytes[2] === 0xff) return 'image/jpeg'
// PNG: 89 50 4E 47
if (bytes[0] === 0x89 && bytes[1] === 0x50 && bytes[2] === 0x4e && bytes[3] === 0x47)
return 'image/png'
return undefined
}
export function isVideo(url: string) {
return url.match(/\.(mp4|webm|mov|ogg)/)
}