Skip to:
Content

BuddyPress.org

Opened 9 years ago

Closed 8 years ago

Last modified 8 years ago

#6569 closed enhancement (fixed)

Let's give post-form.php the love

Reported by: modemlooper's profile modemlooper Owned by:
Milestone: 2.4 Priority: normal
Severity: normal Version: 1.2
Component: Templates Keywords: has-patch
Cc:

Description

I think it's time we update post-form.php. The markup is ok, the styling can be enhanced but the action placements are a development nightmare. Look at attached image. The same button hooked to the only actions available. I've seen plugins override this post form template so they can add buttons in locations that are where they should be. This should not be the case. We should plot a few use cases and make it easier to get custom buttons/links/options into this form that is really the most used UI in all of BP and I think its the worst.

Attachments (11)

post-form.png (40.2 KB) - added by modemlooper 9 years ago.
twitter.png (17.8 KB) - added by modemlooper 9 years ago.
twitter post form
facebook.png (25.5 KB) - added by modemlooper 9 years ago.
Facebook post form
open close.gif (97.9 KB) - added by modemlooper 9 years ago.
slide off when you try to select option
6569.patch (9.4 KB) - added by imath 9 years ago.
6569.02.patch (12.4 KB) - added by imath 9 years ago.
Screen Shot 2015-08-07 at 11.04.02 AM.png (40.8 KB) - added by modemlooper 9 years ago.
cut off
6569.03.patch (13.5 KB) - added by imath 9 years ago.
6569.04.patch (23.0 KB) - added by r-a-y 8 years ago.
6569.js-only.patch (15.5 KB) - added by r-a-y 8 years ago.
6569.js-only.02.patch (24.6 KB) - added by r-a-y 8 years ago.
Updated for trunk and to remove unnecessary styles in companion stylesheets.

Download all attachments as: .zip

Change History (61)

@modemlooper
9 years ago

@modemlooper
9 years ago

twitter post form

@modemlooper
9 years ago

Facebook post form

#1 @modemlooper
9 years ago

added twitter and fb post form to get some UI options

#2 @modemlooper
9 years ago

i like fb action buttons on top, so we'd need to get rid of "what's new.."

@modemlooper
9 years ago

slide off when you try to select option

#3 @modemlooper
9 years ago

another issue is when you toggle form open and then try to select where to post is closes unless you have text in form

#4 follow-up: @hnla
9 years ago

Have you really not seen the umpteen number of tickets I've had and patches to try and address concerns for this aspect of the whats-new-form, this feels a bit like deja vu for me.

Write some patches, lets see some fixes, problem is though that changes will all to easily have back compat issues :(

#5 in reply to: ↑ 4 @modemlooper
9 years ago

Replying to hnla:

Have you really not seen the umpteen number of tickets I've had and patches to try and address concerns for this aspect of the whats-new-form, this feels a bit like deja vu for me.

Write some patches, lets see some fixes, problem is though that changes will all to easily have back compat issues :(

not writing anything until it's something we want to improve but I constantly have to edit this file or override it.

#6 @imath
9 years ago

I think modemlooper is so right! But as hnla said, it's challenging !

imho: we should work on an extendable "full javascript" UI a bit like what we did with avatars with a fallback on the old post form if javascript is broken or unavailable.
This new UI could use a contentEditable div so that images can be displayed once we attach them to the new status update.
It would also be easier to bring our upload API in it without poping a thickbox for instance. Because, attaching photos requires being able to upload and to browse into user's already uploaded photos...

We also have the select box to choose the groups/profile thing that could be improve because it's not possible to add new choices... Well that's a really interesting challenge :)

If everyone agrees on the "full javascript" thing, i'd be happy to work on it ;)

Last edited 9 years ago by imath (previous) (diff)

#7 @hnla
9 years ago

but I constantly have to edit this file or override it.

As do I but have attempted a lot of patches to address issues taking quite a bit of time, I revised some of the javascript but aspects of my revisions to aid developers were knocked back.

#8 follow-up: @modemlooper
9 years ago

I don't know about full JS, it would break existing plugins that add actions to markup. also so apprehensive about a media thing included in BP because almost every single client wants something different.

Last edited 9 years ago by modemlooper (previous) (diff)

#9 in reply to: ↑ 8 @imath
9 years ago

Replying to modemlooper:

I don't know about full JS, it would break existing plugins that add actions to markup.

Yes, and that's one of the reasons it's so challenging to touch to any part of the post form, because some plugins are using existing actions. But one day or another, i'm pretty sure we'll need to go this road :)

In the meantime, i've made some tests with the post form template see 6569.patch.

  • remove the p.activity-greeting and use it instead as the placeholder of the whats-new textarea
  • put the div#whats-new-submit out of div#whats-new-options
  • added a div#whats-new-actions that contains div#whats-new-submit and div#whats-new-options and some new actions.
  • edited some css rules and the main js file to auto-resize the textarea on keyup

In div#whats-new-actions The main interesting action imho is the one before div#whats-new-submit and div#whats-new-options it's precisely bp_activity_post_form_before_options. It seems logic to me that when posting an update we:

  • write its content
  • eventually attach media
  • tell who is targeted
  • submit the form.

Google+ post form is interesting, because it has a lot of "attachment" types (photo, links, video...) And it seems the more close to our case, because we want to make it possible to any plugin to add custom "attachment" types.
https://farm1.staticflickr.com/452/19465098563_3afd76eda8_o.png

So i've played with this and the BuddyDrive plugin to see how a plugin could add its customs "attachment" types. Here's what you get when on the activity directory :
https://farm1.staticflickr.com/307/20059416746_0be2efa343_o.png
Only the placeholder is shown

When you begin to type a new activity, this is what you get (btns are generated by BuddyDrive by hooking on bp_activity_post_form_before_options) :
https://farm1.staticflickr.com/391/19899006719_dc74dd44af_o.png

When you click on the "Photo" button, this is what you get (Uploader is the BuddyPress one and generated by BuddyDrive)
https://farm1.staticflickr.com/436/20059416446_e9ab53b554_o.png

also so apprehensive about a media thing included in BP because almost every single client wants something different.

I see what you mean, but on the other hand, some users could be frustrated by the fact there's no built-in component to manage user uploads in the long term. I agree there are some great plugins to do so, but i'm also hearing some users complaining when a plugin drop his support... I guess people could feel safer having a very basic component to organize user uploads, other plugins could take to the next level :)

@imath
9 years ago

#10 @imath
9 years ago

  • Keywords has-patch added

#11 @imath
9 years ago

6569.02.patch brings some improvements such as making sure all custom inputs are also sent into $_POST

@imath
9 years ago

This ticket was mentioned in Slack in #buddypress by imath. View the logs.


9 years ago

#13 @imath
9 years ago

  • Milestone changed from Awaiting Review to 2.4

The more i think to this, the more i think it's a required step before thinking to add any feature like 'attach a photo to an activity'. I think we should really work on this during 2.4. And about attaching a photo to an activity, i have a plan in case this ticket makes it into core :)

@hnla could you test the patch and eventually improve the markup/css part if needed ?

#14 @hnla
9 years ago

@imath noted!

#15 follow-up: @r-a-y
9 years ago

  • Keywords 2nd-opinion removed
  • Version changed from 2.3.2 to 1.2

imath - I like the JS approach to grab all the form fields in 02.patch and passing that to the AJAX post action.

We should separate the commits out in the following order: cosmetic fixes, new actions, JS AJAX post improvements.

#16 in reply to: ↑ 15 @imath
9 years ago

Replying to r-a-y:

We should separate the commits out in the following order: cosmetic fixes, new actions, JS AJAX post improvements.

Absolutely :)

#17 @modemlooper
9 years ago

So, getting the extra form data in post submit is great but there is nothing you can do with it.

bp_activity_add() uses bp_parse_args and you can push meta to this but then the save args will strip off anything extra.

action hook bp_activity_add only passes you back the original args and not the activity object so you can't attach any of the data to the newly created item.

I propose we pass back the activity object , then we can get the ID and run any meta functions.

do_action( 'bp_activity_add', $r, $activity );

then we can do an easy hook to add the meta or process it however needed.

function try_add_meta( $r, $activity ) {

	bp_activity_update_meta( $activity->ID, 'key', $r['meta'] );
	
}
add_action( 'bp_activity_add', 'try_add_meta', 10, 2 );
Last edited 9 years ago by modemlooper (previous) (diff)

This ticket was mentioned in Slack in #buddypress by modemlooper. View the logs.


9 years ago

#19 @r-a-y
9 years ago

'bp_activity_add' is an example of a superfluous hook; BP has way too many of them. You should really be using the 'bp_activity_after_save' hook for stuff like this.

With imath's patch, you should be able to check for your posted meta in the $_POST global during the 'bp_activity_after_save' hook.

Last edited 9 years ago by r-a-y (previous) (diff)

#20 @modemlooper
9 years ago

That hook is not in the patch, no extra data is sent. In bp_activity_add it explicitly selects data and nothing is passed to the after save hook. so no way to use anything from post global

Last edited 9 years ago by modemlooper (previous) (diff)

#21 @r-a-y
9 years ago

That hook is not in the patch

The 'bp_activity_after_save' hook is not a new hook:
https://buddypress.trac.wordpress.org/browser/tags/2.3.2/src/bp-activity/classes/class-bp-activity-activity.php#L246

What I am saying is the 'bp_activity_add' hook is not necessary when you have the 'bp_activity_after_save' hook, which passes the full activity object when an activity item is saved into the database.

The following code snippet should work:

function my_activity_custom_post_save( $activity ) {
     if ( ! empty( $_POST['YOUR_FORM_VAR'] ) ) {
          bp_activity_update_meta( $activity->ID, 'key', $_POST['YOUR_FORM_VAR'] );
     }
}
add_action( 'bp_activity_after_save', 'my_activity_custom_post_save' );

The reason why this works is imath's patch passes all the form fields from the activity post form during AJAX, which should allow you to check the $_POST global for your form field value. You have to apply imath's patch first, then you can try the snippet above.

Last edited 9 years ago by r-a-y (previous) (diff)

#22 @modemlooper
9 years ago

I know the hook is there, never mind, its passing post. I had code elsewhere that interfered.

#23 @modemlooper
9 years ago

We are gonna have some issues with post form and attachments depending on placement of UI elements. In 2012 the whats-new-options is a set height. I think we need some additional hooks

#24 @DJPaul
9 years ago

  • Component changed from Appearance - Template Pack to Appearance - Template Parts

#25 @imath
9 years ago

  • Keywords reporter-feedback added

@modemlooper have you tested the patch? It's including new hooks, re-organizing the post-form and making sure all fields will be included into the $_POST global as explained in this previous comment

Is applying the patch is fixing the 'cut-off' issue ?

#26 @imath
9 years ago

So i've been working the BP Attachments plugin to check how this patch could be useful. I've found that when you're adding some extra fields to the post form, if the user tries to use them leaving the textarea empty, the whole form is shrinked which is terribly annoying. So i'm in favor of a reset button a bit like on the Google+ screencapture. The other advantage of this button is that plugins can listen to the reset event.

Here's a screen capture of the post form generated by the BP Attachments plugin (which basically uses the 6569.03.patch).

https://farm6.staticflickr.com/5795/21071216441_27fa6059d5_b.jpg

@imath
9 years ago

This ticket was mentioned in Slack in #buddypress by imath. View the logs.


9 years ago

#28 @bluelf
9 years ago

Hi, just a suggestion of change in the post form design. The question for me is always simplicity, how many times the user has to look around the post form to be sure that is posting in the right place and the right message, and also I know there are users thinking where they want to post even before starting typing.

That's why I believe that where to post option should be in the same eyeline and always visible from post typing area.

Also the avatar is quite big for me, maybe I'm wrong on this but we don't need to watch our pretty faces in big sizes all time, is quite useful to see where I need to start typing but not too much for bigger size than the writting line.

Just a couple of ideas.

http://i0.wp.com/www.seluvega.es/wp-content/uploads/2015/09/suggestion-1-post-form-buddypress.jpg

#29 @imath
9 years ago

Interesting feedback @bluelf, thanks a lot :)

#30 @mercime
9 years ago

Linking the youtube video by imath here for posterity.
https://www.youtube.com/watch?t=5&v=yt5P6f9ojz0

#31 @shanebp
9 years ago

I'd like to request that any upload feature, ( profile photo, header, activity entry attachment, etc. ) support a check of image orientation and make necessary adjustment.
That data is now part of WP codebase.
https://core.trac.wordpress.org/ticket/28916

I can't be the only one with client complaints re 'sideways' images due to use of mobile devices.

Last edited 9 years ago by shanebp (previous) (diff)

#32 @r-a-y
9 years ago

shanebp - Good point. I think your issue is the same as #5089, which is for avatars though.

This ticket is about helping plugins pass their data from the activity post form, so they can do stuff with it.

@r-a-y
8 years ago

#33 @r-a-y
8 years ago

04.patch refreshes imath's awesome work from 03.patch for trunk and includes a few cosmetic changes:

  • Arrow is added beside the "What's New" textarea with CSS :before and :after. This might require tweaking for our companion stylesheets.
  • Added new JS - autoresize.js - from Jack Moore (Licensed under the MIT.) This is used to resize the textarea with no jittery bugs and also handles resizing the textarea during text deletion.
  • Tweaks JS to remove the 'active' CSS class on focusout. Before the 'active' class was always there after the initial focus.

See attached GIF:
http://imgreview.com/i/gVLuT

Last edited 8 years ago by r-a-y (previous) (diff)

#34 @DJPaul
8 years ago

Questions from the peanut gallery:

  • Is autosize.js something we might use somewhere else? Should we have it as a core script rather than in the theme compatibility folder?
  • If you click in the box / enter text, and then delete it all, and click out the box, the "Post in" "cancel" "update" buttons etc are still shown (these only appear when you click in the box initially)

This ticket was mentioned in Slack in #buddypress by r-a-y. View the logs.


8 years ago

#36 @dcavins
8 years ago

I tried .04 in the most recent Firefox, Chrome and Safari with success. These are nice improvements, and even just moving the js and form element improvements in for 2.4 would be great.

#37 @imath
8 years ago

@r-a-y your gif is awesome. I'm sorry i haven't had time to test your patch, but it sure looks great :)

My only fear, since we probably won't progress on giving a tool to users to help them figure out if their templates are out of date, is potential back compatibility issues.

This fear is telling me to work on this later. But if you feel confident about it and think my fear is not justified, let's do it :)

Thanks a lot for your great work about this ticket.

#38 @DJPaul
8 years ago

Good point

#39 @r-a-y
8 years ago

Good point about the template changes, imath!

I've created a new patch - js-only.patch - that does the following:

  • Adds imath's improvements to pass all valid input fields from the "What's new" post form to our AJAX post call. This will allow plugins to save their data.
  • Removes all our weird custom animate() calls to use slideUp() / slideDown(). This fixes modemlooper's problem with buttons being truncated in comment:23.
  • Tweaks JS to remove the 'active' CSS class on focusout as explained in comment:33.
  • Fixes issues when selecting an option in the "What's New" form as described in the GIF by modemlooper in comment:2.
  • Uses autosize.js as explained in comment:33.

No changes to our templates. Template changes should probably be done in v2.5.

A few notes about autosize.js:

  • It does not support IE8.
  • There is some jumpiness in IE10-11; I've added a temporary CSS hack to fix this, which adds padding-bottom: 22px to the <textarea> element. I know we hate CSS hacks, so this probably will be omitted. Or we might even omit autosize.js from committing.

The obligatory GIF (captured in Firefox):
http://imgreview.com/i/gVLvj

Last edited 8 years ago by r-a-y (previous) (diff)

@r-a-y
8 years ago

#40 @imath
8 years ago

@r-a-y Just tested the patch, thanks a gain for this great work.

I think i'd follow you on this for 2.4 :

Or we might even omit autosize.js from committing.

Something is still wrong:
Using twentyfifteen, when i post an update, the form is not coming back to its initial state:

https://cldup.com/G_MuoZnAos.png
^^ initial state.

https://cldup.com/xDpaveSP-I.png
^^ Once updated - this wouldn't be to bad if we could avoid the next behavior

https://cldup.com/bzXEl-2CPP.png
^^ On focus, we don't have full height of the textarea row, when typing the text is truncated at the bottom.

Finally, when you focus out having text inside the textarea, the post update button disappears.
https://cldup.com/gpLW6EOgdf.png

I think we need more time to fix this very annoying behavior with the post form.

I'm sorry r-a-y, this might be a bit frustrating but even if you improved the behavior of the post form with your 2 latest patches, i think i would only include the fix to make sure extra inputs are added to posted data for 2.4.

#41 @r-a-y
8 years ago

Thanks for testing, imath.

js-only.02.patch should correct all the issues that you listed in comment:40.

In that patch, I'm saving the initial height of the textarea and using that to set the height after AJAX posting. Also, the form doesn't slide up any more if there is content in the textarea.

Let me know if you spot any other issues!

Update: Removed unnecessary styles in companion stylesheets since JS now covers the #whats-new-options block better.

Last edited 8 years ago by r-a-y (previous) (diff)

#42 @hnla
8 years ago

looks ok, but why do we add a button to cancel rather than simply close up onblur if text area empty.

Styles will need addressing for the submits at small screen, 2015 is a bit squashed together.

The arrow pseudo element affect doesn't completely disappear at smaller screen there's a point where the border overlap is still present causing a broken looking border.

#43 @r-a-y
8 years ago

Thanks for the feedback, hnla.

looks ok, but why do we add a button to cancel rather than simply close up onblur if text area empty.

.

Styles will need addressing for the submits at small screen, 2015 is a bit squashed together.

We're going to move the template changes to v2.5 so we can talk more about things like the "Cancel" button and so we can refine the experience a bit more.


The arrow pseudo element affect doesn't completely disappear at smaller screen there's a point where the border overlap is still present causing a broken looking border.

True, I did not do any responsive work on that yet. The CSS arrow also isn't in the js-only patches.

Last edited 8 years ago by r-a-y (previous) (diff)

@r-a-y
8 years ago

Updated for trunk and to remove unnecessary styles in companion stylesheets.

#44 @dcavins
8 years ago

I tried 6569.s-only.02.patch on my test install in recent Safari, Firefox and Chrome, and thought the js work improves the end-user experience and is very useful for laying the groundwork for future extensibility.

Thanks, @r-a-y, for working on the activity form. This is a really important bit of the user interface.

This ticket was mentioned in Slack in #buddypress by r-a-y. View the logs.


8 years ago

#46 @r-a-y
8 years ago

In 10294:

bp-legacy: Pass all $_POST data when a user makes a "What's New" activity update.

Previously, if a plugin developer added a custom field to the "What's New"
form, the data for that field would not get passed to our AJAX post handler

  • bp_legacy_theme_post_update(). This made things difficult for plugin

developers to save their custom activity data.

This commit passes all valid $_POST fields from the "What's New" form to
our AJAX post handler, which will allow plugin developers to find their
data and save it.

See https://buddypress.trac.wordpress.org/ticket/6569#comment:21 for a
brief example.

Props imath.

See #6569.

This ticket was mentioned in Slack in #buddypress by r-a-y. View the logs.


8 years ago

#48 @r-a-y
8 years ago

In 10295:

bp-legacy: Improve the UX of the "What's New" activity post form.

  • The "What's New" <textarea> is now styled more consistently across all themes.
  • The block under the textarea ("Post in" dropdown box, "Post Update" and other items) is no longer truncated when there are many items there.
  • Selecting an item in the "Post in" dropdown box or clicking on any custom button no longer animates and hides the entire block.
  • For theme developers, the 'active' CSS class is now removed from the #whats-new-content DIV on focusout.
  • For theme develoeprs, the 'active' CSS class is also added to the #whats-new-textarea DIV on focus.
  • Various style declarations in our companion stylesheets are no longer needed.

See #6569.

#49 @r-a-y
8 years ago

  • Keywords reporter-feedback removed
  • Resolution set to fixed
  • Status changed from new to closed

Going to close this one for v2.4.0.

For the activity post form template changes, I've opened a new ticket - #6680 - for v2.5.0.

Let's continue this discussion over there. Thanks everyone who has commented and taken part in the work for this ticket so far!

#50 @DJPaul
8 years ago

  • Component changed from Appearance - Template Parts to Templates
Note: See TracTickets for help on using tickets.