mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-29 11:30:28 -05:00
75580360cd
Conflicts: - `.rubocop_todo.yml`: Upstream fixed a bunch lint issues, and changed the `Max` parameter of the `Metrics/AbcSize` cop. Glitch-soc has different code and slightly higher `AbcSize` complexity, modified the `.rubocop_todo.yml` file accordingly. - `app/policies/status_policy.rb`: Upstream changed `account.suspended?` to `account.unavailable?` to prepare for delete flags. Glitch-soc has additional local-only conditions. Ported upstream's refactor while keeping glitch-soc's additional condition. - `app/serializers/initial_state_serializer.rb`: Upstream refactored a bunch of stuff while glitch-soc has more settings. Refactored as upstream did while keeping glitch-soc's settings.
66 lines
2.9 KiB
Plaintext
66 lines
2.9 KiB
Plaintext
- content_for :page_title do
|
|
= t('settings.edit_profile')
|
|
|
|
- content_for :heading do
|
|
%h2= t('settings.profile')
|
|
= render partial: 'settings/shared/profile_navigation'
|
|
|
|
= simple_form_for @account, url: settings_profile_path, html: { method: :put, id: 'edit_profile' } do |f|
|
|
= render 'shared/error_messages', object: @account
|
|
|
|
%p.lead= t('edit_profile.hint_html')
|
|
|
|
%h4= t('edit_profile.basic_information')
|
|
|
|
.fields-row
|
|
.fields-row__column.fields-row__column-6
|
|
.fields-group
|
|
= f.input :display_name, wrapper: :with_block_label, input_html: { maxlength: Account::MAX_DISPLAY_NAME_LENGTH, data: { default: @account.username } }
|
|
|
|
.fields-group
|
|
= f.input :note, wrapper: :with_block_label, input_html: { maxlength: Account::MAX_NOTE_LENGTH }
|
|
|
|
.fields-row__column.fields-group.fields-row__column-6
|
|
.input.with_block_label
|
|
%label= t('simple_form.labels.defaults.fields')
|
|
%span.hint= t('simple_form.hints.account.fields')
|
|
|
|
= f.simple_fields_for :fields do |fields_f|
|
|
.row
|
|
= fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name'), input_html: { maxlength: 255 }
|
|
= fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value'), input_html: { maxlength: 255 }
|
|
|
|
.fields-row
|
|
.fields-row__column.fields-row__column-6
|
|
.fields-group
|
|
= f.input :avatar, wrapper: :with_block_label, input_html: { accept: Account::Avatar::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.avatar', dimensions: '400x400', size: number_to_human_size(Account::Avatar::LIMIT))
|
|
|
|
.fields-row__column.fields-row__column-6
|
|
.fields-group
|
|
= image_tag @account.avatar.url, class: 'fields-group__thumbnail', id: 'account_avatar-preview'
|
|
- if @account.avatar.present?
|
|
= link_to settings_profile_picture_path('avatar'), data: { method: :delete }, class: 'link-button link-button--destructive' do
|
|
= fa_icon 'trash fw'
|
|
= t('generic.delete')
|
|
|
|
.fields-row
|
|
.fields-row__column.fields-row__column-6
|
|
.fields-group
|
|
= f.input :header, wrapper: :with_block_label, input_html: { accept: Account::Header::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.header', dimensions: '1500x500', size: number_to_human_size(Account::Header::LIMIT))
|
|
|
|
.fields-row__column.fields-row__column-6
|
|
.fields-group
|
|
= image_tag @account.header.url, class: 'fields-group__thumbnail', id: 'account_header-preview'
|
|
- if @account.header.present?
|
|
= link_to settings_profile_picture_path('header'), data: { method: :delete }, class: 'link-button link-button--destructive' do
|
|
= fa_icon 'trash fw'
|
|
= t('generic.delete')
|
|
|
|
%h4= t('edit_profile.other')
|
|
|
|
.fields-group
|
|
= f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot')
|
|
|
|
.actions
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|