mirror of
https://github.com/stonega/tsacdop
synced 2024-12-16 18:30:31 +01:00
547aef80e9
modified: lib/class/settingstate.dart modified: lib/episodes/episodedetail.dart modified: lib/home/appbar/addpodcast.dart deleted: lib/home/audio_player.dart modified: lib/home/audiopanel.dart modified: lib/home/home.dart modified: lib/home/homescroll.dart modified: lib/local_storage/key_value_storage.dart modified: lib/local_storage/sqflite_localpodcast.dart modified: lib/main.dart modified: lib/podcasts/podcastdetail.dart modified: lib/podcasts/podcastgroup.dart modified: pubspec.lock modified: pubspec.yaml lib/home/audioplayer.dart
58 lines
1.9 KiB
Dart
58 lines
1.9 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:tsacdop/class/podcast_group.dart';
|
|
|
|
class KeyValueStorage {
|
|
final String key;
|
|
KeyValueStorage(this.key);
|
|
|
|
Future<List<GroupEntity>> getGroups() async {
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
if (prefs.getString(key) == null) {
|
|
PodcastGroup home = PodcastGroup('Home');
|
|
await prefs.setString(
|
|
key,
|
|
json.encode({
|
|
'groups': [home.toEntity().toJson()]
|
|
}));}
|
|
print(prefs.getString(key));
|
|
return json
|
|
.decode(prefs.getString(key))['groups']
|
|
.cast<Map<String, Object>>()
|
|
.map<GroupEntity>(GroupEntity.fromJson)
|
|
.toList(growable: false);
|
|
}
|
|
|
|
Future<bool> saveGroup(List<GroupEntity> groupList) async {
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
return prefs.setString(
|
|
key,
|
|
json.encode(
|
|
{'groups': groupList.map((group) => group.toJson()).toList()}));
|
|
}
|
|
|
|
Future<bool> saveTheme(int setting) async{
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
return prefs.setInt(key, setting);
|
|
}
|
|
|
|
Future<int> getTheme() async{
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
if(prefs.getInt(key) == null) await prefs.setInt(key, 0);
|
|
return prefs.getInt(key);
|
|
}
|
|
|
|
Future<bool> savePlaylist(List<String> playList) async{
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
return prefs.setStringList(key, playList);
|
|
}
|
|
|
|
Future<List<String>> getPlayList() async{
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
if(prefs.getStringList(key) == null) {await prefs.setStringList(key, []);}
|
|
print(prefs.getStringList(key).toString());
|
|
return prefs.getStringList(key);
|
|
}
|
|
}
|