Page Properties Missing Resources Path

The docs ay there should be a {{page.resourcesPath}} in rw.page.
But it’s not present? See attached image


.

Obviously some other stuff missing as well, and published seems incorrect, as it isn’t .

const logAllProperties = (obj, depth = 0) => {
        if (depth > 5) return; 
        Object.keys(obj).forEach(key => {
            const value = obj[key];
            if (typeof value === 'object' && value !== null) {
                console.log(' '.repeat(depth * 2) + key + ': {');
                logAllProperties(value, depth + 1);
                console.log(' '.repeat(depth * 2) + '}');
            } else {
                console.log(' '.repeat(depth * 2) + key + ':', value);
            }
        });
    };

    console.log('Logging all properties of rw.page:');
    logAllProperties(rw.page);

Okay, we’re looking into this one now…

@Doobox This should all be fixed and updated in Today’s Build, along with a new example component…

There were quite a few things amiss in Elements, and in the manual too - some of it was just old and needed to be tidied up.

Some things to note:

  • isPublished has been renamed to isDraft to avoid any confusion.
  • Page icon now works, and persists after reloading the document.
  • Language is set correctly

The docRootPath is blank if you’re on the home page. For other pages you’ll get a relative path to the site root. I believe this is the correct behavior - let me know if you foresee any issues here.

I’ve updated the docs to reflect all this, Available Data | RapidWeaver Elements Docs

3 Likes