Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
feat: demo dynamic list-of-links sourcing
Browse files Browse the repository at this point in the history
  • Loading branch information
apetro committed Mar 14, 2018
1 parent 6df3847 commit 8d94549
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 59 deletions.
40 changes: 10 additions & 30 deletions mock-portal/src/main/webapp/api/marketplace/entries.json
Original file line number Diff line number Diff line change
Expand Up @@ -10589,43 +10589,18 @@
"layoutObject": {
"nodeId": "-1",
"title": "Public MyUW",
"description": "Public views on MyUW.",
"description": "Public views on MyUW. Demonstrates sourcing list-of-links content from URL rather than from portlet-preference.",
"url": "https://public.my.wisc.edu",
"iconUrl": null,
"faIcon": "fa-thumbs-up",
"fname": "public-myuw",
"target": "_blank",
"widgetURL": null,
"widgetURL": "/web/staticFeeds/public-myuw-list-of-links.json",
"widgetType": "list-of-links",
"widgetTemplate": null,
"widgetConfig": {
"launchText": "Open website",
"links": [
{
"href": "https://public.predev.my.wisc.edu",
"icon": "fa-clock-o",
"target": "_blank",
"title": "predev"
},
{
"href": "https://public.test.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "Test"
},
{
"href": "https://public.qa.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "QA"
},
{
"href": "https://public.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "Production"
}
]
"getLinksURL": "true"
},
"staticContent": "<p>Placeholder static content.</p>",
"pithyStaticContent": null,
Expand Down Expand Up @@ -10658,11 +10633,16 @@
"public"
],
"fname": "public-myuw",
"description": "Public views on MyUW.",
"description": "Public views on MyUW. Demonstrates sourcing list-of-links content from URL rather than from portlet-preference.",
"name": "Public MyUW",
"id": "10001",
"type": "Portlet",
"target": "_blank"
"target": "_blank",
"widgetConfig": {
"launchText": "Open website",
"getLinksURL": "true"
},
"widgetURL": "/web/staticFeeds/public-myuw-list-of-links.json"
}
]
}
33 changes: 4 additions & 29 deletions mock-portal/src/main/webapp/api/marketplace/entry/public-myuw.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"categories": [
"Work"
],
"description": "Public views on MyUW.",
"description": "Public views on MyUW. Demonstrates sourcing list-of-links content from URL rather than from portlet-preference.",
"faIcon": "fa-thumbs-up",
"fname": "public-myuw",
"id": "10001",
Expand All @@ -15,7 +15,7 @@
],
"layoutObject": {
"altMaxUrl": true,
"description": "Public views on MyUW.",
"description": "Public views on MyUW. Demonstrates sourcing list-of-links content from URL rather than from portlet-preference.",
"faIcon": "fa-thumbs-up",
"fname": "public-myuw",
"iconUrl": null,
Expand All @@ -30,36 +30,11 @@
"url": "https://public.my.wisc.edu",
"widgetConfig": {
"launchText": "Open website",
"links": [
{
"href": "https://public.predev.my.wisc.edu",
"icon": "fa-clock-o",
"target": "_blank",
"title": "predev"
},
{
"href": "https://public.test.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "Test"
},
{
"href": "https://public.qa.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "QA"
},
{
"href": "https://public.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "Production"
}
]
"getLinksURL": "true"
},
"widgetTemplate": null,
"widgetType": "list-of-links",
"widgetURL": null
"widgetURL": "/web/staticFeeds/public-myuw-list-of-links.json"
},
"lifecycleState": "PUBLISHED",
"marketplaceScreenshots": [
Expand Down
30 changes: 30 additions & 0 deletions web/src/main/webapp/staticFeeds/public-myuw-list-of-links.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"content": {
"links": [
{
"href": "https://public.predev.my.wisc.edu",
"icon": "fa-clock-o",
"target": "_blank",
"title": "predev"
},
{
"href": "https://public.test.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "Test"
},
{
"href": "https://public.qa.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "QA"
},
{
"href": "https://public.my.wisc.edu",
"icon": "fa-calendar-times-o",
"target": "_blank",
"title": "Production"
}
]
}
}

0 comments on commit 8d94549

Please sign in to comment.