-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding an avatar by an authorized user #567
base: main
Are you sure you want to change the base?
Adding an avatar by an authorized user #567
Conversation
@@ -26,6 +26,11 @@ export class BackendUserSettings1730013613468 implements MigrationInterface { | |||
type: 'varchar(50)', | |||
isNullable: false, | |||
}, | |||
{ | |||
name: 'avatar_img', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AlexanderKireev в каком формате будет храниться картинка? Это URL, base64 или svg-код??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fey Если пользователь зарегистрировался, то base64 (размер не более 250кб после сжатия). Если пользователь зашел с GitHub, то URL (https://github.com/${username}.png). Второй вариант я еще не доделал.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AlexanderKireev если в таблице лежит именно base64, то давайте сменим имя поля например на avatar_base64
, исходя из этого нам понятно будет, что внутри, что это не url
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fey Хорошо, поменяю.
#546
Загружаем и конвертируем аватар из jpg/jpeg, bmp, png в jpeg 250px x 250px, сохраняем в формате base64 в таблице user-settings, храним состояние в userSettingsSlice. После конвертации размер картинки не превышает 250kb-300kb.
record_avatar.mp4