about summary refs log tree commit diff
diff options
context:
space:
mode:
authorchr <chr@cybre.space>2021-03-01 22:44:37 -0800
committerchr <chr@cybre.space>2021-03-01 22:44:37 -0800
commit16c31821d23713a50dfaa62f282e342d3963a7a1 (patch)
tree4da47736387590e4b1c920556dfad62d39da1569
parent63f8176496e98487356cb5891f997eacbbfe9b6e (diff)
parent9a43dce739e4d42cab2f98ba4bf0ce13f8ba0d7f (diff)
Merge branch 'feature_longer_bios' into cybrespace-3.3
-rw-r--r--app/javascript/packs/public.js19
-rw-r--r--app/models/account.rb8
2 files changed, 6 insertions, 21 deletions
diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js
index b2afe3fd6..3ff665f2a 100644
--- a/app/javascript/packs/public.js
+++ b/app/javascript/packs/public.js
@@ -148,7 +148,6 @@ function main() {
     delegate(document, '.custom-emoji', 'mouseover', getEmojiAnimationHandler('data-original'));
     delegate(document, '.custom-emoji', 'mouseout', getEmojiAnimationHandler('data-static'));
 
-<<<<<<< HEAD
     delegate(document, '.status__content__spoiler-link', 'click', function() {
       const statusEl = this.parentNode.parentNode;
 
@@ -168,26 +167,12 @@ function main() {
       const message = (statusEl.dataset.spoiler === 'expanded') ? (messages['status.show_less'] || 'Show less') : (messages['status.show_more'] || 'Show more');
       spoilerLink.textContent = (new IntlMessageFormat(message, locale)).format();
     });
-=======
-    if (document.body.classList.contains('with-modals')) {
-      const scrollbarWidth = window.innerWidth - document.documentElement.clientWidth;
-      const scrollbarWidthStyle = document.createElement('style');
-      scrollbarWidthStyle.id = 'scrollbar-width';
-      document.head.appendChild(scrollbarWidthStyle);
-      scrollbarWidthStyle.sheet.insertRule(`body.with-modals--active { margin-right: ${scrollbarWidth}px; }`, 0);
-    }
-
-    [].forEach.call(document.querySelectorAll('[data-component="Card"]'), (content) => {
-      const props = JSON.parse(content.getAttribute('data-props'));
-      ReactDOM.render(<CardContainer locale={locale} {...props} />, content);
-    });
 
     if (document.fonts && document.fonts.ready) {
       document.fonts.ready.then(sizeBioText);
     } else {
       sizeBioText();
     }
->>>>>>> Bio length -> 500 characters
   });
 
   delegate(document, '.webapp-btn', 'click', ({ target, button }) => {
@@ -321,12 +306,12 @@ function main() {
 
   delegate(document, '#account_note', 'input', sizeBioText);
 
-  function sizeBioText() {
+  function s500 izeBioText() {
     const noteCounter = document.querySelector('.note-counter');
     const bioTextArea = document.querySelector('#account_note');
 
     if (noteCounter) {
-      noteCounter.textContent = 500 - length(bioTextArea.value);
+      noteCounter.textContent = 1024 - length(bioTextArea.value);
     }
 
     if (bioTextArea) {
diff --git a/app/models/account.rb b/app/models/account.rb
index 9a1c4cd40..f0cd7c2a5 100644
--- a/app/models/account.rb
+++ b/app/models/account.rb
@@ -88,8 +88,8 @@ class Account < ApplicationRecord
   validates :username, format: { with: /\A[a-z0-9_]+\z/i }, length: { maximum: 30 }, if: -> { local? && will_save_change_to_username? && actor_type != 'Application' }
   validates_with UnreservedUsernameValidator, if: -> { local? && will_save_change_to_username? }
   validates :display_name, length: { maximum: 30 }, if: -> { local? && will_save_change_to_display_name? }
-  validates :note, note_length: { maximum: 500 }, if: -> { local? && will_save_change_to_note? }
-  validate :note_has_eight_newlines?, if: -> { local? && will_save_change_to_note? }
+  validates :note, note_length: { maximum: 1024 }, if: -> { local? && will_save_change_to_note? }
+  validate :note_has_ten_newlines?, if: -> { local? && will_save_change_to_note? }
   validates :fields, length: { maximum: 4 }, if: -> { local? && will_save_change_to_fields? }
 
   scope :remote, -> { where.not(domain: nil) }
@@ -384,8 +384,8 @@ class Account < ApplicationRecord
     @synchronization_uri_prefix ||= uri[/http(s?):\/\/[^\/]+\//]
   end 
   
-  def note_has_eight_newlines?
-    errors.add(:note, 'Bio can\'t have more then 8 newlines') unless note.count("\n") <= 8
+  def note_has_ten_newlines?
+    errors.add(:note, 'Bio can\'t have more then 10 newlines') unless note.count("\n") <= 10
   end
 
   class Field < ActiveModelSerializers::Model