Send avatar/banner media type to server when updating profile info
This commit is contained in:
parent
6ff0cf5fb3
commit
eb3c8ccce8
3 changed files with 6 additions and 0 deletions
|
@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Added `/@username` routes for profile pages.
|
- Added `/@username` routes for profile pages.
|
||||||
- Allowed to attach image from clipboard.
|
- Allowed to attach image from clipboard.
|
||||||
- Started using media limits provided by the backend.
|
- Started using media limits provided by the backend.
|
||||||
|
- Send avatar and banner media types to server when updating profile info.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|
|
@ -233,7 +233,9 @@ export interface ProfileUpdateData {
|
||||||
display_name: string | null;
|
display_name: string | null;
|
||||||
note: string | null;
|
note: string | null;
|
||||||
avatar: string | null;
|
avatar: string | null;
|
||||||
|
avatar_media_type: string | null;
|
||||||
header: string | null;
|
header: string | null;
|
||||||
|
header_media_type: string | null;
|
||||||
fields_attributes: ProfileFieldAttrs[];
|
fields_attributes: ProfileFieldAttrs[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -125,7 +125,9 @@ const form = $ref<ProfileUpdateData>({
|
||||||
note: profile.source.note,
|
note: profile.source.note,
|
||||||
fields_attributes: getFieldsAttributes(),
|
fields_attributes: getFieldsAttributes(),
|
||||||
avatar: null,
|
avatar: null,
|
||||||
|
avatar_media_type: null,
|
||||||
header: null,
|
header: null,
|
||||||
|
header_media_type: null,
|
||||||
})
|
})
|
||||||
const images = $ref({
|
const images = $ref({
|
||||||
avatar: profile.avatar,
|
avatar: profile.avatar,
|
||||||
|
@ -165,6 +167,7 @@ async function onFilePicked(fieldName: "avatar" | "header", event: Event) {
|
||||||
images[fieldName] = imageDataUrl
|
images[fieldName] = imageDataUrl
|
||||||
const imageData = dataUrlToBase64(imageDataUrl)
|
const imageData = dataUrlToBase64(imageDataUrl)
|
||||||
form[fieldName] = imageData.data
|
form[fieldName] = imageData.data
|
||||||
|
form[`${fieldName}_media_type`] = imageData.mediaType
|
||||||
}
|
}
|
||||||
|
|
||||||
function isValidExtraField(index: number): boolean {
|
function isValidExtraField(index: number): boolean {
|
||||||
|
|
Loading…
Reference in a new issue