git-touch-android-ios-app/lib/models/code.dart

112 lines
2.9 KiB
Dart

import 'package:fimber/fimber.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_highlight/theme_map.dart';
import 'package:git_touch/utils/utils.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:shared_preferences/shared_preferences.dart';
class CodeModel with ChangeNotifier {
static var themes = themeMap.keys.toList();
static const fontSizes = [12, 13, 14, 15, 16, 17, 18, 19, 20];
static final fontFamilies = [
'System',
// https://fonts.google.com/?category=Monospace
...GoogleFonts.asMap().keys.where((element) =>
element.endsWith('Mono') ||
[
'Inconsolata',
'Source Code Pro',
'Nanum Gothic Coding',
'Cousine',
'Anonymous Pro',
'Courier Prime',
'VT323',
'Fira Code'
].contains(element)),
];
String _theme = 'vs';
String _themeDark = 'vs2015';
int _fontSize = 14;
String _fontFamily = 'System';
String get theme => _theme;
String get themeDark => _themeDark;
int get fontSize => _fontSize;
String get fontFamily => _fontFamily;
TextStyle get fontStyle {
if (_fontFamily == 'System') {
return TextStyle(
fontFamily: CommonStyle.monospace, fontSize: fontSize.toDouble());
} else {
return GoogleFonts.getFont(_fontFamily, fontSize: fontSize.toDouble());
}
}
Future<void> init() async {
final prefs = await SharedPreferences.getInstance();
final vh = prefs.getString(StorageKeys.codeTheme);
final vdh = prefs.getString(StorageKeys.codeThemeDark);
final vs = prefs.getInt(StorageKeys.iCodeFontSize);
final vf = prefs.getString(StorageKeys.codeFontFamily);
Fimber.d('read code: $vh, $vs, $vf');
if (themeMap.keys.contains(vh)) {
_theme = vh!;
}
if (themeMap.keys.contains(vdh)) {
_themeDark = vdh!;
}
if (fontSizes.contains(vs)) {
_fontSize = vs!;
}
if (fontFamilies.contains(vf)) {
_fontFamily = vf!;
}
notifyListeners();
}
setTheme(String v) async {
final prefs = await SharedPreferences.getInstance();
await prefs.setString(StorageKeys.codeTheme, v);
Fimber.d('write code theme: $v');
_theme = v;
notifyListeners();
}
setThemeDark(String v) async {
final prefs = await SharedPreferences.getInstance();
await prefs.setString(StorageKeys.codeThemeDark, v);
Fimber.d('write code theme dark: $v');
_themeDark = v;
notifyListeners();
}
setFontSize(int v) async {
final prefs = await SharedPreferences.getInstance();
await prefs.setInt(StorageKeys.iCodeFontSize, v);
Fimber.d('write code font size: $v');
_fontSize = v;
notifyListeners();
}
setFontFamily(String v) async {
final prefs = await SharedPreferences.getInstance();
await prefs.setString(StorageKeys.codeFontFamily, v);
Fimber.d('write code font family: $v');
_fontFamily = v;
notifyListeners();
}
}