eionet2-dashboard 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/.fx/configs/azure.parameters.Prod_EEA.json +15 -0
  2. package/.fx/configs/azure.parameters.dev.json +15 -0
  3. package/.fx/configs/config.Prod_EEA.json +10 -0
  4. package/.fx/configs/config.dev.json +10 -0
  5. package/.fx/configs/projectSettings.json +83 -0
  6. package/.fx/states/state.Prod_EEA.json +47 -0
  7. package/.fx/states/state.dev.json +47 -0
  8. package/.vscode/launch.json +91 -0
  9. package/.vscode/settings.json +6 -0
  10. package/.vscode/tasks.json +63 -0
  11. package/CHANGELOG.md +140 -0
  12. package/Jenkinsfile +166 -0
  13. package/LICENSE.md +9 -0
  14. package/README.md +55 -0
  15. package/api/.funcignore +11 -0
  16. package/api/extensions.csproj +11 -0
  17. package/api/getGraphData/function.json +27 -0
  18. package/api/getGraphData/index.js +147 -0
  19. package/api/host.json +11 -0
  20. package/api/package-lock.json +1546 -0
  21. package/api/package.json +17 -0
  22. package/api/proxies.json +4 -0
  23. package/package.json +25 -0
  24. package/tabs/.env.teamsfx.Prod_EEA +11 -0
  25. package/tabs/.env.teamsfx.dev +11 -0
  26. package/tabs/.eslintrc.json +48 -0
  27. package/tabs/.prettierrc +7 -0
  28. package/tabs/.stylelintrc.json +6 -0
  29. package/tabs/babel.config.js +3 -0
  30. package/tabs/package-lock.json +15564 -0
  31. package/tabs/package.json +88 -0
  32. package/tabs/public/auth-end.html +76 -0
  33. package/tabs/public/auth-start.html +178 -0
  34. package/tabs/public/deploy.png +0 -0
  35. package/tabs/public/favicon.ico +0 -0
  36. package/tabs/public/hello.png +0 -0
  37. package/tabs/public/index.html +20 -0
  38. package/tabs/public/publish.png +0 -0
  39. package/tabs/src/components/App.jsx +36 -0
  40. package/tabs/src/components/CustomColumnResizeIcon.jsx +68 -0
  41. package/tabs/src/components/CustomDrawer.jsx +51 -0
  42. package/tabs/src/components/EventDialogTitle.jsx +29 -0
  43. package/tabs/src/components/HtmlBox.jsx +18 -0
  44. package/tabs/src/components/Privacy.jsx +17 -0
  45. package/tabs/src/components/ResizableGrid.jsx +44 -0
  46. package/tabs/src/components/Tab.jsx +477 -0
  47. package/tabs/src/components/Tab.scss +138 -0
  48. package/tabs/src/components/TabConfig.jsx +51 -0
  49. package/tabs/src/components/TabPanel.jsx +29 -0
  50. package/tabs/src/components/TermsOfUse.jsx +17 -0
  51. package/tabs/src/components/UnderConstruction.jsx +24 -0
  52. package/tabs/src/components/UserMenu.jsx +109 -0
  53. package/tabs/src/components/_variables.scss +10 -0
  54. package/tabs/src/components/activity/Activity.jsx +301 -0
  55. package/tabs/src/components/activity/ConsultationList.jsx +297 -0
  56. package/tabs/src/components/activity/EventList.jsx +463 -0
  57. package/tabs/src/components/activity/GroupsTags.jsx +26 -0
  58. package/tabs/src/components/activity/Reporting.jsx +13 -0
  59. package/tabs/src/components/activity/activity.scss +153 -0
  60. package/tabs/src/components/event_rating/EventRating.jsx +92 -0
  61. package/tabs/src/components/event_rating/EventRatingDialog.jsx +46 -0
  62. package/tabs/src/components/event_registration/Approval.jsx +80 -0
  63. package/tabs/src/components/event_registration/ApprovalDialog.jsx +30 -0
  64. package/tabs/src/components/event_registration/ApprovalList.jsx +62 -0
  65. package/tabs/src/components/event_registration/EventRegistration.jsx +214 -0
  66. package/tabs/src/components/lib/useData.js +33 -0
  67. package/tabs/src/components/lib/useGraph.js +39 -0
  68. package/tabs/src/components/lib/useTeamsFx.js +55 -0
  69. package/tabs/src/components/my_country/AtAGlance.jsx +151 -0
  70. package/tabs/src/components/my_country/CountryProgress.jsx +92 -0
  71. package/tabs/src/components/my_country/DataReporters.jsx +13 -0
  72. package/tabs/src/components/my_country/GroupView.jsx +54 -0
  73. package/tabs/src/components/my_country/GroupsBoard.jsx +52 -0
  74. package/tabs/src/components/my_country/IndicatorCard.jsx +60 -0
  75. package/tabs/src/components/my_country/ManagementBoard.jsx +109 -0
  76. package/tabs/src/components/my_country/MyCountry.jsx +186 -0
  77. package/tabs/src/components/my_country/ProgressGauge.jsx +125 -0
  78. package/tabs/src/components/my_country/ScientificCommittee.jsx +13 -0
  79. package/tabs/src/components/my_country/YearlyProgress.jsx +41 -0
  80. package/tabs/src/components/my_country/my_country.scss +81 -0
  81. package/tabs/src/components/publications/Publications.jsx +13 -0
  82. package/tabs/src/components/self_service/UserEdit.jsx +334 -0
  83. package/tabs/src/components/self_service/UserEdit.scss +107 -0
  84. package/tabs/src/data/apiProvider.js +153 -0
  85. package/tabs/src/data/constants.json +7 -0
  86. package/tabs/src/data/hooks/useConfiguration.js +18 -0
  87. package/tabs/src/data/icsHelper.js +38 -0
  88. package/tabs/src/data/messages.json +39 -0
  89. package/tabs/src/data/provider.js +199 -0
  90. package/tabs/src/data/selfServiceProvider.js +59 -0
  91. package/tabs/src/data/selfServiceSharepointProvider.js +68 -0
  92. package/tabs/src/data/sharepointProvider.js +729 -0
  93. package/tabs/src/data/validator.js +25 -0
  94. package/tabs/src/data/validator.test.js +9 -0
  95. package/tabs/src/index.css +16 -0
  96. package/tabs/src/index.jsx +6 -0
  97. package/tabs/src/static/images/teams-icon.svg +1 -0
  98. package/tabs/src/utils/uiHelper.js +6 -0
  99. package/templates/appPackage/aad.template.json +133 -0
  100. package/templates/appPackage/manifest.template.json +58 -0
  101. package/templates/appPackage/resources/color.png +0 -0
  102. package/templates/appPackage/resources/outline.png +0 -0
  103. package/templates/azure/config.bicep +27 -0
  104. package/templates/azure/main.bicep +20 -0
  105. package/templates/azure/provision/frontendHosting.bicep +23 -0
  106. package/templates/azure/provision/function.bicep +82 -0
  107. package/templates/azure/provision/identity.bicep +14 -0
  108. package/templates/azure/provision/simpleAuth.bicep +44 -0
  109. package/templates/azure/provision.bicep +58 -0
  110. package/templates/azure/teamsFx/function.bicep +76 -0
  111. package/templates/azure/teamsFx/simpleAuth.bicep +43 -0
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
3
+ "contentVersion": "1.0.0.0",
4
+ "parameters": {
5
+ "provisionParameters": {
6
+ "value": {
7
+ "resourceBaseName": "eionet2dasprodf6d33e",
8
+ "m365ClientId": "{{state.fx-resource-aad-app-for-teams.clientId}}",
9
+ "m365ClientSecret": "{{state.fx-resource-aad-app-for-teams.clientSecret}}",
10
+ "m365TenantId": "{{state.fx-resource-aad-app-for-teams.tenantId}}",
11
+ "m365OauthAuthorityHost": "{{state.fx-resource-aad-app-for-teams.oauthHost}}"
12
+ }
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
3
+ "contentVersion": "1.0.0.0",
4
+ "parameters": {
5
+ "provisionParameters": {
6
+ "value": {
7
+ "resourceBaseName": "eionet2dashboard",
8
+ "m365ClientId": "{{state.fx-resource-aad-app-for-teams.clientId}}",
9
+ "m365ClientSecret": "{{state.fx-resource-aad-app-for-teams.clientSecret}}",
10
+ "m365TenantId": "{{state.fx-resource-aad-app-for-teams.tenantId}}",
11
+ "m365OauthAuthorityHost": "{{state.fx-resource-aad-app-for-teams.oauthHost}}"
12
+ }
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "$schema": "https://aka.ms/teamsfx-env-config-schema",
3
+ "description": "You can customize the TeamsFx config for different environments. Visit https://aka.ms/teamsfx-env-config to learn more about this.",
4
+ "manifest": {
5
+ "appName": {
6
+ "short": "Eionet Dashboard",
7
+ "full": "Available to all Eionet users and shows relevant country information & events and consultations"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "$schema": "https://aka.ms/teamsfx-env-config-schema",
3
+ "description": "You can customize the TeamsFx config for different environments. Visit https://aka.ms/teamsfx-env-config to learn more about this.",
4
+ "manifest": {
5
+ "appName": {
6
+ "short": "Eionet2 Dashboard",
7
+ "full": "Eionet2 Dashboard"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "appName": "Eionet2 Dashboard",
3
+ "projectId": "d158b86f-f64a-40dc-94ee-8a05c20f4f36",
4
+ "solutionSettings": {
5
+ "name": "fx-solution-azure",
6
+ "version": "1.0.0",
7
+ "hostType": "Azure",
8
+ "azureResources": [
9
+ "function"
10
+ ],
11
+ "capabilities": [
12
+ "Tab",
13
+ "TabSSO"
14
+ ],
15
+ "activeResourcePlugins": [
16
+ "fx-resource-local-debug",
17
+ "fx-resource-appstudio",
18
+ "fx-resource-cicd",
19
+ "fx-resource-api-connector",
20
+ "fx-resource-aad-app-for-teams",
21
+ "fx-resource-frontend-hosting",
22
+ "fx-resource-identity",
23
+ "fx-resource-simple-auth",
24
+ "fx-resource-function"
25
+ ]
26
+ },
27
+ "version": "2.0.0",
28
+ "isFromSample": false,
29
+ "programmingLanguage": "javascript",
30
+ "defaultFunctionName": "getGraphData",
31
+ "components": [
32
+ {
33
+ "name": "aad-app",
34
+ "provision": true,
35
+ "deploy": true
36
+ },
37
+ {
38
+ "hosting": "azure-storage",
39
+ "name": "teams-tab",
40
+ "build": true,
41
+ "provision": true,
42
+ "folder": "tabs",
43
+ "sso": true,
44
+ "deploy": true,
45
+ "artifactFolder": "tabs/build"
46
+ },
47
+ {
48
+ "name": "azure-storage",
49
+ "connections": [
50
+ "teams-tab"
51
+ ],
52
+ "provision": true
53
+ },
54
+ {
55
+ "name": "identity"
56
+ },
57
+ {
58
+ "name": "simple-auth",
59
+ "provision": true
60
+ },
61
+ {
62
+ "name": "teams-api",
63
+ "hosting": "azure-function",
64
+ "functionNames": [
65
+ "getGraphData"
66
+ ],
67
+ "build": true,
68
+ "folder": "api",
69
+ "deploy": true,
70
+ "artifactFolder": "api"
71
+ },
72
+ {
73
+ "name": "azure-function",
74
+ "scenario": "Api",
75
+ "connections": [
76
+ "identity",
77
+ "aad-app",
78
+ "teams-tab",
79
+ "teams-api"
80
+ ]
81
+ }
82
+ ]
83
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "solution": {
3
+ "provisionSucceeded": true,
4
+ "teamsAppTenantId": "be2e7bea-b493-4de5-bbc5-8b4a6a235600",
5
+ "subscriptionId": "2e921569-0c14-4082-ad47-bd65b64ec3d3",
6
+ "subscriptionName": "EIONET",
7
+ "tenantId": "be2e7bea-b493-4de5-bbc5-8b4a6a235600",
8
+ "needCreateResourceGroup": false,
9
+ "resourceGroupName": "eionet_user_management-Prod_EEA-rg",
10
+ "location": "westeurope",
11
+ "resourceNameSuffix": "a66c5b"
12
+ },
13
+ "fx-resource-appstudio": {
14
+ "tenantId": "be2e7bea-b493-4de5-bbc5-8b4a6a235600",
15
+ "teamsAppId": "ab55351f-33d7-473a-91e9-94eaf29e2768"
16
+ },
17
+ "fx-resource-aad-app-for-teams": {
18
+ "clientId": "74697b70-9432-4457-a750-4e118b6d6679",
19
+ "clientSecret": "{{fx-resource-aad-app-for-teams.clientSecret}}",
20
+ "objectId": "914f602e-39d0-4cd9-bc29-30df70e858a7",
21
+ "oauth2PermissionScopeId": "e1fc654e-db3d-4f60-8bee-be97175721de",
22
+ "tenantId": "be2e7bea-b493-4de5-bbc5-8b4a6a235600",
23
+ "oauthHost": "https://login.microsoftonline.com",
24
+ "oauthAuthority": "https://login.microsoftonline.com/be2e7bea-b493-4de5-bbc5-8b4a6a235600",
25
+ "applicationIdUris": "api://eionet2dasprodf6d33etab.z6.web.core.windows.net/74697b70-9432-4457-a750-4e118b6d6679",
26
+ "frontendEndpoint": "https://eionet2dasprodf6d33etab.z6.web.core.windows.net"
27
+ },
28
+ "fx-resource-frontend-hosting": {
29
+ "indexPath": "/index.html#",
30
+ "domain": "eionet2dasprodf6d33etab.z6.web.core.windows.net",
31
+ "endpoint": "https://eionet2dasprodf6d33etab.z6.web.core.windows.net",
32
+ "storageResourceId": "/subscriptions/2e921569-0c14-4082-ad47-bd65b64ec3d3/resourceGroups/eionet_user_management-Prod_EEA-rg/providers/Microsoft.Storage/storageAccounts/eionet2dasprodf6d33etab"
33
+ },
34
+ "fx-resource-simple-auth": {
35
+ "endpoint": "https://eionet2dasprodf6d33esimpleauth.azurewebsites.net",
36
+ "webAppResourceId": "/subscriptions/2e921569-0c14-4082-ad47-bd65b64ec3d3/resourceGroups/eionet_user_management-Prod_EEA-rg/providers/Microsoft.Web/sites/eionet2dasprodf6d33esimpleAuth"
37
+ },
38
+ "fx-resource-identity": {
39
+ "identityName": "eionet2dasprodf6d33e",
40
+ "identityResourceId": "/subscriptions/2e921569-0c14-4082-ad47-bd65b64ec3d3/resourceGroups/eionet_user_management-Prod_EEA-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/eionet2dasprodf6d33e",
41
+ "identityClientId": "25d0e402-1496-4255-8e13-74b7f5661aac"
42
+ },
43
+ "fx-resource-function": {
44
+ "functionAppResourceId": "/subscriptions/2e921569-0c14-4082-ad47-bd65b64ec3d3/resourceGroups/eionet_user_management-Prod_EEA-rg/providers/Microsoft.Web/sites/eionet2dasprodf6d33eapi",
45
+ "functionEndpoint": "https://eionet2dasprodf6d33eapi.azurewebsites.net"
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "solution": {
3
+ "provisionSucceeded": true,
4
+ "teamsAppTenantId": "3433ca34-11c7-462b-96a9-fd70adcc5bb0",
5
+ "subscriptionId": "83d442da-e921-445b-aa62-df8d53543040",
6
+ "subscriptionName": "Eionet",
7
+ "tenantId": "3433ca34-11c7-462b-96a9-fd70adcc5bb0",
8
+ "needCreateResourceGroup": false,
9
+ "resourceGroupName": "DefaultResourceGroup-WEU",
10
+ "location": "westeurope",
11
+ "resourceNameSuffix": "d2a2da"
12
+ },
13
+ "fx-resource-appstudio": {
14
+ "tenantId": "3433ca34-11c7-462b-96a9-fd70adcc5bb0",
15
+ "teamsAppId": "2c2de45e-77b5-4956-b3eb-9e00c9d594c0"
16
+ },
17
+ "fx-resource-aad-app-for-teams": {
18
+ "clientId": "cb865fa7-f536-4690-a500-d18135321fbe",
19
+ "clientSecret": "{{fx-resource-aad-app-for-teams.clientSecret}}",
20
+ "objectId": "c2e1fc48-a6b4-477f-b398-dfc80767f985",
21
+ "oauth2PermissionScopeId": "c4f5c0b6-85a0-43fb-bce7-0dea63459709",
22
+ "tenantId": "3433ca34-11c7-462b-96a9-fd70adcc5bb0",
23
+ "oauthHost": "https://login.microsoftonline.com",
24
+ "oauthAuthority": "https://login.microsoftonline.com/3433ca34-11c7-462b-96a9-fd70adcc5bb0",
25
+ "applicationIdUris": "api://eionet2dashboardtab.z6.web.core.windows.net/cb865fa7-f536-4690-a500-d18135321fbe",
26
+ "frontendEndpoint": "https://eionet2dashboardtab.z6.web.core.windows.net"
27
+ },
28
+ "fx-resource-frontend-hosting": {
29
+ "indexPath": "/index.html#",
30
+ "domain": "eionet2dashboardtab.z6.web.core.windows.net",
31
+ "endpoint": "https://eionet2dashboardtab.z6.web.core.windows.net",
32
+ "storageResourceId": "/subscriptions/83d442da-e921-445b-aa62-df8d53543040/resourceGroups/DefaultResourceGroup-WEU/providers/Microsoft.Storage/storageAccounts/eionet2dashboardtab"
33
+ },
34
+ "fx-resource-simple-auth": {
35
+ "endpoint": "https://eionet2dashboardsimpleauth.azurewebsites.net",
36
+ "webAppResourceId": "/subscriptions/83d442da-e921-445b-aa62-df8d53543040/resourceGroups/DefaultResourceGroup-WEU/providers/Microsoft.Web/sites/eionet2dashboardsimpleAuth"
37
+ },
38
+ "fx-resource-identity": {
39
+ "identityName": "eionet2dashboard",
40
+ "identityResourceId": "/subscriptions/83d442da-e921-445b-aa62-df8d53543040/resourceGroups/DefaultResourceGroup-WEU/providers/Microsoft.ManagedIdentity/userAssignedIdentities/eionet2dashboard",
41
+ "identityClientId": "2138f965-2477-404e-bddb-25f54d4cfc82"
42
+ },
43
+ "fx-resource-function": {
44
+ "functionAppResourceId": "/subscriptions/83d442da-e921-445b-aa62-df8d53543040/resourceGroups/DefaultResourceGroup-WEU/providers/Microsoft.Web/sites/eionet2dashboardapi",
45
+ "functionEndpoint": "https://eionet2dashboardapi.azurewebsites.net"
46
+ }
47
+ }
@@ -0,0 +1,91 @@
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Launch Remote (Edge)",
6
+ "type": "pwa-msedge",
7
+ "request": "launch",
8
+ "url": "https://teams.microsoft.com/l/app/${teamsAppId}?installAppPackage=true&webjoin=true&${account-hint}",
9
+ "presentation": {
10
+ "group": "remote",
11
+ "order": 2
12
+ }
13
+ },
14
+ {
15
+ "name": "Launch Remote (Chrome)",
16
+ "type": "pwa-chrome",
17
+ "request": "launch",
18
+ "url": "https://teams.microsoft.com/l/app/${teamsAppId}?installAppPackage=true&webjoin=true&${account-hint}",
19
+ "presentation": {
20
+ "group": "remote",
21
+ "order": 1
22
+ }
23
+ },
24
+ {
25
+ "name": "Attach to Frontend (Edge)",
26
+ "type": "pwa-msedge",
27
+ "request": "launch",
28
+ "url": "https://teams.microsoft.com/l/app/${localTeamsAppId}?installAppPackage=true&webjoin=true&${account-hint}",
29
+ "cascadeTerminateToConfigurations": [
30
+ "Attach to Backend"
31
+ ],
32
+ "presentation": {
33
+ "group": "all",
34
+ "hidden": true
35
+ }
36
+ },
37
+ {
38
+ "name": "Attach to Frontend (Chrome)",
39
+ "type": "pwa-chrome",
40
+ "request": "launch",
41
+ "url": "https://teams.microsoft.com/l/app/${localTeamsAppId}?installAppPackage=true&webjoin=true&${account-hint}",
42
+ "cascadeTerminateToConfigurations": [
43
+ "Attach to Backend"
44
+ ],
45
+ "presentation": {
46
+ "group": "all",
47
+ "hidden": true
48
+ }
49
+ },
50
+ {
51
+ "name": "Attach to Backend",
52
+ "type": "pwa-node",
53
+ "request": "attach",
54
+ "port": 9229,
55
+ "restart": true,
56
+ "presentation": {
57
+ "group": "all",
58
+ "hidden": true
59
+ },
60
+ "internalConsoleOptions": "neverOpen"
61
+ }
62
+ ],
63
+ "compounds": [
64
+ {
65
+ "name": "Debug (Edge)",
66
+ "configurations": [
67
+ "Attach to Frontend (Edge)",
68
+ "Attach to Backend"
69
+ ],
70
+ "preLaunchTask": "Pre Debug Check & Start All",
71
+ "presentation": {
72
+ "group": "all",
73
+ "order": 2
74
+ },
75
+ "stopAll": true
76
+ },
77
+ {
78
+ "name": "Debug (Chrome)",
79
+ "configurations": [
80
+ "Attach to Frontend (Chrome)",
81
+ "Attach to Backend"
82
+ ],
83
+ "preLaunchTask": "Pre Debug Check & Start All",
84
+ "presentation": {
85
+ "group": "all",
86
+ "order": 1
87
+ },
88
+ "stopAll": true
89
+ }
90
+ ]
91
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "debug.onTaskErrors": "abort",
3
+ "azureFunctions.stopFuncTaskPostDebug": false,
4
+ "azureFunctions.showProjectWarning": false,
5
+ "csharp.suppressDotnetRestoreNotification": true
6
+ }
@@ -0,0 +1,63 @@
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "Pre Debug Check & Start All",
6
+ "dependsOn": [
7
+ "validate local prerequisites",
8
+ "prepare local environment",
9
+ "Start All"
10
+ ],
11
+ "dependsOrder": "sequence"
12
+ },
13
+ {
14
+ "label": "validate local prerequisites",
15
+ "type": "shell",
16
+ "command": "exit ${command:fx-extension.validate-local-prerequisites}",
17
+ "presentation": {
18
+ "reveal": "never"
19
+ }
20
+ },
21
+ {
22
+ "label": "prepare local environment",
23
+ "type": "shell",
24
+ "command": "exit ${command:fx-extension.pre-debug-check}",
25
+ "presentation": {
26
+ "reveal": "never"
27
+ }
28
+ },
29
+ {
30
+ "label": "Start All",
31
+ "dependsOn": [
32
+ "Start Frontend",
33
+ "Start Backend"
34
+ ]
35
+ },
36
+ {
37
+ "label": "Start Frontend",
38
+ "type": "shell",
39
+ "command": "npm run dev:teamsfx",
40
+ "isBackground": true,
41
+ "problemMatcher": "$teamsfx-frontend-watch",
42
+ "options": {
43
+ "cwd": "${workspaceFolder}/tabs"
44
+ }
45
+ },
46
+ {
47
+ "label": "Start Backend",
48
+ "type": "shell",
49
+ "command": "npm run dev:teamsfx",
50
+ "isBackground": true,
51
+ "problemMatcher": "$teamsfx-backend-watch",
52
+ "options": {
53
+ "cwd": "${workspaceFolder}/api",
54
+ "env": {
55
+ "PATH": "${command:fx-extension.get-func-path}${env:PATH}"
56
+ }
57
+ },
58
+ "presentation": {
59
+ "reveal": "silent"
60
+ }
61
+ }
62
+ ]
63
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,140 @@
1
+ ### Changelog
2
+
3
+ All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
+
5
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
+
7
+ ### [1.4.0](https://github.com/eea/eionet2-dashboard/compare/1.3.9...1.4.0) - 7 September 2023
8
+
9
+ #### :rocket: New Features
10
+
11
+ - feat: small improvements(#257046) [Mihai Nicolae - [`6db73b6`](https://github.com/eea/eionet2-dashboard/commit/6db73b6abd4ac24686150d21f37305e7c73eddc0)]
12
+
13
+ #### :bug: Bug Fixes
14
+
15
+ - fix: correct enrolled count [Mihai Nicolae - [`0adb579`](https://github.com/eea/eionet2-dashboard/commit/0adb579358ad943549d9e003d76279de443fcbb3)]
16
+
17
+ #### :house: Internal changes
18
+
19
+ - chore: version upgrade [Mihai Nicolae - [`80dd3c4`](https://github.com/eea/eionet2-dashboard/commit/80dd3c4d66f2a4adcb89c4e25dfcd36e8fdf20f2)]
20
+
21
+ ### [1.3.9](https://github.com/eea/eionet2-dashboard/compare/1.3.6...1.3.9) - 30 August 2023
22
+
23
+ #### :rocket: New Features
24
+
25
+ - feat: misc improvements(#257046) [Mihai Nicolae - [`b083ac1`](https://github.com/eea/eionet2-dashboard/commit/b083ac136bf68f2eb3e3abb468af305a9acc4348)]
26
+ - feat: self-service integration(#255477) [Mihai Nicolae - [`f953138`](https://github.com/eea/eionet2-dashboard/commit/f953138196ee513c116788121bef6372c737623b)]
27
+ - feat: misc improvements (#257046) [Mihai Nicolae - [`de81935`](https://github.com/eea/eionet2-dashboard/commit/de81935b60bfe11890eff0dfb41cba49a3d2d105)]
28
+ - feat: misc improvements (#257046) [Mihai Nicolae - [`6c12878`](https://github.com/eea/eionet2-dashboard/commit/6c128780b9f5eea04482ebe5d515ea678d8db872)]
29
+ - feat: add registration info [Mihai Nicolae - [`6dbd9d7`](https://github.com/eea/eionet2-dashboard/commit/6dbd9d7c3f04fa7b6649daff4c06af1d6f09e4dc)]
30
+ - feat: redesign; integrate self-service(#253088, #255477) [Mihai Nicolae - [`bbbb619`](https://github.com/eea/eionet2-dashboard/commit/bbbb619984c43f9867a77968a3523f2b50a1dc68)]
31
+
32
+ #### :bug: Bug Fixes
33
+
34
+ - fix: scroll display issue(#257046) [Mihai Nicolae - [`d5a0af5`](https://github.com/eea/eionet2-dashboard/commit/d5a0af59f6930087ced0ccbff8f23643cdd64967)]
35
+ - fix: missing margin [Mihai Nicolae - [`06580ce`](https://github.com/eea/eionet2-dashboard/commit/06580ce31c5a5373bba7934512b3b0c756a90311)]
36
+ - fix: callback dependency [Mihai Nicolae - [`2f20f64`](https://github.com/eea/eionet2-dashboard/commit/2f20f64cbb78050ccc08784f806718c764c50373)]
37
+ - fix: NFP [Mihai Nicolae - [`42fb752`](https://github.com/eea/eionet2-dashboard/commit/42fb75243aff21032c9cc3035ac48593a09713f5)]
38
+ - fix: hide menu for non eionet [Mihai Nicolae - [`ed64fe3`](https://github.com/eea/eionet2-dashboard/commit/ed64fe3acabac4fc3f3623faced77800c04d0c02)]
39
+
40
+ #### :house: Internal changes
41
+
42
+ - chore: version [Mihai Nicolae - [`80cb7fa`](https://github.com/eea/eionet2-dashboard/commit/80cb7fab12cbf73fe49b77d03976346ff03ba355)]
43
+ - chore: new version [Mihai Nicolae - [`78f37de`](https://github.com/eea/eionet2-dashboard/commit/78f37de02b12ddfb718827039c2ad49d62df4ef6)]
44
+ - chore: format [Mihai Nicolae - [`0b22c54`](https://github.com/eea/eionet2-dashboard/commit/0b22c54f34e49a198f3cde268b55cf2d588da241)]
45
+ - chore: new version [Mihai Nicolae - [`f04e045`](https://github.com/eea/eionet2-dashboard/commit/f04e04576a0a3a3be4f8f16c87c664fa6c6bff76)]
46
+ - chore: new permission for self-service [Mihai Nicolae - [`5822d14`](https://github.com/eea/eionet2-dashboard/commit/5822d14cc3e7bce002f4cda4c364893c64145496)]
47
+
48
+ ### [1.3.6](https://github.com/eea/eionet2-dashboard/compare/1.3.5...1.3.6) - 5 July 2023
49
+
50
+ #### :rocket: New Features
51
+
52
+ - feat: get counters from meeting (#253088) [Mihai Nicolae - [`c7cc453`](https://github.com/eea/eionet2-dashboard/commit/c7cc4532711c8269c95a2665a2141f75d9060e42)]
53
+
54
+ #### :house: Internal changes
55
+
56
+ - chore: new version and small fixes [Mihai Nicolae - [`dad3f32`](https://github.com/eea/eionet2-dashboard/commit/dad3f32a73cd002095aa79cd315e483df016faad)]
57
+
58
+ ### [1.3.5](https://github.com/eea/eionet2-dashboard/compare/1.3.2...1.3.5) - 30 June 2023
59
+
60
+ #### :rocket: New Features
61
+
62
+ - feat: redesign and performance (#249272, #253088) [Mihai Nicolae - [`897c4de`](https://github.com/eea/eionet2-dashboard/commit/897c4de44bf8e4ab11da9ee46842b145f2f9c157)]
63
+
64
+ #### :house: Internal changes
65
+
66
+ - chore: new version [Mihai Nicolae - [`9b0ca66`](https://github.com/eea/eionet2-dashboard/commit/9b0ca667fe382ce8654eb485e325b7bf3c45322b)]
67
+ - chore: outline picture updated [Mihai Nicolae - [`6502021`](https://github.com/eea/eionet2-dashboard/commit/6502021f286d6ceda674b27748903fe5e2aba90d)]
68
+
69
+ ### [1.3.2](https://github.com/eea/eionet2-dashboard/compare/1.3.1...1.3.2) - 10 May 2023
70
+
71
+ #### :rocket: New Features
72
+
73
+ - feat: misc improvements (#161283) [Mihai Nicolae - [`b408f9d`](https://github.com/eea/eionet2-dashboard/commit/b408f9d67d07e316a26a2a03744679ed82073f1a)]
74
+
75
+ ### [1.3.1](https://github.com/eea/eionet2-dashboard/compare/1.3.0...1.3.1) - 12 April 2023
76
+
77
+ ### [1.3.0](https://github.com/eea/eionet2-dashboard/compare/1.2.0...1.3.0) - 11 April 2023
78
+
79
+ ### [1.2.0](https://github.com/eea/eionet2-dashboard/compare/1.1.0...1.2.0) - 22 March 2023
80
+
81
+ ### [1.1.0](https://github.com/eea/eionet2-dashboard/compare/1.0.0...1.1.0) - 20 March 2023
82
+
83
+ ## [1.0.0](https://github.com/eea/eionet2-dashboard/compare/0.0.10...1.0.0) - 24 February 2023
84
+
85
+ #### :rocket: New Features
86
+
87
+ - feat: dasbhoard ui improvements [Mihai Nicolae - [`ea7b6f7`](https://github.com/eea/eionet2-dashboard/commit/ea7b6f7a6dbd6e80739bc5573ce238cee44cb2d9)]
88
+ - feat: dashboard improvements( #161283) [Mihai Nicolae - [`1337d2a`](https://github.com/eea/eionet2-dashboard/commit/1337d2a8288ac04b049972a313f0ec50f8241d2f)]
89
+
90
+ #### :house: Internal changes
91
+
92
+ - chore: version and readme update [Mihai Nicolae - [`4bca347`](https://github.com/eea/eionet2-dashboard/commit/4bca34768d0bb56b936b094d38e0786feaaf898b)]
93
+
94
+ ### [0.0.10](https://github.com/eea/eionet2-dashboard/compare/0.0.9...0.0.10) - 20 February 2023
95
+
96
+ #### :rocket: New Features
97
+
98
+ - feat: grid column resizing [Mihai Nicolae - [`e74982a`](https://github.com/eea/eionet2-dashboard/commit/e74982afa4b2d8a1b92fe04808d81d380201ae65)]
99
+
100
+ #### :nail_care: Enhancements
101
+
102
+ - change: dashboard improvements (#161283) [Mihai Nicolae - [`7892aff`](https://github.com/eea/eionet2-dashboard/commit/7892affe18e4f6c510d042d3f7434866267196a0)]
103
+
104
+ ### [0.0.9](https://github.com/eea/eionet2-dashboard/compare/0.0.8...0.0.9) - 9 February 2023
105
+
106
+ ### [0.0.8](https://github.com/eea/eionet2-dashboard/compare/0.0.7...0.0.8) - 2 February 2023
107
+
108
+ #### :nail_care: Enhancements
109
+
110
+ - refactor: ui improvements [Mihai Nicolae - [`b03ee9f`](https://github.com/eea/eionet2-dashboard/commit/b03ee9fdf678e9e3fd9ffc7b84090d4a252c7b53)]
111
+
112
+ #### :house: Internal changes
113
+
114
+ - chore: increase version [Mihai Nicolae - [`aa2f978`](https://github.com/eea/eionet2-dashboard/commit/aa2f978bf4abeaf2bd1286fa21c1fe5e6a9c50b1)]
115
+ - chore: add images [Mihai Nicolae - [`b279522`](https://github.com/eea/eionet2-dashboard/commit/b279522e581e1653697ea7c483252e432bcc06ac)]
116
+ - chore: add configs [Mihai Nicolae - [`f17c2d3`](https://github.com/eea/eionet2-dashboard/commit/f17c2d3a0048aa310a54d304b315a4d843c29410)]
117
+
118
+ ### [0.0.7](https://github.com/eea/eionet2-dashboard/compare/0.0.6...0.0.7) - 31 January 2023
119
+
120
+ ### [0.0.6](https://github.com/eea/eionet2-dashboard/compare/0.0.5...0.0.6) - 23 January 2023
121
+
122
+ #### :hammer_and_wrench: Others
123
+
124
+ - #154368 - Formatting [Mihai Nicolae - [`ba62a74`](https://github.com/eea/eionet2-dashboard/commit/ba62a74d34655d8b86d429bd6f4b72bc484c46fd)]
125
+ - #154368 - Misc changes [Mihai Nicolae - [`2a000a2`](https://github.com/eea/eionet2-dashboard/commit/2a000a28290749bc5286aeff5f6aecbf2ee7a584)]
126
+ - #154368 - Ui tweaks [Mihai Nicolae - [`1e9146a`](https://github.com/eea/eionet2-dashboard/commit/1e9146a88c385d77455799fcf06abaed5f71857e)]
127
+ - #154368 - Initial version - wip [Mihai Nicolae - [`58b4ff7`](https://github.com/eea/eionet2-dashboard/commit/58b4ff7b37088152beb41bae07dda83d6d13669c)]
128
+ - Consultations and Events improvements - wip [Mihai Nicolae - [`6d0006c`](https://github.com/eea/eionet2-dashboard/commit/6d0006c78b5eb0da45be7cf6c529af390295de31)]
129
+ - #155882 - Remove unneeded permissions [Mihai Nicolae - [`d194bea`](https://github.com/eea/eionet2-dashboard/commit/d194bea1c270b5239179f16e868896a43fa67c16)]
130
+ - Remove unused components [Mihai Nicolae - [`a3612f9`](https://github.com/eea/eionet2-dashboard/commit/a3612f9df82ca7fece1225fe0e4f83f5d8b097d2)]
131
+ - Management and groups tabs [Mihai Nicolae - [`ffd6128`](https://github.com/eea/eionet2-dashboard/commit/ffd612815e76b88bbb986e93331cf729476c8655)]
132
+ - Refs #148899 - add pipeline [valentinab25 - [`256b7ba`](https://github.com/eea/eionet2-dashboard/commit/256b7bae97781262e3be087d778545ee4d19dc1b)]
133
+ ### 0.0.5 - 20 January 2023
134
+
135
+ #### :hammer_and_wrench: Others
136
+
137
+ - Events and consultations [Mihai Nicolae - [`206c753`](https://github.com/eea/eionet2-dashboard/commit/206c753fa65a40fbd12b559eb04871abdf62c223)]
138
+ - Format [Mihai Nicolae - [`fedafcf`](https://github.com/eea/eionet2-dashboard/commit/fedafcf02f73b9ac174488220f1dbcf005f6648e)]
139
+ - Consultation list (WIP) [Mihai Nicolae - [`55071da`](https://github.com/eea/eionet2-dashboard/commit/55071dacb48f9c06262358237f5ef9a937589635)]
140
+ - Initial commit [Mihai Nicolae - [`2edf18e`](https://github.com/eea/eionet2-dashboard/commit/2edf18e4319bd279234387d20e4f0a74dbb01b39)]