Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

6.4 Sites and Assets List View - How to Display Time as well as Date

Avatar

Level 1

In the sites and assets list view with My Preferences set so "Relative Date Presentation" is set to "Always show exact date", just the Published and Modified Dates display.  We want the date and time displayed (like was available in classic).

The time is available in the <time> element, but not included in what is formatted.

Is there an easy way to get time to also display with an exact date is displayed?

cbcorbett_0-1586358986546.png

 

 

 

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

I wouldn't call the solution easy but you can do this with a bit on JS.

The component which is being used to render the date is <foundation-time> (as you pointed out) which is documented here. As you can see from the documentation, there is a type attribute which must be set to "datetime" in order for the time to be displayed.

Let's now find the source of the preview. If you jump into CRX DE you will find a JSP at /libs/cq/gui/components/coral/admin/page/columnpreview/columnpreview.jsp and as suspected, you will find the following line:

 

<foundation-time value="<%= xssAPI.encodeForHTMLAttr(cqPage.getLastModified().toInstant().toString()) %>"></foundation-time>

 

So how do we force the <foundation-time> elements to display time then?

You can do so a clientlib and MutationObserver.

  1. Create a new clientlib and give it a custom category (eg: demo.datetime)
  2. Add the following JS to the clientlib:

 

(function ($) {

    $(document).on("foundation-contentloaded", function () {

        const TARGET_SELECTOR = "coral-columnview";
        const PREVIEW_TAG_NAME = "CORAL-COLUMNVIEW-PREVIEW";

        const callback = function (mutations) {
            // Check if the preview was updated
            const preview = mutations
                .find(record => [...record.addedNodes]
                    .find(node => node.tagName === PREVIEW_TAG_NAME));

            if (preview) {

                // Update all foundation-time to datetime
                $('foundation-time').each(function () {
                    this.setAttribute("type", "datetime");
                });
            }
        };

        const observer = new MutationObserver(callback);

        // Observe the while column view
        const target = document.querySelector(TARGET_SELECTOR);

        // Listen only to updates in children
        const config = {childList: true};

        // Start observation
        if (target) {

            observer.observe(target, config);
        } else {
            console.error("Could not observe " + TARGET_SELECTOR);
        }
    });
})(Granite.$);

​

 

I've been generous with the comments 

  • Load the clientlib onto the desired page. eg: for sites.html (the Sites page browser)
    1. Overlay /libs/wcm/core/content/sites/jcr:content/head/clientlibs to /apps/wcm/core/content/sites/jcr:content/head/clientlibs
    2. Add the demo.datetime category to the list of clientlibs

Tada! Every time we click on a page, the observer triggers the callback which sets all the Modified field to datetime format!

Here is the result:

Peek 2020-04-09 14-57.gif

 

Of course this only works on Sites and in Column View, if you want the same behaviour on a different page and/or view, you'll need to add the clientlib in the right places and change the selectors in the JS

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Hi,

I wouldn't call the solution easy but you can do this with a bit on JS.

The component which is being used to render the date is <foundation-time> (as you pointed out) which is documented here. As you can see from the documentation, there is a type attribute which must be set to "datetime" in order for the time to be displayed.

Let's now find the source of the preview. If you jump into CRX DE you will find a JSP at /libs/cq/gui/components/coral/admin/page/columnpreview/columnpreview.jsp and as suspected, you will find the following line:

 

<foundation-time value="<%= xssAPI.encodeForHTMLAttr(cqPage.getLastModified().toInstant().toString()) %>"></foundation-time>

 

So how do we force the <foundation-time> elements to display time then?

You can do so a clientlib and MutationObserver.

  1. Create a new clientlib and give it a custom category (eg: demo.datetime)
  2. Add the following JS to the clientlib:

 

(function ($) {

    $(document).on("foundation-contentloaded", function () {

        const TARGET_SELECTOR = "coral-columnview";
        const PREVIEW_TAG_NAME = "CORAL-COLUMNVIEW-PREVIEW";

        const callback = function (mutations) {
            // Check if the preview was updated
            const preview = mutations
                .find(record => [...record.addedNodes]
                    .find(node => node.tagName === PREVIEW_TAG_NAME));

            if (preview) {

                // Update all foundation-time to datetime
                $('foundation-time').each(function () {
                    this.setAttribute("type", "datetime");
                });
            }
        };

        const observer = new MutationObserver(callback);

        // Observe the while column view
        const target = document.querySelector(TARGET_SELECTOR);

        // Listen only to updates in children
        const config = {childList: true};

        // Start observation
        if (target) {

            observer.observe(target, config);
        } else {
            console.error("Could not observe " + TARGET_SELECTOR);
        }
    });
})(Granite.$);

​

 

I've been generous with the comments 

  • Load the clientlib onto the desired page. eg: for sites.html (the Sites page browser)
    1. Overlay /libs/wcm/core/content/sites/jcr:content/head/clientlibs to /apps/wcm/core/content/sites/jcr:content/head/clientlibs
    2. Add the demo.datetime category to the list of clientlibs

Tada! Every time we click on a page, the observer triggers the callback which sets all the Modified field to datetime format!

Here is the result:

Peek 2020-04-09 14-57.gif

 

Of course this only works on Sites and in Column View, if you want the same behaviour on a different page and/or view, you'll need to add the clientlib in the right places and change the selectors in the JS