Files
mobile_task/README.md
T

142 lines
3.7 KiB
Markdown
Raw Normal View History

2025-01-22 22:23:29 +01:00
## This project is a toy project for training and quality assurance purposes
2023-11-16 18:55:31 +01:00
2025-01-22 22:23:29 +01:00
# MOBILE TASK
2022-06-20 07:14:30 -04:00
1. Initialize an app. Connect the app with splash screen and icon. Configure app to use any one of the custom font globally.
2. Implement authentication screens(login, signup, forgot password, validate password reset confirmation code and reset password) and connect to the REST API. Domain for this is https://reacttask.mkdlabs.com
- Do not use any UI library. Do form state management without any library.
- Login screen takes email and password. Do all the basic validation on client side and display proper error message if theres error from the API. Display the error message either in toast, custom dialog or native alert. API endpoint is https://reacttask.mkdlabs.com/v2/api/lambda/login. Request body are email, password. Look at the request below.
2022-09-01 19:41:37 +00:00
- Register screen takes email, password, first_name, last_name(and code for this VOYD app). Validation similar to Login screen should be applied. API endpoint is https://reacttask.mkdlabs.com/lambda/api/register. Call register api first for email, role and password. Then call https://reacttask.mkdlabs.com/v2/api/lambda/profile to save first_name and last_name and code.
2022-06-20 07:14:30 -04:00
- Forgot password screen should ask for email. Read the forgot api below.
- On validate reset password code make a 6 digit otp input field. Look at reset password below.
3. Create the Home screen
2025-01-22 22:23:29 +01:00
4. Implement the UI of dashboard and connect the drawer on the left side.
### FOR REACT NATIVE !!!
- use Expo
- Persist the token that we receive after successfully authenticating using AsyncStorage. You can persist other data using Redux or make custom useContext, useReducer and AsyncStorage mechanism.
- make an additional screen with QR code scanner - it should be able to scan a QR code and and redirect to the page.
-
2022-06-20 07:14:30 -04:00
2025-01-22 22:23:29 +01:00
### FOR ANDROID OR SWIFT.
2022-06-20 07:14:30 -04:00
2025-01-22 22:23:29 +01:00
- Use MVVM architecture
2022-07-10 21:25:37 +00:00
2022-06-20 07:14:30 -04:00
## Login
```
https://reacttask.mkdlabs.com/v2/api/lambda/login
Method POST
content-type application/json
x-project cmVhY3R0YXNrOjVmY2h4bjVtOGhibzZqY3hpcTN4ZGRvZm9kb2Fjc2t5ZQ==
body
{
"email": "adminreacttask@manaknight.com",
"password": "a123456",
"role": "admin"
}
Response
{
"error": false,
"role": "admin",
"token": "",
"expire_at": 3600,
"user_id": 1
}
```
## Register
```
https://reacttask.mkdlabs.com/v2/api/lambda/register
Method POST
content-type application/json
2022-10-17 18:26:14 +00:00
x-project cmVhY3R0YXNrOmQ5aGVkeWN5djZwN3p3OHhpMzR0OWJtdHNqc2lneTV0Nw==
2022-06-20 07:14:30 -04:00
body
{
"email": "member@manaknight.com",
"password": "a123456",
2022-09-01 19:15:27 +00:00
"role": "member",
"is_refresh": false
2022-06-20 07:14:30 -04:00
}
Response
{
"error": false,
"role": "admin",
"token": "",
"expire_at": 3600,
"user_id": 1
}
```
## Update Profile
```
https://reacttask.mkdlabs.com/v2/api/lambda/profile
Method POST
content-type application/json
Authorization Bearer <token>
x-project cmVhY3R0YXNrOjVmY2h4bjVtOGhibzZqY3hpcTN4ZGRvZm9kb2Fjc2t5ZQ==
body
{
2022-07-11 17:56:51 +00:00
"payload": {
"first_name": "<update>",
"last_name": "<update>"
}
2022-06-20 07:14:30 -04:00
}
Response
{
"error": false,
"message": "updated"
}
```
## Forgot Password
```
https://reacttask.mkdlabs.com/v2/api/lambda/forgot
Method POST
content-type application/json
x-project cmVhY3R0YXNrOjVmY2h4bjVtOGhibzZqY3hpcTN4ZGRvZm9kb2Fjc2t5ZQ==
body
{
"email": "<update>",
}
Response
{
"error": false,
"message": "message",
2022-07-11 20:10:46 +00:00
"code" : "<code>",
"token": "<token>"
2022-06-20 07:14:30 -04:00
}
```
## Reset Password
```
https://reacttask.mkdlabs.com/v2/api/lambda/reset
Method POST
content-type application/json
x-project cmVhY3R0YXNrOjVmY2h4bjVtOGhibzZqY3hpcTN4ZGRvZm9kb2Fjc2t5ZQ==
body
{
"token": "1181961E-45A2-479B-B43F-69C5817258B5-57D2-16489608",
"code": "368200",
"password": "a1234567"
}
Response
{
"error": false,
"message": "Reset Password"
}
```