Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-smf-mobile
Commits
f22d8895
Commit
f22d8895
authored
2 years ago
by
Shoaib
Browse files
Options
Download
Patches
Plain Diff
Fixed all the issues in v1.0
parent
ab5338ec
master
add-assessor-location
deps-update
two-lead-assessor
No related merge requests found
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
README.md
+4
-4
README.md
lib/constants/api_endpoints.dart
+2
-0
lib/constants/api_endpoints.dart
lib/constants/app_constants.dart
+2
-1
lib/constants/app_constants.dart
lib/main.dart
+1
-0
lib/main.dart
lib/pages/home_page.dart
+3
-2
lib/pages/home_page.dart
lib/repositories/application_repository.dart
+6
-1
lib/repositories/application_repository.dart
lib/repositories/login_repository.dart
+16
-10
lib/repositories/login_repository.dart
lib/services/application_service.dart
+1
-1
lib/services/application_service.dart
lib/services/login_service.dart
+9
-0
lib/services/login_service.dart
with
44 additions
and
19 deletions
+44
-19
README.md
+
4
−
4
View file @
f22d8895
...
@@ -17,9 +17,9 @@ samples, guidance on mobile development, and a full API reference.
...
@@ -17,9 +17,9 @@ samples, guidance on mobile development, and a full API reference.
## Configuration Details
## Configuration Details
*
Flutter 2.10.
3
• channel stable • https://github.com/flutter/flutter.git
*
Flutter 2.10.
4
• channel stable • https://github.com/flutter/flutter.git
*
Framework • revision
7e9793dee1
(2
week
s ago) • 2022-03-
02 11
:23:12 -0
6
00
*
Framework • revision
c860cba910
(
1
2
day
s ago) • 2022-03-
25 00
:23:12 -0
5
00
*
Engine • revision
bd539267b4
*
Engine • revision
57d3bac3dd
*
Tools • Dart 2.16.
1
• DevTools 2.9.2
*
Tools • Dart 2.16.
2
• DevTools 2.9.2
This diff is collapsed.
Click to expand it.
lib/constants/api_endpoints.dart
+
2
−
0
View file @
f22d8895
...
@@ -15,4 +15,6 @@ class ApiUrl {
...
@@ -15,4 +15,6 @@ class ApiUrl {
static
const
getAllForms
=
'
$baseUrl
/api/forms/getAllForms?isDetail=true'
;
static
const
getAllForms
=
'
$baseUrl
/api/forms/getAllForms?isDetail=true'
;
static
const
fileUpload
=
'
$baseUrl
/api/forms/fileUpload'
;
static
const
fileUpload
=
'
$baseUrl
/api/forms/fileUpload'
;
static
const
deleteFile
=
'
$baseUrl
/api/forms/deleteCloudFile'
;
static
const
deleteFile
=
'
$baseUrl
/api/forms/deleteCloudFile'
;
static
const
deleteDeviceToken
=
'
$baseUrl
/api/user/deleteDeviceToken?deviceId='
;
}
}
This diff is collapsed.
Click to expand it.
lib/constants/app_constants.dart
+
2
−
1
View file @
f22d8895
const
String
appVersion
=
'1.
0
'
;
const
String
appVersion
=
'1.
3
'
;
const
String
appName
=
'UP SMF'
;
const
String
appName
=
'UP SMF'
;
const
int
inspectorRoleId
=
2093
;
const
int
inspectorRoleId
=
2093
;
...
@@ -52,6 +52,7 @@ class Storage {
...
@@ -52,6 +52,7 @@ class Storage {
static
const
String
lastname
=
'smf_user_last_name'
;
static
const
String
lastname
=
'smf_user_last_name'
;
static
const
String
authtoken
=
'smf_user_auth_token'
;
static
const
String
authtoken
=
'smf_user_auth_token'
;
static
const
String
applicationId
=
'smf_application_id'
;
static
const
String
applicationId
=
'smf_application_id'
;
static
const
String
deviceIdentifier
=
'smf_device_identifier'
;
}
}
class
Inspector
{
class
Inspector
{
...
...
This diff is collapsed.
Click to expand it.
lib/main.dart
+
1
−
0
View file @
f22d8895
...
@@ -10,3 +10,4 @@ void main() {
...
@@ -10,3 +10,4 @@ void main() {
},
},
));
));
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/pages/home_page.dart
+
3
−
2
View file @
f22d8895
...
@@ -133,9 +133,10 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver {
...
@@ -133,9 +133,10 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver {
// await Future.delayed(const Duration(milliseconds: 10));
// await Future.delayed(const Duration(milliseconds: 10));
if
(
isInternetConnected
)
{
if
(
isInternetConnected
)
{
_validateUser
();
_validateUser
();
_getForms
();
await
_getForms
();
_syncApplications
();
await
_syncApplications
();
}
}
_allApplications
=
_allApplications
=
await
Provider
.
of
<
ApplicationRespository
>(
context
,
listen:
false
)
await
Provider
.
of
<
ApplicationRespository
>(
context
,
listen:
false
)
.
getApplications
(
isInternetConnected
);
.
getApplications
(
isInternetConnected
);
...
...
This diff is collapsed.
Click to expand it.
lib/repositories/application_repository.dart
+
6
−
1
View file @
f22d8895
...
@@ -100,7 +100,9 @@ class ApplicationRespository with ChangeNotifier {
...
@@ -100,7 +100,9 @@ class ApplicationRespository with ChangeNotifier {
bool
response
=
false
;
bool
response
=
false
;
List
<
Map
>
attachments
=
[];
List
<
Map
>
attachments
=
[];
try
{
try
{
// await OfflineModel.deleteInspections();
List
<
Map
>
rawInspections
=
await
OfflineModel
.
getInspections
();
List
<
Map
>
rawInspections
=
await
OfflineModel
.
getInspections
();
// print(rawInspections);
for
(
var
inspection
in
rawInspections
)
{
for
(
var
inspection
in
rawInspections
)
{
Map
inspectionData
=
jsonDecode
(
inspection
[
'inspection_data'
]);
Map
inspectionData
=
jsonDecode
(
inspection
[
'inspection_data'
]);
attachments
=
attachments
=
...
@@ -118,11 +120,14 @@ class ApplicationRespository with ChangeNotifier {
...
@@ -118,11 +120,14 @@ class ApplicationRespository with ChangeNotifier {
consents
.
add
(
inspectionData
);
consents
.
add
(
inspectionData
);
}
}
}
}
// print('inspections: ' + inspections.toString());
// print('concents: ' + consents.toString());
if
(
inspections
.
isNotEmpty
)
{
if
(
inspections
.
isNotEmpty
)
{
final
request1
=
final
request1
=
await
ApplicationService
.
submitBulkInspection
(
inspections
);
await
ApplicationService
.
submitBulkInspection
(
inspections
);
data1
=
json
.
decode
(
request1
.
body
);
data1
=
json
.
decode
(
request1
.
body
);
}
}
if
(
consents
.
isNotEmpty
)
{
if
(
consents
.
isNotEmpty
)
{
final
request2
=
await
ApplicationService
.
submitBulkConsent
(
consents
);
final
request2
=
await
ApplicationService
.
submitBulkConsent
(
consents
);
data2
=
json
.
decode
(
request2
.
body
);
data2
=
json
.
decode
(
request2
.
body
);
...
@@ -154,7 +159,7 @@ class ApplicationRespository with ChangeNotifier {
...
@@ -154,7 +159,7 @@ class ApplicationRespository with ChangeNotifier {
if
(
!
internetConnected
)
{
if
(
!
internetConnected
)
{
Map
<
String
,
Object
>
applicationData
=
{
Map
<
String
,
Object
>
applicationData
=
{
'inspector_type'
:
Inspector
.
assistantInspector
,
'inspector_type'
:
Inspector
.
assistantInspector
,
'inspection_data'
:
data
'inspection_data'
:
json
.
encode
(
data
)
};
};
await
OfflineModel
.
saveInspection
(
applicationData
);
await
OfflineModel
.
saveInspection
(
applicationData
);
...
...
This diff is collapsed.
Click to expand it.
lib/repositories/login_repository.dart
+
16
−
10
View file @
f22d8895
...
@@ -8,6 +8,7 @@ import 'package:smf_mobile/landing_page.dart';
...
@@ -8,6 +8,7 @@ import 'package:smf_mobile/landing_page.dart';
import
'package:smf_mobile/models/login_model.dart'
;
import
'package:smf_mobile/models/login_model.dart'
;
import
'package:flutter_secure_storage/flutter_secure_storage.dart'
;
import
'package:flutter_secure_storage/flutter_secure_storage.dart'
;
import
'package:smf_mobile/services/login_service.dart'
;
import
'package:smf_mobile/services/login_service.dart'
;
import
'package:smf_mobile/util/helper.dart'
;
// import 'package:smf_mobile/util/notification_helper.dart';
// import 'package:smf_mobile/util/notification_helper.dart';
class
LoginRespository
with
ChangeNotifier
{
class
LoginRespository
with
ChangeNotifier
{
...
@@ -74,6 +75,7 @@ class LoginRespository with ChangeNotifier {
...
@@ -74,6 +75,7 @@ class LoginRespository with ChangeNotifier {
_storage
.
write
(
key:
Storage
.
firstname
,
value:
_loginDetails
.
firstName
);
_storage
.
write
(
key:
Storage
.
firstname
,
value:
_loginDetails
.
firstName
);
_storage
.
write
(
key:
Storage
.
lastname
,
value:
_loginDetails
.
lastName
);
_storage
.
write
(
key:
Storage
.
lastname
,
value:
_loginDetails
.
lastName
);
_storage
.
write
(
key:
Storage
.
authtoken
,
value:
_loginDetails
.
authToken
);
_storage
.
write
(
key:
Storage
.
authtoken
,
value:
_loginDetails
.
authToken
);
_storage
.
write
(
key:
Storage
.
deviceIdentifier
,
value:
identifier
);
_firebaseMessaging
.
getToken
()
.
then
((
token
)
async
{
_firebaseMessaging
.
getToken
()
.
then
((
token
)
async
{
final
request
=
await
LoginService
.
updateUserDeviceToken
(
final
request
=
await
LoginService
.
updateUserDeviceToken
(
token
.
toString
(),
token
.
toString
(),
...
@@ -92,16 +94,16 @@ class LoginRespository with ChangeNotifier {
...
@@ -92,16 +94,16 @@ class LoginRespository with ChangeNotifier {
}
}
void
_configureMessaging
(
context
)
async
{
void
_configureMessaging
(
context
)
async
{
NotificationSettings
settings
=
await
_firebaseMessaging
.
requestPermission
(
//
NotificationSettings settings = await _firebaseMessaging.requestPermission(
alert:
true
,
//
alert: true,
announcement:
false
,
//
announcement: false,
badge:
true
,
//
badge: true,
carPlay:
false
,
//
carPlay: false,
criticalAlert:
false
,
//
criticalAlert: false,
provisional:
false
,
//
provisional: false,
sound:
true
,
//
sound: true,
);
//
);
print
(
'User granted permission:
${settings.authorizationStatus}
'
);
//
print('User granted permission: ${settings.authorizationStatus}');
FirebaseMessaging
.
onBackgroundMessage
(
firebaseMessagingBackgroundHandler
);
FirebaseMessaging
.
onBackgroundMessage
(
firebaseMessagingBackgroundHandler
);
...
@@ -114,6 +116,10 @@ class LoginRespository with ChangeNotifier {
...
@@ -114,6 +116,10 @@ class LoginRespository with ChangeNotifier {
}
}
Future
<
void
>
clearData
()
async
{
Future
<
void
>
clearData
()
async
{
String
deviceIdentifier
=
await
Helper
.
getUser
(
Storage
.
deviceIdentifier
);
// print(deviceIdentifier);
await
LoginService
.
deleteDeviceToken
(
deviceIdentifier
);
// print(request.body);
await
_storage
.
deleteAll
();
await
_storage
.
deleteAll
();
}
}
...
...
This diff is collapsed.
Click to expand it.
lib/services/application_service.dart
+
1
−
1
View file @
f22d8895
...
@@ -64,7 +64,7 @@ class ApplicationService extends BaseService {
...
@@ -64,7 +64,7 @@ class ApplicationService extends BaseService {
final
response
=
await
http
.
post
(
Uri
.
parse
(
ApiUrl
.
submitBulkConcent
),
final
response
=
await
http
.
post
(
Uri
.
parse
(
ApiUrl
.
submitBulkConcent
),
headers:
headers
,
body:
body
);
headers:
headers
,
body:
body
);
// developer.log(ApiUrl.submit
Inspection
);
// developer.log(ApiUrl.submit
BulkConcent
);
// developer.log(body);
// developer.log(body);
// developer.log(response.body);
// developer.log(response.body);
return
response
;
return
response
;
...
...
This diff is collapsed.
Click to expand it.
lib/services/login_service.dart
+
9
−
0
View file @
f22d8895
...
@@ -61,4 +61,13 @@ class LoginService extends BaseService {
...
@@ -61,4 +61,13 @@ class LoginService extends BaseService {
headers:
headers
,
body:
body
);
headers:
headers
,
body:
body
);
return
response
;
return
response
;
}
}
static
Future
<
dynamic
>
deleteDeviceToken
(
String
identifier
)
async
{
Map
<
String
,
String
>
headers
=
await
BaseService
.
getHeaders
();
final
response
=
await
http
.
delete
(
Uri
.
parse
(
ApiUrl
.
deleteDeviceToken
+
identifier
),
headers:
headers
,
);
return
response
;
}
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets