Skip to content

Commit 5a4b0e9

Browse files
jordanvncalebpollmanreesscot
authored
chore: Rename references to Storage Manager in docs to File Uploader (#5697)
* chore: rename references to Storage Manager in docs to File Uploader * chore: reverting reference to StorageManager in deprecated props section * chore: replacing /storagemanager with /fileuploader in test sitemap * chore: update Storage Manager reference in README * chore: removing references to not-yet-existing FileUploader component * chore: reverting references to storageManager icon * fix: fixing incorrect comma placement * chore: make references to Storage in GitHub guides more generic * chore: add redirect from storagemanager to fileuploader * chore: add informational alert that storage manager has been renamed file uploader * chore: moving warning to top of page and changing text * chore: update text of name change warning * chore: remove rename warning, move info alert to top of page * Update docs/src/pages/[platform]/connected-components/storage/fileuploader/index.page.mdx Co-authored-by: Caleb Pollman <[email protected]> * Update docs/src/pages/[platform]/connected-components/storage/fileuploader/react.mdx Co-authored-by: Scott Rees <[email protected]> * chore: update rename alert text * chore: add storage component specificity to readme * chore: further update to alert text, breaking message into two paragraphs --------- Co-authored-by: Caleb Pollman <[email protected]> Co-authored-by: Scott Rees <[email protected]>
1 parent d193fed commit 5a4b0e9

File tree

28 files changed

+64
-45
lines changed

28 files changed

+64
-45
lines changed

.github/ISSUE_TEMPLATE/1.bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ body:
5353
- In-App Messaging
5454
- Liveness
5555
- Primitive components
56-
- Storage (Storage Manager)
56+
- Storage
5757
- Other
5858
validations:
5959
required: true

.github/ISSUE_TEMPLATE/2.feature_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ body:
3636
- In-App Messaging
3737
- Liveness
3838
- Primitive components
39-
- Storage (Storage Manager)
39+
- Storage
4040
- Other
4141
validations:
4242
required: true

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Amplify UI is an open-source UI library with cloud-connected components that are
4242
| In-App Messaging ||| | |
4343
| Geo (MapView) || | | |
4444
| Account Settings || | | |
45-
| Storage (StorageManager) || | | |
45+
| Storage (FileUploader) || | | |
46+
| Storage (StorageImage) || | | |
4647
| Liveness (FaceLivenessDetector) || | | |
4748

4849
| **Primitives** | **React** | **Angular** | **Vue** |

docs/__tests__/__snapshots__/sitemap.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ exports[`Sitemap Snapshot 1`] = `
108108
/react/connected-components/liveness/customization,
109109
/react/connected-components/liveness/troubleshooting,
110110
/react/connected-components/storage,
111+
/react/connected-components/storage/fileuploader,
111112
/react/connected-components/storage/storageimage,
112-
/react/connected-components/storage/storagemanager,
113113
/react/getting-started/accessibility,
114114
/react/getting-started/figma,
115115
/react/getting-started/installation,

docs/next.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,14 @@ module.exports = withNextPluginPreval({
165165
destination: '/react/components/accordion',
166166
permanent: false,
167167
},
168+
/**
169+
* Renamed "Storage Manager" to "File Uploader"
170+
*/
171+
{
172+
source: '/react/connected-components/storage/storagemanager',
173+
destination: '/react/connected-components/storage/fileuploader',
174+
permanent: true,
175+
},
168176
/**
169177
* Redirect traffic from CRA to Vite getting started page
170178
*/

docs/src/data/links.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ export const connectedComponents: ComponentNavItem[] = [
211211
tertiary: true,
212212
},
213213
{
214-
href: '/connected-components/storage/storagemanager',
215-
label: 'Storage Manager',
216-
body: 'StorageManager component allows users to upload and manage files in your Amplify backend.',
214+
href: '/connected-components/storage/fileuploader',
215+
label: 'File Uploader',
216+
body: 'FileUploader component allows users to upload and manage files in your Amplify backend.',
217217
platforms: ['react'],
218218
tertiary: true,
219219
},

docs/src/pages/[platform]/connected-components/storage/NextSteps.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ export function NextSteps() {
55
return (
66
<CardLinkGroup title="Next steps" id="next-steps">
77
<CardLink
8-
title="Storage Manager component"
8+
title="File Uploader component"
99
icon={<MdCloudUpload />}
10-
href={`storage/storagemanager`}
10+
href={`storage/fileuploader`}
1111
desc="Let your users upload files to the cloud"
1212
/>
1313
</CardLinkGroup>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)