Skip to content

Commit 30cba4d

Browse files
authored
Merge pull request #1499 from Sandeep-FED/feat-feedback-customizer
2 parents 2ce6967 + ab9130d commit 30cba4d

11 files changed

Lines changed: 1159 additions & 1120 deletions

File tree

samples/react-application-customizer-feedback-widget/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Create a SharePoint custom list Feedbacks in the SPO site where this application
4747
| Employee_Name | Text |
4848
| Comment | Multi-line Text |
4949

50+
> Note: Enable Ratings column for the list.
51+
5052
> **Optional:** Unhide the default column `Created` to capture the submitted date.
5153
5254
## Contributors🧑‍💻
@@ -59,6 +61,7 @@ Create a SharePoint custom list Feedbacks in the SPO site where this application
5961
| ------- | ---------------- | --------------- |
6062
| 1.0 | July 02, 2023 | Initial release |
6163
| 1.1 | April 10, 2025 | Version upgrade to SPFx 1.20.0 & other improvements |
64+
| 1.2 | May 23, 2025 | Implement Ratings & change position of widget based on property configuration |
6265

6366
## Minimal Path to Awesome⚡
6467

@@ -71,11 +74,10 @@ Create a SharePoint custom list Feedbacks in the SPO site where this application
7174
## Debug URL for Testing
7275

7376
```javascript
74-
?debugManifestsFile=https%3A%2F%2Flocalhost%3A4321%2Ftemp%2Fmanifests.js&loadSPFX=true&customActions=%7B%2233ce42af-1748-4989-ab97-a8d9f782b886%22%3A%7B%22location%22%3A%22ClientSideExtension.ApplicationCustomizer%22%2C%22properties%22%3A%7B%22testMessage%22%3A%22Test+message%22%7D%7D%7D
77+
?debugManifestsFile=https%3A%2F%2Flocalhost%3A4321%2Ftemp%2Fmanifests.js&loadSPFX=true&customActions=%7B"33ce42af-1748-4989-ab97-a8d9f782b886"%3A%7B"location"%3A"ClientSideExtension.ApplicationCustomizer"%2C"properties"%3A%7B"title"%3A"Submit+your+feedbacks+%26+ideas"%2C"position"%3A"rightBottom"%7D%7D%7D
7578
```
7679
77-
## Deploy Package Solution 🚀
78-
80+
## Deploy Package Solution
7981
- Ensure that you are at the solution folder
8082
- in the command-line run:
8183
- `gulp build --ship`

samples/react-application-customizer-feedback-widget/assets/sample.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"An SPFx Application Customizer Extension placed in the bottom placeholder which allows users to input their feedbacks without scrolling down to the end of the page."
1010
],
1111
"creationDateTime": "2023-07-02",
12-
"updateDateTime": "2023-07-02",
12+
"updateDateTime": "2025-05-25",
1313
"products": [
1414
"SharePoint"
1515
],
@@ -20,7 +20,7 @@
2020
},
2121
{
2222
"key": "SPFX-VERSION",
23-
"value": "1.16.1"
23+
"value": "1.20.2"
2424
}
2525
],
2626
"tags": [],

samples/react-application-customizer-feedback-widget/config/package-solution.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"solution": {
44
"name": "feedback-customizer-client-side-solution",
55
"id": "c66c6f38-3920-41b8-849d-3383aa467780",
6-
"version": "1.1.0.0",
6+
"version": "1.2.0.0",
77
"includeClientSideAssets": true,
88
"skipFeatureDeployment": true,
99
"isDomainIsolated": false,
@@ -30,7 +30,7 @@
3030
"title": "Application Extension - Deployment of custom action",
3131
"description": "Deploys a custom action with ClientSideComponentId association",
3232
"id": "062f8d82-ce8f-4035-b0ce-6cba7de74232",
33-
"version": "1.1.0.0",
33+
"version": "1.2.0.0",
3434
"assets": {
3535
"elementManifests": ["elements.xml", "ClientSideInstance.xml"]
3636
}

samples/react-application-customizer-feedback-widget/config/serve.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,25 @@
44
"https": true,
55
"serveConfigurations": {
66
"default": {
7-
"pageUrl": "https://m365x44410739.sharepoint.com/sites/PRIDE-EmployeeResourceGroup",
7+
"pageUrl": "https://spl7c.sharepoint.com/sites/WelcomeWorks_OG",
88
"customActions": {
99
"33ce42af-1748-4989-ab97-a8d9f782b886": {
1010
"location": "ClientSideExtension.ApplicationCustomizer",
1111
"properties": {
12-
"testMessage": "Test message"
12+
"title": "Submit your feedbacks & ideas",
13+
"position": "rightBottom"
1314
}
1415
}
1516
}
1617
},
1718
"feedback": {
18-
"pageUrl": "https://m365x44410739.sharepoint.com/sites/PRIDE-EmployeeResourceGroup",
19+
"pageUrl": "https://spl7c.sharepoint.com/sites/WelcomeWorks_OG",
1920
"customActions": {
2021
"33ce42af-1748-4989-ab97-a8d9f782b886": {
2122
"location": "ClientSideExtension.ApplicationCustomizer",
2223
"properties": {
23-
"testMessage": "Test message"
24+
"title": "Submit your feedbacks & ideas",
25+
"position": "rightBottom"
2426
}
2527
}
2628
}

0 commit comments

Comments
 (0)