Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,9 @@ dist

/mta_archives

/app/*.zip
/app/*.zip

# wdi5 test artifacts
.com.google*
*crdownload
*image*.png
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/gallium
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ Try and port the whole project to another programming language. I'm sure we will

Extend the app to offer multiple server side enhancements but then extend the SAPUI5 frontend to allow the end user to choose the enhancement type. The trick there is sending the choice along with the upload (it can be done but its tricky). That challenge would be focused on UI5 skills.

### Run the `wdi5` test

First, start the project as explained above via `npm start`.
Open another console/Terminal and run `npm test`.

## Requirements

Node.js version 12.x, 14.x, or 16.x [https://nodejs.org/en/download/](https://nodejs.org/en/download/)
Expand Down
2 changes: 1 addition & 1 deletion app/profilePic/profilePic/view/App.view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</unified:parameters>
</unified:FileUploader>
<Button id="button" text="{i18n>Upload}" press="uploadPressed"></Button>
<Button type="Emphasized" text="Save As" press="onSaveAsPress" />
<Button type="Emphasized" text="Save As" press="onSaveAsPress" id="downloadButton" />
</e:customToolbarControls>
<e:customEllipseCropItems>
<e:CustomSizeItem width="1" height="1" label="1:1" relative="true"/>
Expand Down
Loading