-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebf5974
commit e3f9060
Showing
16 changed files
with
126 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import 'dart:math'; | ||
|
||
import 'package:faker/faker.dart' show Faker, Internet; | ||
|
||
class PostFaker { | ||
static Map<String, dynamic> posts() { | ||
return { | ||
'data': List.generate(10, (index) => post()), | ||
}; | ||
} | ||
|
||
static Map<String, dynamic> post() { | ||
final faker = Faker(); | ||
|
||
// Constructing thumbnail URL with random parameters | ||
const imageUrl = 'https://fakeimg.pl/600x400'; | ||
|
||
return { | ||
'uuid': faker.guid.guid(), | ||
'created_at': faker.date.dateTime().toIso8601String(), | ||
'updated_at': faker.date.dateTime().toIso8601String(), | ||
'color': faker.internet.color(), | ||
'description': faker.lorem.sentence(), | ||
'urls': { | ||
'thumb': imageUrl, | ||
'full': imageUrl, | ||
'raw': imageUrl, | ||
'small': imageUrl, | ||
'regular': imageUrl, | ||
'small_s3': imageUrl, | ||
}, | ||
'likes': faker.randomGenerator.integer(1000), | ||
'author': { | ||
'uuid': faker.guid.guid(), | ||
'name': faker.person.name(), | ||
'username': faker.person.name(), | ||
'first_name': faker.person.firstName(), | ||
'last_name': faker.person.lastName(), | ||
'avatar': faker.internet.httpsUrl(), | ||
'updated_at': faker.date.dateTime().toIso8601String(), | ||
'twitter_username': faker.person.name(), | ||
'bio': faker.lorem.sentence(), | ||
'total_likes': faker.randomGenerator.integer(1000), | ||
'total_photos': faker.randomGenerator.integer(1000), | ||
'instagram_username': faker.person.name(), | ||
}, | ||
'views': faker.randomGenerator.integer(1000), | ||
'downloads': faker.randomGenerator.integer(1000), | ||
}; | ||
} | ||
} | ||
|
||
extension XInternet on Internet { | ||
String color() { | ||
final random = Random(); | ||
const hexDigits = '0123456789ABCDEF'; | ||
String color = ''; | ||
for (int i = 0; i < 6; i++) { | ||
color += hexDigits[random.nextInt(16)]; | ||
} | ||
return color; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import 'dart:developer'; | ||
|
||
import 'package:bond_cache/bond_cache.dart'; | ||
import 'package:bond_core/bond_core.dart'; | ||
import 'package:bond_form/validator_localizations.dart'; | ||
import 'package:get_it/get_it.dart'; | ||
|
||
class FormsServiceProvider extends ServiceProvider { | ||
@override | ||
Future<void> register(GetIt it) async { | ||
// TODO - local must be a getter constructor in the ValidatorLocalizations class | ||
log('Cache.get('', defaultValue: '') = ${Cache.get<String>('language', defaultValue: 'en')}'); | ||
it.registerSingleton( | ||
ValidatorLocalizations(Cache.get('language', defaultValue: 'en')), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters