mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 03:39:43 +08:00
Meta feature request https://meta.discourse.org/t/is-it-possible-to-have-a-multi-line-longer-text-field-in-the-signup-form/257642/7 This commit adds the option to use a textarea as a custom field: <img width="1430" height="1520" alt="CleanShot 2025-08-04 at 19 06 45@2x" src="https://github.com/user-attachments/assets/f827a473-1493-479a-903f-cc2b719e5e87" /> ### Shown on profile: <img width="690" height="433" alt="image" src="https://github.com/user-attachments/assets/c9f386a3-0ca9-4402-9f4e-c3564f347a1c" /> ### Shown on usercard (not particularly recommended): <img width="1300" height="670" alt="CleanShot 2025-08-04 at 19 07 22@2x" src="https://github.com/user-attachments/assets/a9b981cb-afd2-4402-a350-553604b5d070" /> ### Shown on signup screen <img width="976" height="1404" alt="CleanShot 2025-08-04 at 19 41 17@2x" src="https://github.com/user-attachments/assets/548b0bd5-fc6f-4300-94a5-ff1d945a1f43" />
78 lines
2.5 KiB
Ruby
78 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class UserField < ActiveRecord::Base
|
|
include AnonCacheInvalidator
|
|
include HasDeprecatedColumns
|
|
include HasSanitizableFields
|
|
|
|
FLAG_ATTRIBUTES = %w[editable show_on_profile show_on_user_card searchable].freeze
|
|
|
|
deprecate_column :required, drop_from: "3.3"
|
|
self.ignored_columns += %i[field_type]
|
|
|
|
validates_presence_of :description
|
|
validates_presence_of :name, unless: -> { field_type == "confirm" }
|
|
has_many :user_field_options, dependent: :destroy
|
|
has_one :directory_column, dependent: :destroy
|
|
accepts_nested_attributes_for :user_field_options
|
|
|
|
before_save :sanitize_description
|
|
after_create :update_required_fields_version
|
|
after_update :update_required_fields_version, if: -> { saved_change_to_requirement? }
|
|
after_save :queue_index_search
|
|
|
|
scope :public_fields, -> { where(show_on_profile: true).or(where(show_on_user_card: true)) }
|
|
scope :required, -> { not_optional }
|
|
|
|
enum :requirement, { optional: 0, for_all_users: 1, on_signup: 2 }.freeze
|
|
enum :field_type_enum, { text: 0, confirm: 1, dropdown: 2, multiselect: 3, textarea: 4 }.freeze
|
|
alias_attribute :field_type, :field_type_enum
|
|
|
|
def self.max_length
|
|
2048
|
|
end
|
|
|
|
def required?
|
|
!optional?
|
|
end
|
|
|
|
def queue_index_search
|
|
Jobs.enqueue(:index_user_fields_for_search, user_field_id: self.id)
|
|
end
|
|
|
|
private
|
|
|
|
def update_required_fields_version
|
|
return if !for_all_users?
|
|
|
|
UserRequiredFieldsVersion.create
|
|
Discourse.request_refresh!
|
|
end
|
|
|
|
def sanitize_description
|
|
if description_changed?
|
|
self.description = sanitize_field(self.description, additional_attributes: ["target"])
|
|
end
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_fields
|
|
#
|
|
# id :integer not null, primary key
|
|
# name :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# editable :boolean default(FALSE), not null
|
|
# description :string not null
|
|
# required :boolean default(TRUE), not null
|
|
# show_on_profile :boolean default(FALSE), not null
|
|
# position :integer default(0)
|
|
# show_on_user_card :boolean default(FALSE), not null
|
|
# external_name :string
|
|
# external_type :string
|
|
# searchable :boolean default(FALSE), not null
|
|
# requirement :integer default("optional"), not null
|
|
# field_type_enum :integer not null
|
|
#
|