Add a 'recent content block' for use on the dashboard

cwgordon7 - November 23, 2008 - 04:24
Project:Drupal
Version:7.x-dev
Component:node system
Category:task
Priority:critical
Assigned:CodyCraven
Status:needs review
Issue tags:dashboard, Favorite-of-Dries, Needs usability review, Novice, UBUserTesting2009, Usability
Description

This patch introduces a very simple node block that simply displays the titles of the ten most recently posted nodes. When nodes are created that are neither promoted to the front page nor have a menu item, they virtually disappear from the site, accessible only from admin/content/node or if you happen to memorize the url. By enabling this block by default (in system_install()), we eliminate this problem: as soon as content is posted, it appears in the recent content block, which appears on every page.

This patch is not in any ways complete. It's posted here mainly for feedback. If we were to have a recent content block in core, it would most likely need to have a few more features than what we have here (eg a configurable number of nodes shown, etc).

AttachmentSizeStatusTest resultOperations
recent_content_block.patch2.91 KBIdleFailed: Failed to apply patch.View details | Re-test

#1

keith.smith - November 23, 2008 - 04:52
Status:active» needs work

I like this idea. Off hand, the only issue I can think of is that, during initial site creation, your content list might be skewed toward "about" pages and "contact" pages and other static pages that usually get stuck in a primary or secondary menu (and not highlighted otherwise). Those would roll off, though, as new content was added -- and until they did, the block would be a handy way to get to them.

Plus, you've got a patch, so changing status to CNW based on your comment in #1.

#2

catch - November 23, 2008 - 10:32

There's also #301902: Allow more users to see the node admin page - which gives you a 'view content' link leading to admin/content/node for users with some content permissions. Seems like this would be a good solution too - and no reason they couldn't both go in.

#3

cwgordon7 - November 23, 2008 - 20:54
Status:needs work» needs review

Reviewable patch now, addressing my comments from the initial issue. Also with a test case now.

AttachmentSizeStatusTest resultOperations
recent_content_block_02.patch8.14 KBIdleFailed: 7556 passes, 2 fails, 0 exceptionsView details | Re-test

#4

moshe weitzman - November 24, 2008 - 02:43

Nice ... You could future proof the SELECT query by making it dynamic and adding a node_access tag. Not a big deal though.

#5

System Message - December 6, 2008 - 08:40
Status:needs review» needs work

The last submitted patch failed testing.

#6

JacobSingh - January 13, 2009 - 19:29
Component:usability» node system
Status:needs work» needs review

Okay, here is a new patch.

I moved the install bit into node_install (doesn't seem to belong in system since the code is in node). Also changed the block hooks to the new format. Tests pass AFAICT, and the block works :)

AttachmentSizeStatusTest resultOperations
337949_recent_nodes.diff6.77 KBIdleFailed: 8920 passes, 3 fails, 0 exceptionsView details | Re-test

#7

System Message - January 13, 2009 - 20:22
Status:needs review» needs work

The last submitted patch failed testing.

#8

pwolanin - January 13, 2009 - 22:36

The .install doesn't look quite right - we should be using a defined constant for the block caching mode.

I would also have the entire block content generated by a theme function, rather than building the whole list in hook_block. Also, these sorts of loops I thought we were intended to use foreach($result...) rather than while(...?

#9

JacobSingh - January 14, 2009 - 19:24

I don't know why you would use foreach instead of while, I believe it is the same performance wise and looks about the same. Is there a style guideline on that? I typically use while when using an iterator (like this) and foreach when iterating an actual array, but obviously, it doesn't matter much either way.

In re: the theming, I agree here, but not sure what you propose. The list is already pushed through "theme_item_list". Are you thinking we make a new theme function so that each item can be pushed through it individually and then have the resultant HTML pushed through theme_item_list? Is there an existing theme hook which fits the bill?

Thanks for the review!
Jacob

#10

cwgordon7 - March 6, 2009 - 19:29
Assigned to:Anonymous» cwgordon7

Mine again for a while. I also think it belongs in system.install for now because that's where all the other default blocks are defined, including for user module, etc. If we want to change that, that belongs in a separate issue.

#11

cwgordon7 - March 6, 2009 - 20:32

Correction, it belongs in the various profiles, along with the other queries.

#12

Dave Reid - March 7, 2009 - 15:16

Yes, we moved installing blocks to the default.profile. Also linking to this issue for http://www.drupalusability.org/node/150.

#13

cwgordon7 - March 7, 2009 - 15:26

On third thought, yeah, it doesn't belong in expert.profile, that should be for, well, experts. ;)

#14

cwgordon7 - March 7, 2009 - 16:02
Status:needs work» needs review

Patch attached, all tests should be passing now.

AttachmentSizeStatusTest resultOperations
recent_content_block_03.patch8.75 KBIdleFailed: 10480 passes, 2 fails, 0 exceptionsView details | Re-test

#15

System Message - March 7, 2009 - 16:20
Status:needs review» needs work

The last submitted patch failed testing.

#16

cwgordon7 - March 7, 2009 - 17:24
Status:needs work» needs review

Sorry, trying again...

AttachmentSizeStatusTest resultOperations
recent_content_block_04.patch9.59 KBIdleFailed: Failed to apply patch.View details | Re-test

#17

jrglasgow - March 7, 2009 - 19:21
Status:needs review» reviewed & tested by the community

This patch did what it is supposed to. It looks good to me. I wonder why this hasn't been done sooner.

#18

beeradb - March 7, 2009 - 20:46
Status:reviewed & tested by the community» postponed (maintainer needs more info)
Issue tags:+Needs screenshot, +Needs usability review

This needs a screenshot so someone from the usability team can properly review this.

#19

cwgordon7 - March 7, 2009 - 21:00
Status:postponed (maintainer needs more info)» needs review

Screenshot attached.

AttachmentSizeStatusTest resultOperations
drupal-recent-content-blocks.png143.87 KBIgnoredNoneNone

#20

cwgordon7 - March 7, 2009 - 21:02
Issue tags:-Needs screenshot

Sorry, removed tag.

#21

yoroy - March 7, 2009 - 21:19

- Does this patch make the block enabled by default? It should be to make it really work for the new user / fresh install
Yes it does from reading the initial issue :)

- "Recently posted" doesn't sound quite right to me. Let's use the word "content" here, after all that's what we're referring to.

"Latest content" or "Recent content"?

#22

cwgordon7 - March 7, 2009 - 21:54

New patch posted with "Recent content" as the block title. :)

AttachmentSizeStatusTest resultOperations
recent_content_block_05.patch9.59 KBIdleFailed: Failed to install HEAD.View details | Re-test

#23

System Message - March 7, 2009 - 22:10
Status:needs review» needs work

The last submitted patch failed testing.

#24

cwgordon7 - March 7, 2009 - 23:28
Status:needs work» needs review

Uh, what?

I changed a string. That should not prevent installation of Drupal.

I am reposting the same patch.

AttachmentSizeStatusTest resultOperations
recent_content_block_05.patch9.59 KBIdleFailed: 10497 passes, 4 fails, 0 exceptionsView details | Re-test

#25

System Message - March 8, 2009 - 00:05
Status:needs review» needs work

The last submitted patch failed testing.

#26

Dave Reid - March 8, 2009 - 00:22

Feel like the tests could be cleaned up a lot and might be a tad bit of overkill. I'll review tomorrow when I get back home and on reliable wifi.

#27

cwgordon7 - March 8, 2009 - 00:57
Status:needs work» needs review

Oops, forgot to update the test case for the new title.

AttachmentSizeStatusTest resultOperations
recent_content_block_06.patch9.59 KBIdleFailed: Failed to apply patch.View details | Re-test

#28

cwgordon7 - March 8, 2009 - 01:15

Several minor typos, coding style errors, rerolled.

AttachmentSizeStatusTest resultOperations
recent_content_block_07.patch9.57 KBIdleFailed: 10665 passes, 1 fail, 0 exceptionsView details | Re-test

#29

cwgordon7 - March 8, 2009 - 04:33

Ok, way cooler patch now. This one actually works, and also adds tests that make sure it actually works. (It was missing a hook implementation in previous versions).

AttachmentSizeStatusTest resultOperations
recent_content_block_08.patch10.3 KBIdleFailed: Failed to apply patch.View details | Re-test

#30

cwgordon7 - March 8, 2009 - 05:10

New patch, checks for node status to make sure it's published, includes new tests.

AttachmentSizeStatusTest resultOperations
recent_content_block_09.patch10.52 KBIdleFailed: Failed to apply patch.View details | Re-test

#31

Bojhan - March 16, 2009 - 04:58

The patch itself looks good, but after looking closely at the problem we are trying to solve "not finding content after created" I believe that it is only a quick fix to a larger problem. As the usability testing of UB2008 and UB2009 seem to have shown was the user not confused by finding his content in admin/content he was soley confused by the fact that once he created a page, it did not initialy show on his homepage or anywhere (if he didn't came across administer yet).

It seems that issue, http://drupal.org/node/395968 takes better care of the "not finding content after created" issue which is a initial experience confusion that is caused by "page" and is not a longer experience kind of issue, which by adding this block we tend to imply.

#32

cwgordon7 - March 18, 2009 - 23:09
Status:needs review» won't fix

I guess this is a won't fix, then... :(

#33

catch - September 28, 2009 - 02:10
Title:Solving the disappearing node problem by enabling a "Recent content" block by default» Add a 'recent content block'
Status:won't fix» needs review

With the dashboard looming, this should be something that's available to put there, so re-opening.

#34

System Message - September 28, 2009 - 02:20
Status:needs review» needs work

The last submitted patch failed testing.

#35

yoroy - September 28, 2009 - 07:33
Issue tags:+dashboard

tag

#36

seutje - September 28, 2009 - 08:46

subscribe

#37

ksenzee - September 28, 2009 - 17:39
Assigned to:cwgordon7» Anonymous
Status:needs work» needs review

An attempt at a straight reroll for the bot's benefit.

#38

ksenzee - September 28, 2009 - 17:41

Now with patch attached!

AttachmentSizeStatusTest resultOperations
337947_recent_content_block_38.patch9.13 KBIdleFailed: 13502 passes, 55 fails, 96 exceptionsView details | Re-test

#39

System Message - September 28, 2009 - 17:55
Status:needs review» needs work

The last submitted patch failed testing.

#40

ksenzee - September 28, 2009 - 20:05
Status:needs work» needs review

Tests should pass now.

AttachmentSizeStatusTest resultOperations
337947_recent_content_block_40.patch9.14 KBIdleFailed: 13540 passes, 5 fails, 0 exceptionsView details | Re-test

#41

System Message - September 28, 2009 - 20:20
Status:needs review» needs work

The last submitted patch failed testing.

#42

ksenzee - September 28, 2009 - 20:32

Hm, test failures I can't reproduce locally. Spiffy. I'll see what I can do when I get a minute to work on this.

In the meantime, I'm wondering if we shouldn't add more content to this block (author, content type, ...) so it better matches the mockup at http://drupal.org/node/544360#comment-1923218 (see the block at the bottom left). I'm not entirely sure what the workflow buttons in that block would do though.

#43

yoroy - October 1, 2009 - 14:17

Bumping to critical as per #569190: D7UX: Dashboard contents (this is a must-have for a useful default dashboard)
Overall dashboard issue is @ #544360: D7UX dashboard module

Content-wise, yes, let's do a quick round of sketching ideas for what really should be in here. Not able to read a patch, could you tell me what it displays now?

#44

yoroy - October 1, 2009 - 14:19
Priority:normal» critical

no really. it's critical :-)

#45

ksenzee - October 1, 2009 - 17:12

Oh sorry. Screenshot attached.

AttachmentSizeStatusTest resultOperations
recent_content_block.png36.12 KBIgnoredNoneNone

#46

catch - October 2, 2009 - 03:27

Since this is intended for the dashboard, we should remove it from the default install profile here, then the node.test hunk could go, and the recent content block test would need to explicitly enable it. With a bit of luck that'll stop the tests from breaking too.

#47

yoroy - October 26, 2009 - 02:39
Status:needs work» postponed

Postponing it for a bit on the overall design discussion for 'recent stuff widgets' on the dashboard. Re-open here once we settle on a design direction in #614410: Patterns for recent-items-blocks on the dashboard. It's a bit jumpy but needs to be considered in a broader context first.

#48

yoroy - October 30, 2009 - 13:14
Status:postponed» needs work

We haz direction (see #614410: Patterns for recent-items-blocks on the dashboard for the design process)

recent-content-block

#49

yoroy - October 30, 2009 - 14:32

More better image:

AttachmentSizeStatusTest resultOperations
dashboardwidget-tables.html_.txt4.85 KBIgnoredNoneNone
recent-content-spec.png113.3 KBIgnoredNoneNone

#50

Jaza - October 31, 2009 - 04:27
Status:needs work» needs review

Tested this patch - works nice.

I fixed up a call to theme('feed_icon') (in node_block_view(), which was preventing the patch from applying - after making this change, the patch applied successfully (with offsets).

Also fixed the call in the new block to theme('item_list'), which was affected by the theme() only takes 2 arguments recent API change.

This patch fix is courtesy of the Sydney Drupal Users Group code sprint. Yay!!! (Let's not mention how long it took a room full of geeks to fix one line in a patch... oops, I just did...)

Re-rolled patch attached.

AttachmentSizeStatusTest resultOperations
337947_recent_content_block.patch9.24 KBIdleFailed: Failed to apply patch.View details | Re-test

#51

System Message - October 31, 2009 - 04:40
Status:needs review» needs work

The last submitted patch failed testing.

#52

Jaza - October 31, 2009 - 05:18
Status:needs work» needs review

Sorry, last patch was missing file markers. New one attached.

AttachmentSizeStatusTest resultOperations
337947_recent_content_block.patch8.82 KBIdleFailed on MySQL 5.0 ISAM, with: 15,259 pass(es), 49 fail(s), and 8 exception(es).View details | Re-test

#53

System Message - October 31, 2009 - 05:35
Status:needs review» needs work

The last submitted patch failed testing.

#54

System Message - November 21, 2009 - 17:52
Status:needs work» needs review

axyjo requested that failed test be re-tested.

#55

axyjo - November 21, 2009 - 17:53

Just want to see which ones still are broken so I can help out with fixing them.

#56

System Message - November 21, 2009 - 18:11
Status:needs review» needs work

The last submitted patch failed testing.

#57

axyjo - November 21, 2009 - 19:49

Currently working on it, but I have to go sleep now. I'll continue tomorrow.

#58

chx - November 21, 2009 - 22:20

Hm dont , I will post it... Bojhan / webchick asked for it. What I see is that all is well but the test is not adjusted for titles as translateable fields.

#59

chx - November 21, 2009 - 22:27
Status:needs work» needs review

Well, almost all titles were, just one assert slipped through and a link pointed to an admin screen that moved meanwhile. Easy fix.

AttachmentSizeStatusTest resultOperations
recent_content.patch11 KBIdleFailed on MySQL 5.0 ISAM, with: 15,304 pass(es), 5 fail(s), and 0 exception(es).View details | Re-test

#60

System Message - November 21, 2009 - 23:51
Status:needs review» needs work

The last submitted patch failed testing.

#61

chx - November 22, 2009 - 07:22
Status:needs work» needs review

So what about this?

AttachmentSizeStatusTest resultOperations
recent_content.patch11.08 KBIdlePassed on all environments.View details | Re-test

#62

webchick - November 22, 2009 - 22:08

Here are screenshots:

Recent Content Block:
Block

Recent Content Block settings page:
Block settings

#63

yoroy - November 22, 2009 - 22:14
Status:needs review» needs work

Ok great, we've got a functional patch again. Now let's compare it to the proposed design:

- Author name is missing, should link to account page (when you have permission to do so
- The 'time ago' info is less important, we can remove it.
- 'Show all' link to the content page is missing
- Header wants to have a linked 'content' , to the same content listing in there.

#64

webchick - November 22, 2009 - 22:27

I think enough of the scaffolding is here that we could give this to a newish contributor to finish up. Not quite a "novice" patch, but should be doable by anyone with a little bit of PHP skills.

#65

cweagans - November 23, 2009 - 05:13
Assigned to:Anonymous» cweagans

I'll be moving this forward. Back in a couple hours with results.

#66

CodyCraven - November 23, 2009 - 05:32
Assigned to:cweagans» Anonymous

Based on http://drupal.org/files/issues/recent_content_0.patch

Done:

  • Removed time ago.
  • Added author name, ran through theme_username(). May want to look at selecting user in query instead of calling load_user() if there is a difference in performance (see node_block_view()), although I prefer to use functions available if there isn't a difference for maintainability.

Still to do:

  • 'Show all' link to the content page is missing
  • Header wants to have a linked 'content' , to the same content listing in there.

I could really use some clarification on what "Header wants to have a linked 'content' , to the same content listing in there." means.

AttachmentSizeStatusTest resultOperations
recent_content.patch11.58 KBIdleInvalid patch format in recent_content_1.patch.View details | Re-test

#67

CodyCraven - November 23, 2009 - 05:46
Status:needs work» needs review

Test submitted patch...

#68

CodyCraven - November 23, 2009 - 05:51
Assigned to:Anonymous» CodyCraven

#69

System Message - November 23, 2009 - 06:01
Status:needs review» needs work

The last submitted patch failed testing.

#70

CodyCraven - November 23, 2009 - 07:06
Status:needs work» needs review

CVS settings in Eclipse were set to platform default line endings - this should be fixed

AttachmentSizeStatusTest resultOperations
recent_content.patch11.05 KBIdleUnable to apply patch recent_content_2.patchView details | Re-test

#71

System Message - November 23, 2009 - 07:21
Status:needs review» needs work

The last submitted patch failed testing.

#72

webchick - November 23, 2009 - 07:27

That vague error usually means that your checkout of Drupal 7 is out of date, and things have moved too fast and it no longer knows how to apply your patch. Could you try updating your source tree (somewhere under the Team menu in Eclipse) and try again?

#73

CodyCraven - November 23, 2009 - 15:34
AttachmentSizeStatusTest resultOperations
recent_content.patch12.02 KBIdlePassed on all environments.View details | Re-test

#74

CodyCraven - November 23, 2009 - 15:35
Status:needs work» needs review

#75

Damien Tournoud - November 23, 2009 - 16:00

Do we really need this block to be enabled on Garland by default? I would sleep better without those ugly:

<?php
+    // Remove the "recent content" block because it will mess up our assertions
+    // later on if enabled.
+    db_delete('block')
+      ->
condition('module', 'node')
+      ->
condition('delta', 'recent')
+      ->
execute();
?>

#76

CodyCraven - November 23, 2009 - 16:49

I agree.

Pulled all of the hacks from the other hooks and removed the addition to the install profile so that the block will not be shown by default in Garland.

AttachmentSizeStatusTest resultOperations
recent_content.patch7.04 KBIdleUnable to apply patch recent_content_4.patchView details | Re-test

#77

CodyCraven - November 23, 2009 - 16:52

Last patch did not have root directory set correctly.

AttachmentSizeStatusTest resultOperations
recent_content.patch7.12 KBIdleFailed on MySQL 5.0 ISAM, with: 15,263 pass(es), 48 fail(s), and 96 exception(es).View details | Re-test

#78

System Message - November 23, 2009 - 17:11
Status:needs review» needs work

The last submitted patch failed testing.

#79

CodyCraven - November 23, 2009 - 17:17

Need to modify test cases.

#80

cwgordon7 - November 25, 2009 - 00:45

Just a few thoughts. I believe the original premise of the patch was to improve usability, and solve the "disappearing node" problem. This aim is neutralized by not enabling the block on a default installation. I don't know that this is necessarily the right answer - it could be confusing for new users, but evidence suggests that the current system is flawed.

The real solution for the ugly code in the test cases would be to have a separate "test" install profile, which would set up a "clean" Drupal installation. Ideally SimpleTest would allow us to choose the install profile to use, too, on a per-test-case basis. But that belongs in a separate issue.

To limit this issue in scope, I'd like to propose that the usability concerns here be discussed a bit further to clarify whether or not we want the block enabled in the default profile. Any minor code ugliness caused in test cases as a side effect are a fault of the testing framework, not of the usability patch.

#81

webchick - November 25, 2009 - 00:59

cwgordon: Since then, I committed the patch to allow multiple users to see the admin/content page, based on a permission. I believe that addresses the "where did my content go?" problem better than this block. I'd advocate removing it from being visible by default.

#82

cwgordon7 - November 25, 2009 - 01:07

Have usability studies (formal or informal) shown that users know to look for their newly created pages at admin/content? I don't think that permissions was the primary issue here. I'm in favor of having the block enabled/visible by default, but I'll defer to webchick's opinion, of course. :)

#83

webchick - November 25, 2009 - 01:18

Unfortunately, we don't have a lot in the way of user testing of Drupal 7's UI yet. But admin/content is *way* more prevalent than admin/content/node used to be, so chances are much higher they will see it.

We really only have the "Where did my content go?" problem for page nodes. I would like to solve that with a toggle in the content type settings to make "Provide a menu item" default to TRUE on certain content types. Not for this issue, though.

#84

yoroy - November 25, 2009 - 01:22

webchick, cwgordon: this block is specifically intended as a *dashboard* block, enabled in the default install profile. It's not specifically about fixing 'where's my content' anymore.

#85

yoroy - November 25, 2009 - 16:16
Title:Add a 'recent content block'» Add a 'recent content block' for use on the dashboard

Changing title to clarify what we are making this block for.

Edit: and this is the design phase that got us here: #614410: Patterns for recent-items-blocks on the dashboard

#86

CodyCraven - November 25, 2009 - 16:21

Block is missing a lot of functionality.

Todo:

  • Modify default install profile to set block to 'Dashboard main' below 'Management' block in Seven theme
  • Format node items in a table instead of unordered list
  • Append 'new' flag to node titles for content new to the user
  • Add edit and delete links for each node based on user privileges
  • Use JavaScript to hide edit and delete links and show upon hover of corresponding row?
  • Add 'Show all content' link after item nodes
    Note: 'Thingnames' support was dropped from specs see webchick's comment
  • Completely rewrite tests

#87

CodyCraven - November 26, 2009 - 06:43

Update

Todo:

  • Modify default install profile to set block to 'Dashboard main' below 'Management' block in Seven theme
  • Format node items in a table instead of unordered list
    Could really use some feedback based on the current table layout
  • Append 'new' flag to node titles for content new to the user
    Note: Also applies updated via theme_mark()
  • Add edit and delete links for each node based on user privileges
  • Use JavaScript to hide edit and delete links and show upon hover of corresponding row?
  • Add 'Show all content' link after item nodes
    Note: 'Thingnames' support was dropped from specs see webchick's comment
  • Completely rewrite tests
    Note: Put off for further review as to which tests should be written

Todo after above is complete:

  • Abstract functionality in to separate functions for future use, most likely by contributed modules.
  • Make themeable by placing output functionality in to a theme function.

AttachmentSizeStatusTest resultOperations
recent_content.patch4.29 KBIdlePassed on all environments.View details | Re-test

#88

CodyCraven - November 26, 2009 - 06:43
Status:needs work» needs review

#89

CodyCraven - November 26, 2009 - 15:56

Screen shot of block attached to get feedback on what I should do about the themeing.

AttachmentSizeStatusTest resultOperations
recent-block-screenshot.png80.35 KBIgnoredNoneNone

#90

CodyCraven - November 26, 2009 - 16:36

Todo:

  • Format node items in a table instead of unordered list
    Could really use some feedback based on the current table layout
    http://drupal.org/files/issues/recent-block-screenshot.png
  • Add edit and delete links for each node based on user privileges
  • Use JavaScript to hide edit and delete links and show upon hover of corresponding row
  • Abstract functionality in to separate functions for future use, most likely by contributed modules.
  • Make themeable by placing output functionality in to a theme function.
  • Completely rewrite tests
    Note: Put off for further review as to which tests should be written
AttachmentSizeStatusTest resultOperations
recent_content.patch4.4 KBIdlePassed on all environments.View details | Re-test

#91

Dries - November 26, 2009 - 19:10
Issue tags:+Favorite-of-Dries

I really like where this is going. Tagging it as a favorite.

I'd love to see us do a similar block for recent comments too.

#92

seutje - November 26, 2009 - 20:06
Issue tags:-Favorite-of-Dries

# Use JavaScript to hide edit and delete links and show upon hover of corresponding row

I think this would look rather weird in a small width with long titles, either way you do it:
- if you make it retain it's width and space in the table, half of the table will be filled with empty space
- if you don't make it retain it's width and space in the table, and you put the hover on the row (not the cell because you aren't able to hover it then), then the text will wrap and not wrap on mouseenter/mouseleave

+          // TODO: Output is currently UGLY! Need to have "table" attached to heading
+          // to match http://img.skitch.com/20091028-mu8je3f7i9f5giyhbyyiaeg35s.png
+
          // TODO: Valign top edit and delete columns

to attach the table, you're probably going to have to do some ugly stuff if you want to avoid overriding default padding on the block content area
quick stab:

#dashboard #block-node-recent div.content {
  padding: 0 0 5px 1px;
}

that makes it look like this on FF & webkit and should hold up on IE, but didn't try

it certainly beats something like

#dashboard #block-node-recent table {
  margin-top: -10px;
  position: absolute;
  left: 1px;
  width: 99.9%;
}

that's just ugly and doesn't work on small widths

question is, where does it go?

also tested permissions, and they looked good, I just noticed how messed up the dashboard page looks to a user with only that permission, but that's entirely unrelated to this issue :P

#93

seutje - November 26, 2009 - 20:07
Issue tags:+Favorite-of-Dries

oopsie, didn't mean to deprive you of your dreams

#94

CodyCraven - November 27, 2009 - 08:13

#dashboard #block-node-recent div.content {
  padding: 0 0 5px 1px;
}

seutje, the code above looks great, I tested in IE8. I added the code to dashboard.css at the end of the file - as there are no other *specific* block overrides. The reason I chose to add the code to dashboard.css is that the .content padding is defined within the dashboard.css and not within a theme. Thus it will be up to themes to account for the styling of this block should their global settings not result in an aesthetically pleasing result.

Spurred by the input of seutje, I am debating whether the operation links (edit and delete) should be hidden with JavaScript and shown on hover. I see a lot of potential hangups with this sort of display. The most critical being that I think this would actually reduce usability as you would have to hover the line to see if you can act on the node - kind of like navigation that doesn't list what it is until you hover it (circa 2000 web design).

Todo

  • Format node items in a table instead of unordered list
  • Finalize whether JavaScript should be used to hide edit and delete links and show upon hover of corresponding row
  • Abstract functionality in to separate functions for future use, most likely by contributed modules.
  • Make themeable by placing output functionality in to a theme function.
  • Completely rewrite tests
    Note: Put off for further review as to which tests should be written

Totally unrelated: /me feels special that Dries favorites my work

AttachmentSizeStatusTest resultOperations
recent_content.patch5.73 KBIdlePassed on all environments.View details | Re-test

#95

System Message - November 27, 2009 - 08:31
Status:needs review» needs work

The last submitted patch failed testing.

#96

seutje - November 27, 2009 - 10:04

Note: for RTL display you might want to reverse padding: 0 0 5px 1px; to padding: 0 1px 5px 0; but I'm not entirely sure on that

+    case 'recent':
+      if (user_access('access content')) {
+        $block['subject'] = t('Recent content');
+        $block['content'] = theme('node_recent_block');
+      }

wouldn't it be better to have the block content callback load the data and pass it as a part of the argument passed to theme_node_recent_block? It feels weird right now, as the theming functioning is also responsible for fetching the data...

+  foreach (node_get_recent($number) as $node) {
+    $item = array(l($node->title, 'node/' . $node->nid)
+      . theme('mark', array('type' => node_mark($node->nid, $node->changed)))
+      . '<br />' . theme('username', array('account' => user_load($node->uid))));
+    $item[] = node_access('update', $node) ? l(t('edit'), 'node/' . $node->nid . '/edit') : '';
+    $item[] = node_access('delete', $node) ? l(t('delete'), 'node/' . $node->nid . '/delete') : '';
+    $items[] = $item;
+  }

Also, can we drop that <br />? just wrap the node title and the username in divs if you must, BRs are annoying to style and enforce height, DIVs would be much nicer and easier to override with some padding or margin...

#97

System Message - November 27, 2009 - 14:30
Status:needs work» needs review

yoroy requested that failed test be re-tested.

#98

System Message - November 27, 2009 - 14:41
Status:needs review» needs work

The last submitted patch failed testing.

#99

System Message - November 27, 2009 - 15:52
Status:needs work» needs review

CodyCraven requested that failed test be re-tested.

#100

CodyCraven - November 27, 2009 - 17:34

seutje, there isn't a dashboard-rtl.css so I do not know if there is a separate style to apply for right to left support.

I agree on both themeing points and will have them in the next patch. Should we apply any classes to the title and/or username divs? I hate to add any classes when I am not positive about their properness so that I do not make things more difficult for themers down the road.

#101

CodyCraven - November 27, 2009 - 18:52

Does anyone have any input as to whether JavaScript should be used to show operation links (edit and delete) on hover?

#102

seutje - November 27, 2009 - 21:10

I'd advise against it, it makes no sense to me and can only introduce problems

if u do go for a hover thingy, u might have to rethink the whole "using a table without a thead" thing

#103

CodyCraven - November 27, 2009 - 23:23

New patch based on feedback and discussions with seutje and yoroy, also further fleshes out themeing functions.

Todo

  • Finalize whether JavaScript should be used to hide edit and delete links and show upon hover of corresponding row
    Operations shown on row hover will not be added for usability reasons
  • Finish out a few todos in the patch
  • Completely rewrite tests
    Note: Put off for further review as to which tests should be written
AttachmentSizeStatusTest resultOperations
recent_content.patch6.8 KBIdlePassed on all environments.View details | Re-test

#104

CodyCraven - November 28, 2009 - 19:22

Portions of code that I need input/feedback on to finish up functionality, read comments in each code block:

1: Node retrieval

/**
* Find the most recent nodes that are available to the current user.
*
* @param integer $number
*   (optional) The maximum number of nodes to find. Defaults to 10.
* @return
*   An array of partial node objects or an empty array if there are no recent
*   nodes visible to the current user.
*/
function node_get_recent($number = 10) {
  $nodes = db_select('node', 'n')
    // Are there any other fields which should be returned for this?
    ->fields('n', array('uid', 'nid', 'type', 'status', 'title', 'changed'))
    // Should we set status as a condition? Isn't the point of the
    // module that users do not "lose" content they have created...
    ->condition('status', NODE_PUBLISHED)
    ->orderBy('created', 'DESC')
    ->range(0, $number)
    ->addTag('node_access')
    ->execute()
    ->fetchAll(PDO::FETCH_OBJ);
  return $nodes ? $nodes : array();
}



2: Class for 'Show all content' link - we should apply a class name even if it doesn't provide right alignment so that themers can control it without overriding the theme function

  if ($rows) {
    $output = theme('table', array('rows' => $rows));
   
    // TODO?: Apply a class to this link to match spec
    // see: http://drupal.org/node/337947#comment-2294824
    $output .= l(t('Show all content'), 'admin/content');
  }



3: Classes applied to div tags of themed node names and respective user

  // TODO: Add classes to div blocks to allow themers to modify without
  // overriding theme function, need input on class names to use
  $output = '<div>';
  $output .= l($node->title, 'node/' . $node->nid);
  $output .= theme('mark', array('type' => node_mark($node->nid, $node->changed)));
  $output .= '</div><div>';
  $output .= theme('username', array('account' => user_load($node->uid)));
  $output .= '</div>';

#105

CodyCraven - November 28, 2009 - 03:38

Ok this should be one the final todos.

Todo

  1. Get feedback and implement items needed - see http://drupal.org/node/337947#comment-2313988
  2. Decide which tests should be written - need feedback and recommendations
  3. Write tests

Attached is an updated patch. It is functionally identical to the last (http://drupal.org/node/337947#comment-2313748) but I took it upon myself to clear out some of the todos within the patch as I hadn't received any feedback. I also modified the text for the Recent Content Block Configuration page to make it more understandable and simple. A few comments were also removed.

AttachmentSizeStatusTest resultOperations
recent_content.patch6.2 KBIdlePassed on all environments.View details | Re-test

#106

seutje - November 28, 2009 - 18:37

looks pretty decent to me, one little remark:

+  foreach ($variables['nodes'] as $node) {
+    $cells = array();
+    $cells[] = theme('node_recent_content', array('node' => $node));
+    $cells[] = node_access('update', $node) ? l(t('edit'), 'node/' . $node->nid . '/edit') : '';
+    $cells[] = node_access('delete', $node) ? l(t('delete'), 'node/' . $node->nid . '/delete') : '';
+    $rows[] = $cells;
+  }

so when the user has no access to edit or delete any nodes, he will have 2 empty columns in the table, or am I tripping again?

#107

CodyCraven - November 29, 2009 - 06:04

Nope you are right, I didn't think that part through. New patch to come.

-- Edit --
After reviewing only showing cells for edit and delete if the user has at least one permission for each one, I have found that a somewhat complex loop would be needed to enforce that only the correct cells exist for the theme_table() call.

As a result there are two options that I see:

  1. Leave current functionality as is, where cells are shown even if the user does not have the permission for any of the nodes displayed.
  2. Remove operation cells and use a horizontal list floated right for edit and delete operations.

#108

yoroy - November 29, 2009 - 14:11

I say go for option 1, we did similar with the links on the modules page: #598758: Modules page: add link to its settings page for each module
It allows for consistent layout and alignment even for different permissions

#109

CodyCraven - November 29, 2009 - 19:13

yoroy, thanks for the feedback, we'll go with that option.

I'm also in need of feedback on the three points from http://drupal.org/node/337947#comment-2313988. Once that is received I will only be finishing of up tests and we can commit and close the issue.

#110

eojthebrave - November 29, 2009 - 23:41

With regards to question 1 in #104 I think it would be better to not filter by status. As a site administrator a draft that I create but have not published yet should show up in my recent content block allowing me to quickly find the nodes that I have been working on recently regardless of wether or not they are published.

I suppose making sure that it is apparent in the UI which nodes are not-published would be a good idea.

#111

sun - November 29, 2009 - 23:47

+++ modules/dashboard/dashboard.css 28 Nov 2009 03:36:30 -0000
@@ -113,3 +113,7 @@
\ No newline at end of file

This should not happen. Please always add a newline.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -1994,6 +2000,9 @@

+  $blocks['recent']['info'] = t('Recent content');

(and elsewhere) Trailing white-space here (blank lines should be blank).

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+ * Implementation of hook_block_configure().

(and elsewhere) The new standard for hook summaries is:

Implements hook_foo().

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+function node_block_configure($delta = '') {
+  $form = array();
+    if ($delta == 'recent') {

Strange indentation here.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+        '#title' => t('Number of recent content nodes'),

We don't use the term "node" in user-facing text.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+ * @param integer $number
+ *   (optional) The maximum number of nodes to find. Defaults to 10.
+ * @return

(perhaps also elsewhere) There should be a blank PHPDoc line between @param and @return.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+  $nodes = db_select('node', 'n')
+    // Are there any other fields which should be returned for this?
+    ->fields('n', array('uid', 'nid', 'type', 'status', 'title', 'changed'))
...
+    ->execute()
+    ->fetchAll(PDO::FETCH_OBJ);

You only should define 'nid' here and do ->fetchCol() after execute() instead.

Afterwards, you do

$nodes = node_load_multiple($nids);

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+    // Should we set status as a condition? Isn't the point of the
+    // module that users do not "lose" content they have created...
+    ->condition('status', NODE_PUBLISHED)

We need to dynamically apply this condition depending on whether the current user has the "by-pass node access" permission.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+    ->orderBy('created', 'DESC')

I believe this condition should be 'changed', not 'created'.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+    $cells = array();
+    $cells[] = theme('node_recent_content', array('node' => $node));
+    $cells[] = node_access('update', $node) ? l(t('edit'), 'node/' . $node->nid . '/edit') : '';
+    $cells[] = node_access('delete', $node) ? l(t('delete'), 'node/' . $node->nid . '/delete') : '';
+    $rows[] = $cells;

The common standard in core is:

$row = array();
$row[] = ...;
$row[] = ...;
$rows[] = $row;

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+    // TODO?: Apply a class to this link to match spec
+    // see: http://drupal.org/node/337947#comment-2294824
+
    $output .= l(t('Show all content'), 'admin/content');

Off-hand, I don't know of another link in core that is similar to this.

The most comparable link class is probably ".read-more", but that's entirely different.

I'd suggest to use list-all.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+  else {
+    $output = t('No content available.');
+  }

This should not happen. Instead, node_block_view() should not return anything, so no block is displayed if there is no content.

+++ modules/node/node.module 28 Nov 2009 03:36:30 -0000
@@ -2001,13 +2010,130 @@
+  // TODO: Add classes to div blocks to allow themers to modify without
+  // overriding theme function, need input on class names to use
+  $output = '<div>';

.node-title

.node-author

This review is powered by Dreditor.

#112

CodyCraven - November 30, 2009 - 06:09

Updated patch with all of sun's inputs corrected.

I believe all that is left are tests. Please review and let me know if anything is missing or needs correction.

AttachmentSizeStatusTest resultOperations
recent_content.patch8.3 KBIdlePassed on all environments.View details | Re-test

#113

sun - November 30, 2009 - 11:29

+++ modules/dashboard/dashboard.css 30 Nov 2009 06:06:45 -0000
@@ -113,3 +113,7 @@
+#dashboard #block-node-recent div.content {
+  padding: 0 0 5px 1px;
+}

That is some strange padding. Are you sure this is required? If it really is, then I'd say that we have a styling problem elsewhere in the dashboard.

+++ modules/node/node.module 30 Nov 2009 06:06:46 -0000
@@ -1016,30 +1022,30 @@

+

ok, hehe... I only wanted _you_ to not introduce new trailing white-space, not really to fix the entire file. ;)

That is, because it's more likely now that your patch will fail to be applied when another patch changing another part of node.module will get in.

I hope we are lucky and this won't happen. If it will, then you'll need to re-roll. ;)

+++ modules/node/node.module 30 Nov 2009 06:06:46 -0000
@@ -2006,13 +2015,140 @@
+    case 'recent':
+      if (user_access('access content')) {
+        $block['subject'] = t('Recent content');
+        $block['content'] = theme('node_recent_block', array(
+          'nodes' => node_get_recent(variable_get('node_recent_block_count', 10)),
+        ));
+      }
+      break;

This does not skip the block output if there are no nodes to display.

if (user_access('access content') && ($nodes = node_get_recent(variable_get('node_recent_block_count', 10)))) {
  $block['subject'] = t('Recent content');
  $block['content'] = theme('node_recent_block', array(
    'nodes' => $nodes,
  ));
}

+++ modules/node/node.module 30 Nov 2009 06:06:46 -0000
@@ -2006,13 +2015,140 @@
+ * @param integer $number

We do not specify data types in PHPDoc.

+++ modules/node/node.module 30 Nov 2009 06:06:46 -0000
@@ -2006,13 +2015,140 @@
+  if (!user_access('bypass node access')) {
+    // If the user is able to view their own unpublished nodes, allow them
+    // to see these in addition to published nodes. Check that they actually
+    // have some unpublished nodes to view before adding the condition.
+    if (user_access('view own unpublished content') && $own_unpublished = db_query('SELECT nid FROM {node} WHERE uid = :uid AND status = :status', array(':uid' => $GLOBALS['user']->uid, ':status' => NODE_NOT_PUBLISHED))->fetchCol()) {
+      $query->condition(db_or()
+        ->condition('n.status', NODE_PUBLISHED)
+        ->condition('n.nid', $own_unpublished, 'IN')
+      );
+    }
+    else {
+      // If not, restrict the query to published nodes.
+      $query->condition('n.status', NODE_PUBLISHED);
+    }
+  }

oh nice! Copied from node_admin_content(), I guess :)

This really cries for a helper function...

+++ modules/node/node.module 30 Nov 2009 06:06:46 -0000
@@ -2006,13 +2015,140 @@
+  $rows = array();
...
+  if ($rows) {
+    $output = theme('table', array('rows' => $rows));
...
+  return $output;

$output is not initialized.

+++ modules/node/node.module 30 Nov 2009 06:06:46 -0000
@@ -2006,13 +2015,140 @@
+  $l_options = array('query' => array('destination' => $_GET['q']));

Instead of defining the value for 'query' yourself, you use http://api.drupal.org/api/function/drupal_get_destination/7

This review is powered by Dreditor.

#114

yoroy - November 30, 2009 - 12:47
Status:needs review» needs work

and back to needs work… :)

#115

CodyCraven - November 30, 2009 - 21:31

"That is some strange padding. Are you sure this is required? If it really is, then I'd say that we have a styling problem elsewhere in the dashboard."

I agree. The reason we needed to do this was because the table is supposed to touch the heading. The dashboard.css file defines padding on "#dashboard div.block div.content" that we have to unset.

---

"ok, hehe... I only wanted _you_ to not introduce new trailing white-space, not really to fix the entire file. ;)"

Dries latest commit introduced this white space, I believe. Before I had forgot configure removal of trailing white space in my Eclipse editor on save (recently reinstalled). So if I need to remove this portion I will have to manually remove it. I do update my files before creating patches so that should limit the chance of the patch not being applicable.

---

"This does not skip the block output if there are no nodes to display."

I made all of the changes then had an issue with my merge from the updated CVS file and forgot to add that specific logic back in when I rewrote :\ - corrected in patch

---

"We do not specify data types in PHPDoc."

We do define datatype in phpDoc, it's Drupal's Doxygen that doesn't, I'm having hard time transitioning... - corrected in patch

--

"oh nice! Copied from node_admin_content(), I guess :)"

I totally agree that this needs a helper, and yes - no need to reinvent? :D

---

"$output is not initialized."

Corrected in patch

---

"Instead of defining the value for 'query' yourself..."

Corrected in patch

AttachmentSizeStatusTest resultOperations
recent_content.patch8.32 KBIdlePassed on all environments.View details | Re-test

#116

CodyCraven - November 30, 2009 - 21:33
Status:needs work» needs review

Forgot to set status to 'needs review'

#117

yoroy - November 30, 2009 - 22:40

So, in actually testing this patch, I can't get any content show up in the block.
- Added it to the dashboard
- Ran cron to be sure…
- Created some articles
- The new content is not listed in this block
- Ran cron again…
- No content shown.

Logged in as user/1 on an otherwise unpatched checkout of head. Can somebody duplicate?

#118

seutje - November 30, 2009 - 23:28

@sun

That is some strange padding. Are you sure this is required? If it really is, then I'd say that we have a styling problem elsewhere in the dashboard.

o wow, as I was typing the reason I introduced this I had an epiphany, reset.css and defaults.css both set border-collapse:collapse; but if I disable both of those and have FF fall back to the user-agent default, which is border-collapse:separate;, the issue disappears and the nasty 1px padding is no longer necessary
test and source

so is this an issue in the reset.css and defaults.css and should it be fixed there, or should we override it for this? I'd say the former, but I'm no expert on resets

#119

yoroy - November 30, 2009 - 23:31

Should be fixed over there. There's enough weirdness in Seven's CSS that needs clean up, lets not introduce fixes for that somewhere else (like in here :-)

#120

sun - December 1, 2009 - 04:37

Actually, I can't see why this patch shouldn't work.... didn't test though.

Speaking of tests.... no tests? yoroy wouldn't even have to test something if this patch would ship with its own tests.

+++ modules/dashboard/dashboard.css 30 Nov 2009 21:30:51 -0000
@@ -113,3 +113,7 @@
+#dashboard #block-node-recent div.content {
+  padding: 0 0 5px 1px;
+}

So we want to remove this.

+++ modules/node/node.module 30 Nov 2009 21:30:51 -0000
@@ -2006,13 +2015,141 @@
+        $block['content'] = theme('node_recent_block', array(
+          'nodes' => $nodes,
+        ));

No need to write this on multiple lines now.

This review is powered by Dreditor.

#121

CodyCraven - December 1, 2009 - 04:46

Due to debate of whether the fix to dashboard.css should be included, especially considering UI freeze 12/1, attached are two patches and two screenshots. Also the whitespace fixes from HEAD in node.module (seen in last patch) have been removed.

AttachmentSizeStatusTest resultOperations
with_dashboard_css_mod.png5 KBIgnoredNoneNone
recent_content_with_dashboard_css.patch6.58 KBIdlePassed on all environments.View details | Re-test
without_dashboard_css_mod.png5 KBIgnoredNoneNone
recent_content_without_dashboard_css.patch6.11 KBIdlePassed on all environments.View details | Re-test

#122

seutje - December 1, 2009 - 08:08

@sun

So we want to remove this.

actually, if we want the table to touch the header, we might still want to override the left, right and top padding of the content area as this is the default that dashboard uses:

#dashboard div.block div.content {
  padding:10px 5px 5px;
}

which seems reasonable, and if we drop the left, right and top padding defaults, every block on the dashboard will stick to the header, which I don't think is something we want to default to

#123

CodyCraven - December 2, 2009 - 15:09

So I take it this is dead now that UI freeze is done?

#124

yoroy - December 2, 2009 - 15:29

No, this is critical for a viable dashboard implementation. We have some extra room for selected issues, this will be one of them. Do you need people testing it before you continue?

#125

catch - December 2, 2009 - 15:48

+++ modules/node/node.module 1 Dec 2009 04:44:41 -0000
@@ -2006,13 +2015,141 @@
+      '#options' => drupal_map_assoc(array(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 30)),
+    );

Do we have exactly these numbers elsewhere? Recent comments block maybe? Could be a helper perhaps but not important.

+++ modules/node/node.module 1 Dec 2009 04:44:41 -0000
@@ -2006,13 +2015,141 @@
+/**
+ * Implementation of hook_block_save().
+ */

"Implements".

+++ modules/node/node.module 1 Dec 2009 04:44:41 -0000
@@ -2006,13 +2015,141 @@
+/**
+ * Returns a formatted list of recent nodes to be displayed in the recent content block.
+ *

Exceeds 80 chars. I'd just drop the last 8 words (end with 'nodes').

Screenshot looks lovely. Agreed with sun that this could use some tests - ought to be as little as creating some content then visiting the dashboard.

This review is powered by Dreditor.

#126

CodyCraven - December 2, 2009 - 17:49

Do we have exactly these numbers elsewhere? Recent comments block maybe? Could be a helper perhaps but not important.

Yes, these numbers are from comment.module.

I'll fix the comments.

Also, I absolutely want to write the tests for this. I have a short contract in progress right now so I will need some time to get the tests written.

#127

axyjo - December 2, 2009 - 20:00

I'll try to start to write tests for this.

#128

axyjo - December 2, 2009 - 20:45

This patch uses the 'without_dashboard_css' as its base as I think that it's a separate issue altogether. I also think that the helper for the common numbers is a separate issue, so I didn't work on that in this patch. The test is *largely* based off the recent comments test, so it probably will fail with this patch.

AttachmentSizeStatusTest resultOperations
337947-axyjo-128.patch9.91 KBTest request sentNoneView details
 
 

Drupal is a registered trademark of Dries Buytaert.