diff --git a/lib/app/app.dart b/lib/app/app.dart index ce4a5aa96..2a8ec5e2b 100644 --- a/lib/app/app.dart +++ b/lib/app/app.dart @@ -1,2 +1,2 @@ -// @dart=2.9 + export "view/app.dart"; diff --git a/lib/app/view/app.dart b/lib/app/view/app.dart index 09e1fd776..5590c92fe 100644 --- a/lib/app/view/app.dart +++ b/lib/app/view/app.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'dart:async'; import 'dart:io'; @@ -20,10 +20,10 @@ import 'package:flutter_localizations/flutter_localizations.dart'; class App extends StatefulWidget { final Locale locale; - const App({Key key, this.locale = const Locale("en")}) : super(key: key); + const App({Key? key, this.locale = const Locale("en")}) : super(key: key); static void setLocale(BuildContext context, Locale newLocale) { - _AppState state = context.findAncestorStateOfType<_AppState>(); + _AppState state = context.findAncestorStateOfType<_AppState>()!; state.setLocale(newLocale); } @@ -32,9 +32,9 @@ class App extends StatefulWidget { } class _AppState extends State { - StreamSubscription _signedOutEvent; - StreamSubscription _signedInEvent; - Locale locale; + late StreamSubscription _signedOutEvent; + late StreamSubscription _signedInEvent; + Locale? locale; setLocale(Locale newLocale) { setState(() { locale = newLocale; diff --git a/lib/core/configuration.dart b/lib/core/configuration.dart index 5633caa01..ed4cf2107 100644 --- a/lib/core/configuration.dart +++ b/lib/core/configuration.dart @@ -452,7 +452,7 @@ class Configuration { return _preferences.setBool(keyShouldShowLockScreen, value); } - void setVolatilePassword(String volatilePassword) { + void setVolatilePassword(String? volatilePassword) { _volatilePassword = volatilePassword; } diff --git a/lib/ente_theme_data.dart b/lib/ente_theme_data.dart index d819c066d..7837e0360 100644 --- a/lib/ente_theme_data.dart +++ b/lib/ente_theme_data.dart @@ -358,6 +358,9 @@ extension CustomColorScheme on ColorScheme { EnteTheme get enteTheme => brightness == Brightness.light ? lightTheme : darkTheme; + + EnteTheme get inverseEnteTheme => + brightness == Brightness.light ? darkTheme : lightTheme; } OutlinedButtonThemeData buildOutlinedButtonThemeData({ diff --git a/lib/l10n/arb/app_de.arb b/lib/l10n/arb/app_de.arb index a41750b2d..eb36c5fd2 100644 --- a/lib/l10n/arb/app_de.arb +++ b/lib/l10n/arb/app_de.arb @@ -46,13 +46,13 @@ }, "contactSupport": "Support kontaktieren", "verifyPassword": "Passwort überprüfen", - "pleaseWaitTitle": "Bitte warten...", + "pleaseWait": "Bitte warten...", "generatingEncryptionKeysTitle": "Generierung von Verschlüsselungsschlüsseln...", "recreatePassword": "Passwort wiederherstellen", "recreatePasswordMessage": "Das aktuelle Gerät ist nicht leistungsfähig genug, um Ihr Passwort zu verifizieren, daher müssen wir es einmalig auf eine Weise neu generieren, die mit allen Geräten funktioniert. \n\nBitte melden Sie sich mit Ihrem Wiederherstellungsschlüssel an und generieren Sie Ihr Passwort neu (Sie können dasselbe erneut verwenden, wenn Sie möchten).", - "useRecoveryKeyAction": "Wiederherstellungsschlüssel verwenden", - "incorrectPassword": "Falsches Passwort", - "welcomeBackTitle": "Willkommen zurück!", + "useRecoveryKey": "Wiederherstellungsschlüssel verwenden", + "incorrectPasswordTitle": "Falsches Passwort", + "welcomeBack": "Willkommen zurück!", "madeWithLoveAtPrefix": "gemacht mit ❤️ bei ", "changeEmail": "E-Mail ändern", "cancel": "Abbrechen", @@ -62,7 +62,7 @@ "support": "Unterstützung", "settings": "Einstellungen", "copied": "Kopiert", - "tryAgainMessage": "Bitte versuchen Sie es erneut", + "pleaseTryAgain": "Bitte versuchen Sie es erneut", "existingUser": "Bestehender Benutzer", "newUser": "Neu bei ente", "delete": "Löschen", @@ -103,9 +103,9 @@ "confirmAccountDeleteMessage": "Ihre hochgeladenen Daten werden in allen Anwendungen (sowohl Fotos als auch Authenticator) zur Löschung vorgesehen und Ihr Konto wird dauerhaft gelöscht.", "sendEmail": "E-Mail senden", "createNewAccount": "Neues Konto erstellen", - "passwordStrengthWeak": "Schwach", - "passwordStrengthStrong": "Stark", - "passwordStrengthModerate": "Mittel", + "weakStrength": "Schwach", + "strongStrength": "Stark", + "moderateStrength": "Mittel", "confirmPassword": "Bestätigen Sie das Passwort", "close": "Schließen", "oopsSomethingWentWrong": "Ups, da ist etwas schief gelaufen.", diff --git a/lib/l10n/arb/app_en.arb b/lib/l10n/arb/app_en.arb index 4a5acb3dc..afd445a65 100644 --- a/lib/l10n/arb/app_en.arb +++ b/lib/l10n/arb/app_en.arb @@ -55,13 +55,13 @@ }, "contactSupport": "Contact support", "verifyPassword": "Verify password", - "pleaseWaitTitle": "Please wait...", + "pleaseWait": "Please wait...", "generatingEncryptionKeysTitle": "Generating encryption keys...", "recreatePassword": "Recreate password", "recreatePasswordMessage": "The current device is not powerful enough to verify your password, so we need to regenerate it once in a way that works with all devices. \n\nPlease login using your recovery key and regenerate your password (you can use the same one again if you wish).", - "useRecoveryKeyAction": "Use recovery key", - "incorrectPassword": "Incorrect password", - "welcomeBackTitle": "Welcome back!", + "useRecoveryKey": "Use recovery key", + "incorrectPasswordTitle": "Incorrect password", + "welcomeBack": "Welcome back!", "madeWithLoveAtPrefix": "made with ❤️ at ", "supportDevs" : "Subscribe to ente to support this project.", "supportDiscount" : "Use coupon code \"AUTH\" to get 10% off first year", @@ -84,7 +84,7 @@ "support": "Support", "settings": "Settings", "copied": "Copied", - "tryAgainMessage": "Please try again", + "pleaseTryAgain": "Please try again", "existingUser": "Existing User", "newUser" : "New to ente", "delete": "Delete", @@ -126,9 +126,9 @@ "confirmAccountDeleteMessage": "Your uploaded data, across all apps (Photos and Authenticator both), will be scheduled for deletion, and your account will be permanently deleted.", "sendEmail": "Send email", "createNewAccount": "Create new account", - "passwordStrengthWeak": "Weak", - "passwordStrengthStrong": "Strong", - "passwordStrengthModerate": "Moderate", + "weakStrength": "Weak", + "strongStrength": "Strong", + "moderateStrength": "Moderate", "confirmPassword": "Confirm password", "close": "Close", "oopsSomethingWentWrong": "Oops, Something went wrong.", @@ -153,9 +153,6 @@ "doThisLater": "Do this later", "saveKey": "Save key", "createAccount": "Create account", - "weakStrength": "Weak", - "strongStrength": "Strong", - "moderateStrength": "Moderate", "passwordStrength": "Password strength: {passwordStrengthValue}", "@passwordStrength": { "description": "Text to indicate the password strength", @@ -174,7 +171,29 @@ "termsOfServicesTitle": "Terms", "encryption": "Encryption", "ackPasswordLostWarning": "I understand that if I lose my password, I may lose my data since my data is end-to-end encrypted.", - "accountWelcomeBack": "Welcome back!", "loginTerms": "By clicking log in, I agree to the terms of service and privacy policy", - "logInLabel": "Log in" + "logInLabel": "Log in", + "logout": "Logout", + "yesLogout": "Yes, logout", + "exit": "Exit", + "verifyingRecoveryKey": "Verifying recovery key...", + "recoveryKeyVerified": "Recovery key verified", + "recoveryKeySuccessBody": "Great! Your recovery key is valid. Thank you for verifying.\n\nPlease remember to keep your recovery key safely backed up.", + "invalidRecoveryKey": "The recovery key you entered is not valid. Please make sure it contains 24 words, and check the spelling of each.\n\nIf you entered an older recovery code, make sure it is 64 characters long, and check each of them.", + "recreatePasswordTitle": "Recreate password", + "recreatePasswordBody": "The current device is not powerful enough to verify your password, but we can regenerate in a way that works with all devices.\n\nPlease login using your recovery key and regenerate your password (you can use the same one again if you wish).", + "invalidKey": "Invalid key", + "tryAgain": "Try again", + "viewRecoveryKey": "View recovery key", + "confirmRecoveryKey": "Confirm recovery key", + "recoveryKeyVerifyReason": "Your recovery key is the only way to recover your photos if you forget your password. You can find your recovery key in Settings > Account.\n\nPlease enter your recovery key here to verify that you have saved it correctly.", + "confirmYourRecoveryKey": "Confirm your recovery key", + "confirm": "Confirm", + "emailYourLogs": "Email your logs", + "pleaseSendTheLogsTo": "Please send the logs to \n{toEmail}", + "copyEmailAddress": "Copy email address", + "exportLogs": "Export logs", + "enterYourRecoveryKey": "Enter your recovery key", + "tempErrorContactSupportIfPersists": "It looks like something went wrong. Please retry after some time. If the error persists, please contact our support team.", + "itLooksLikeSomethingWentWrongPleaseRetryAfterSome": "It looks like something went wrong. Please retry after some time. If the error persists, please contact our support team." } diff --git a/lib/l10n/arb/app_fi.arb b/lib/l10n/arb/app_fi.arb index 314e919fc..36b3e0fff 100644 --- a/lib/l10n/arb/app_fi.arb +++ b/lib/l10n/arb/app_fi.arb @@ -52,13 +52,13 @@ }, "contactSupport": "Ota yhteyttä käyttötukeen", "verifyPassword": "Vahvista salasana", - "pleaseWaitTitle": "Odota hetki...", + "pleaseWait": "Odota hetki...", "generatingEncryptionKeysTitle": "Luodaan salausavaimia...", "recreatePassword": "Luo salasana uudelleen", "recreatePasswordMessage": "Nykyinen laite ei ole riittävän tehokas salasanasi varmistamiseen, joten se on uudistettava kerran sillä tavalla että se toimii sen jälkeen kaikkien laitteiden kanssa. \n\nOle hyvä ja kirjaudu sisään palautusavaimellasi ja luo salasanasi uudelleen (voit halutessasi käyttää aivan samaa salasanaa).", - "useRecoveryKeyAction": "Käytä palautusavainta", - "incorrectPassword": "Salasana on väärin", - "welcomeBackTitle": "Tervetuloa takaisin!", + "useRecoveryKey": "Käytä palautusavainta", + "incorrectPasswordTitle": "Salasana on väärin", + "welcomeBack": "Tervetuloa takaisin!", "madeWithLoveAtPrefix": "tehty ❤️:lla täällä ", "supportDevs": "Tilaa ente tukeaksesi tätä hanketta.", "supportDiscount": "Käytä kuponkikoodia \"AUTH\" saadaksesi 10% alennuksen ensimmäisestä vuodesta", @@ -71,7 +71,7 @@ "support": "Tuki", "settings": "Asetukset", "copied": "Jäljennetty", - "tryAgainMessage": "Yritä uudestaan", + "pleaseTryAgain": "Yritä uudestaan", "existingUser": "Jo valmiiksi olemassaoleva käyttäjä", "newUser": "Uusi Ente-käyttäjä", "delete": "Poista", @@ -113,9 +113,9 @@ "confirmAccountDeleteMessage": "Lataamasi tiedot kaikkien sovellusten kesken (molemmat, sekä kuvat ja todenteet) ajastetaan poistettavaksi ja tilisi poistetaan pysyvästi.", "sendEmail": "Lähetä sähköpostia", "createNewAccount": "Luo uusi tili", - "passwordStrengthWeak": "Heikko salasana", - "passwordStrengthStrong": "Vahva salasana", - "passwordStrengthModerate": "Kohtalainen salasana", + "weakStrength": "Heikko salasana", + "strongStrength": "Vahva salasana", + "moderateStrength": "Kohtalainen salasana", "confirmPassword": "Vahvista salasana", "close": "Sulje", "oopsSomethingWentWrong": "Hupsista! Jotakin meni nyt pieleen." diff --git a/lib/l10n/arb/app_fr.arb b/lib/l10n/arb/app_fr.arb index 579d6652d..5084d8a08 100644 --- a/lib/l10n/arb/app_fr.arb +++ b/lib/l10n/arb/app_fr.arb @@ -46,13 +46,13 @@ }, "contactSupport": "Contacter le support", "verifyPassword": "Vérifier le mot de passe", - "pleaseWaitTitle": "Veuillez patienter...", + "pleaseWait": "Veuillez patienter...", "generatingEncryptionKeysTitle": "Génération des clés de chiffrement...", "recreatePassword": "Recréer le mot de passe", "recreatePasswordMessage": "L'appareil actuel n'est pas assez puissant pour vérifier votre mot de passe, donc nous avons besoin de le régénérer une fois d'une manière qu'il fonctionne avec tous les périphériques.\n\nVeuillez vous connecter en utilisant votre clé de récupération et régénérer votre mot de passe (vous pouvez utiliser le même si vous le souhaitez).", - "useRecoveryKeyAction": "Utiliser la clé de récupération", - "incorrectPassword": "Mot de passe incorrect", - "welcomeBackTitle": "Bon retour parmi nous !", + "useRecoveryKey": "Utiliser la clé de récupération", + "incorrectPasswordTitle": "Mot de passe incorrect", + "welcomeBack": "Bon retour parmi nous !", "madeWithLoveAtPrefix": "fait avec ❤️ à ", "supportDiscount": "Utilisez le code coupon \"AUTH\" pour obtenir 10% de réduction sur la première année", "changeEmail": "modifier l'e-mail", @@ -63,7 +63,7 @@ "support": "Support", "settings": "Paramètres", "copied": "Copié", - "tryAgainMessage": "Veuillez réessayer", + "pleaseTryAgain": "Veuillez réessayer", "existingUser": "Utilisateur existant", "newUser": "Nouveau sur ente", "delete": "Supprimer", @@ -105,9 +105,9 @@ "confirmAccountDeleteMessage": "Vos données téléchargées, à travers toutes les applications (Photos et Authenticator), seront planifiées pour la suppression, et votre compte sera définitivement supprimé.", "sendEmail": "Envoyer un e-mail", "createNewAccount": "Créer un nouveau compte", - "passwordStrengthWeak": "Faible", - "passwordStrengthStrong": "Fort", - "passwordStrengthModerate": "Modéré", + "weakStrength": "Faible", + "strongStrength": "Fort", + "moderateStrength": "Modéré", "confirmPassword": "Confirmer le mot de passe", "close": "Fermer", "oopsSomethingWentWrong": "Oops ! Une erreur s'est produite.", diff --git a/lib/l10n/arb/app_it.arb b/lib/l10n/arb/app_it.arb index 456573c5c..40c5c62c0 100644 --- a/lib/l10n/arb/app_it.arb +++ b/lib/l10n/arb/app_it.arb @@ -46,13 +46,13 @@ }, "contactSupport": "Contatta il supporto", "verifyPassword": "Verifica la password", - "pleaseWaitTitle": "Attendere prego...", + "pleaseWait": "Attendere prego...", "generatingEncryptionKeysTitle": "Generazione delle chiavi di crittografia...", "recreatePassword": "Crea una nuova password", "recreatePasswordMessage": "Il tuo dispositivo non è abbastanza potente per verificare la tua password, quindi abbiamo bisogno di rigenerarla in un modo che funziona con tutti i dispositivi. \n\nEffettua il login utilizzando la tua chiave di recupero e rigenera la tua password (puoi utilizzare nuovamente la stessa se vuoi).", - "useRecoveryKeyAction": "Utilizza un codice di recupero", - "incorrectPassword": "Password sbagliata", - "welcomeBackTitle": "Bentornato!", + "useRecoveryKey": "Utilizza un codice di recupero", + "incorrectPasswordTitle": "Password sbagliata", + "welcomeBack": "Bentornato!", "madeWithLoveAtPrefix": "realizzato con ❤️ a ", "supportDevs": "Iscriviti a ente per supportare questo progetto.", "supportDiscount": "Utilizzare il codice coupon \"AUTH\" per ottenere il 10% di sconto al primo anno", @@ -65,7 +65,7 @@ "support": "Supporto", "settings": "Impostazioni", "copied": "Copiato", - "tryAgainMessage": "Per favore riprova", + "pleaseTryAgain": "Per favore riprova", "existingUser": "Accedi", "newUser": "Nuovo utente", "delete": "Cancella", @@ -107,9 +107,9 @@ "confirmAccountDeleteMessage": "I tuoi dati caricati, in tutte le app (sia foto che autenticatore), verranno pianificati per la cancellazione, e il tuo account sarà eliminato in modo permanente.", "sendEmail": "Invia email", "createNewAccount": "Crea un nuovo account", - "passwordStrengthWeak": "Debole", - "passwordStrengthStrong": "Forte", - "passwordStrengthModerate": "Mediocre", + "weakStrength": "Debole", + "strongStrength": "Forte", + "moderateStrength": "Mediocre", "confirmPassword": "Conferma la password", "close": "Chiudi", "oopsSomethingWentWrong": "Oops, qualcosa è andato storto.", diff --git a/lib/l10n/arb/app_nl.arb b/lib/l10n/arb/app_nl.arb index 5cf17903c..4b7a7e921 100644 --- a/lib/l10n/arb/app_nl.arb +++ b/lib/l10n/arb/app_nl.arb @@ -46,13 +46,13 @@ }, "contactSupport": "Klantenservice", "verifyPassword": "Bevestig wachtwoord", - "pleaseWaitTitle": "Een ogenblik geduld...", + "pleaseWait": "Een ogenblik geduld...", "generatingEncryptionKeysTitle": "Encryptiesleutels genereren...", "recreatePassword": "Wachtwoord opnieuw instellen", "recreatePasswordMessage": "Het huidige apparaat is niet krachtig genoeg om je wachtwoord te verifiëren, dus moeten we de code een keer opnieuw genereren op een manier die met alle apparaten werkt.\n\nLog in met behulp van uw herstelcode en genereer opnieuw uw wachtwoord (je kunt dezelfde indien gewenst opnieuw gebruiken).", - "useRecoveryKeyAction": "Herstelcode gebruiken", - "incorrectPassword": "Onjuist wachtwoord", - "welcomeBackTitle": "Welkom terug!", + "useRecoveryKey": "Herstelcode gebruiken", + "incorrectPasswordTitle": "Onjuist wachtwoord", + "welcomeBack": "Welkom terug!", "madeWithLoveAtPrefix": "gemaakt met ❤️ door ", "supportDiscount": "Gebruik couponcode \"AUTH\" om 10% korting te krijgen op het eerste jaar", "changeEmail": "e-mailadres wijzigen", @@ -64,7 +64,7 @@ "support": "Ondersteuning", "settings": "Instellingen", "copied": "Gekopieerd", - "tryAgainMessage": "Probeer het nog eens", + "pleaseTryAgain": "Probeer het nog eens", "existingUser": "Bestaande gebruiker", "newUser": "Nieuw bij ente", "delete": "Verwijderen", @@ -106,9 +106,9 @@ "confirmAccountDeleteMessage": "Uw geüploade gegevens, in alle apps (Photos en Authenticator), worden ingepland voor verwijdering en uw account zal permanent worden verwijderd.", "sendEmail": "E-mail versturen", "createNewAccount": "Nieuw account aanmaken", - "passwordStrengthWeak": "Zwak", - "passwordStrengthStrong": "Sterk", - "passwordStrengthModerate": "Matig", + "weakStrength": "Zwak", + "strongStrength": "Sterk", + "moderateStrength": "Matig", "confirmPassword": "Wachtwoord bevestigen", "close": "Sluiten", "oopsSomethingWentWrong": "Oeps, er is iets fout gegaan." diff --git a/lib/l10n/arb/app_ru.arb b/lib/l10n/arb/app_ru.arb index 1fcdc1f9c..d1b60cf86 100644 --- a/lib/l10n/arb/app_ru.arb +++ b/lib/l10n/arb/app_ru.arb @@ -46,13 +46,13 @@ }, "contactSupport": "Связаться с поддержкой", "verifyPassword": "Подтверждение пароля", - "pleaseWaitTitle": "Пожалуйста, подождите...", + "pleaseWait": "Пожалуйста, подождите...", "generatingEncryptionKeysTitle": "Генерируем ключи шифрования...", "recreatePassword": "Воссоздать пароль заново", "recreatePasswordMessage": "Текущее устройство недостаточно мощное для проверки пароля, поэтому нам нужно регенерировать его один раз таким образом, чтобы работать со всеми устройствами. \n\nПожалуйста, войдите, используя ваш ключ восстановления и сгенерируйте ваш пароль (вы можете использовать тот же самый, если пожелаете).", - "useRecoveryKeyAction": "Использовать ключ восстановления", - "incorrectPassword": "Неправильный пароль", - "welcomeBackTitle": "С возвращением!", + "useRecoveryKey": "Использовать ключ восстановления", + "incorrectPasswordTitle": "Неправильный пароль", + "welcomeBack": "С возвращением!", "madeWithLoveAtPrefix": "сделана с ❤️ в ", "supportDevs": "Подпишитесь на ente для поддержки этого проекта.", "supportDiscount": "Используйте код скидки \"AUTH\", чтобы получить скидку 10% в первый год", @@ -64,7 +64,7 @@ "support": "Поддержка", "settings": "Настройки", "copied": "Скопировано", - "tryAgainMessage": "Пожалуйста, попробуйте ещё раз", + "pleaseTryAgain": "Пожалуйста, попробуйте ещё раз", "existingUser": "Существующий пользователь", "newUser": "Новый аккаунт", "delete": "Удалить", @@ -106,9 +106,9 @@ "confirmAccountDeleteMessage": "Ваши загруженные данные во всех приложениях (как фотографии, так и средство аутентификации) будут запланированы к удалению, а ваш аккаунт будет удален безвозвратно.", "sendEmail": "Отправить электронное письмо", "createNewAccount": "Создать новый аккаунт", - "passwordStrengthWeak": "Слабый", - "passwordStrengthStrong": "Крепкий", - "passwordStrengthModerate": "Средний", + "weakStrength": "Слабый", + "strongStrength": "Крепкий", + "moderateStrength": "Средний", "confirmPassword": "Подтвердить пароль", "close": "Закрыть", "oopsSomethingWentWrong": "Ой, что-то пошло не так." diff --git a/lib/l10n/arb/app_tr.arb b/lib/l10n/arb/app_tr.arb index c465cf70f..8de9b2c33 100644 --- a/lib/l10n/arb/app_tr.arb +++ b/lib/l10n/arb/app_tr.arb @@ -52,13 +52,13 @@ }, "contactSupport": "Destek ekibiyle iletişime geçin", "verifyPassword": "Şifreyi doğrulayın", - "pleaseWaitTitle": "Lütfen bekleyin...", + "pleaseWait": "Lütfen bekleyin...", "generatingEncryptionKeysTitle": "Şifreleme anahtarları üretiliyor...", "recreatePassword": "Şifreyi yeniden oluştur", "recreatePasswordMessage": "Bu cihaz, şifrenizi doğrulayabilecek kadar güçlü değil, bu sebeple şifreyi her cihazda çalışabilecek bir yolla oluşturmamız gerekiyor.\n\nLütfen kurtarma anahtarınızla giriş yapın ve şifrenizi tekrar oluşturun (dilerseniz aynı şifreyi kullanabilirsiniz).", - "useRecoveryKeyAction": "Kurtarma anahtarını kullan", - "incorrectPassword": "Yanlış şifre", - "welcomeBackTitle": "Tekrar hoş geldiniz!", + "useRecoveryKey": "Kurtarma anahtarını kullan", + "incorrectPasswordTitle": "Yanlış şifre", + "welcomeBack": "Tekrar hoş geldiniz!", "madeWithLoveAtPrefix": "❤️ ile yapılmıştır ", "supportDevs": "Bu projeyi desteklemek için ente kanalına abone olun.", "supportDiscount": "İlk yılda %10 indirim için \"AUTH\" kupon kodunu kullanın", @@ -71,7 +71,7 @@ "support": "Destek", "settings": "Ayarlar", "copied": "Kopyalandı", - "tryAgainMessage": "Lütfen tekrar deneyin", + "pleaseTryAgain": "Lütfen tekrar deneyin", "existingUser": "Mevcut kullanıcı", "newUser": "Yeni ente kullanıcısı", "delete": "Sil", @@ -113,9 +113,9 @@ "confirmAccountDeleteMessage": "Tüm uygulamalarda (Fotoğraflar ve Kimlik doğrulayıcı) kaydedilen verileriniz zamanlı silinmeye ayarlanacak ve hesabınız kalıcı olarak silinecektir.", "sendEmail": "E-posta gönder", "createNewAccount": "Yeni hesap oluşturun", - "passwordStrengthWeak": "Zayıf", - "passwordStrengthStrong": "Güçlü", - "passwordStrengthModerate": "Orta", + "weakStrength": "Zayıf", + "strongStrength": "Güçlü", + "moderateStrength": "Orta", "confirmPassword": "Şifreyi onayla", "close": "Kapat", "oopsSomethingWentWrong": "Hay aksi, bir sorun oluştu." diff --git a/lib/main.dart b/lib/main.dart index f1a8c382a..a6a6246db 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,4 +1,4 @@ -// @dart=2.9 +import 'package:adaptive_theme/adaptive_theme.dart'; import "package:ente_auth/app/view/app.dart"; import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/core/constants.dart'; @@ -25,10 +25,11 @@ final _logger = Logger("main"); void main() async { WidgetsFlutterBinding.ensureInitialized(); - await _runInForeground(); + final savedThemeMode = await AdaptiveTheme.getThemeMode(); + await _runInForeground(savedThemeMode); } -Future _runInForeground() async { +Future _runInForeground(AdaptiveThemeMode? savedThemeMode) async { return await _runWithLogs(() async { _logger.info("Starting app in foreground"); await _init(false, via: 'mainMethod'); @@ -42,11 +43,19 @@ Future _runInForeground() async { locale: locale, lightTheme: lightThemeData, darkTheme: darkThemeData, + savedThemeMode: _themeMode(savedThemeMode), ), ); }); } +ThemeMode _themeMode(AdaptiveThemeMode? savedThemeMode) { + if (savedThemeMode == null) return ThemeMode.system; + if (savedThemeMode.isLight) return ThemeMode.light; + if (savedThemeMode.isDark) return ThemeMode.dark; + return ThemeMode.system; +} + Future _runWithLogs(Function() function, {String prefix = ""}) async { await SuperLogging.main( LogConfig( @@ -60,7 +69,7 @@ Future _runWithLogs(Function() function, {String prefix = ""}) async { ); } -Future _init(bool bool, {String via}) async { +Future _init(bool bool, {String? via}) async { CryptoUtil.init(); await PreferenceService.instance.init(); await CodeStore.instance.init(); diff --git a/lib/services/billing_service.dart b/lib/services/billing_service.dart index 62d299d49..1bb490049 100644 --- a/lib/services/billing_service.dart +++ b/lib/services/billing_service.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'dart:io'; import 'package:dio/dio.dart'; @@ -32,9 +30,9 @@ class BillingService { bool _isOnSubscriptionPage = false; - Subscription _cachedSubscription; + Subscription? _cachedSubscription; - Future _future; + Future? _future; Future init() async {} @@ -49,7 +47,7 @@ class BillingService { .then((response) { return BillingPlans.fromMap(response.data); }); - return _future; + return _future!; } Future> _fetchPrivateBillingPlans() { @@ -89,7 +87,7 @@ class BillingService { ); return Subscription.fromMap(response.data["subscription"]); } on DioError catch (e) { - if (e.response != null && e.response.statusCode == 409) { + if (e.response != null && e.response!.statusCode == 409) { throw SubscriptionAlreadyClaimedError(); } else { rethrow; @@ -118,7 +116,7 @@ class BillingService { rethrow; } } - return _cachedSubscription; + return _cachedSubscription!; } Future cancelStripeSubscription() async { diff --git a/lib/services/local_authentication_service.dart b/lib/services/local_authentication_service.dart index 2c0eff288..f161bb89f 100644 --- a/lib/services/local_authentication_service.dart +++ b/lib/services/local_authentication_service.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/ui/tools/app_lock.dart'; @@ -18,9 +18,9 @@ class LocalAuthenticationService { String infoMessage, ) async { if (await _isLocalAuthSupportedOnDevice()) { - AppLock.of(context).setEnabled(false); + AppLock.of(context)!.setEnabled(false); final result = await requestAuthentication(infoMessage); - AppLock.of(context).setEnabled( + AppLock.of(context)!.setEnabled( Configuration.instance.shouldShowLockScreen(), ); if (!result) { @@ -41,17 +41,17 @@ class LocalAuthenticationService { String errorDialogTitle = "", ]) async { if (await LocalAuthentication().isDeviceSupported()) { - AppLock.of(context).disable(); + AppLock.of(context)!.disable(); final result = await requestAuthentication( infoMessage, ); if (result) { - AppLock.of(context).setEnabled(shouldEnableLockScreen); + AppLock.of(context)!.setEnabled(shouldEnableLockScreen); await Configuration.instance .setShouldShowLockScreen(shouldEnableLockScreen); return true; } else { - AppLock.of(context) + AppLock.of(context)! .setEnabled(Configuration.instance.shouldShowLockScreen()); } } else { diff --git a/lib/services/update_service.dart b/lib/services/update_service.dart index 94f8ae3d7..30cc9b769 100644 --- a/lib/services/update_service.dart +++ b/lib/services/update_service.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'dart:io'; @@ -16,10 +16,10 @@ class UpdateService { static final UpdateService instance = UpdateService._privateConstructor(); static const kUpdateAvailableShownTimeKey = "update_available_shown_time_key"; - LatestVersionInfo _latestVersion; + LatestVersionInfo? _latestVersion; final _logger = Logger("UpdateService"); - PackageInfo _packageInfo; - SharedPreferences _prefs; + late PackageInfo _packageInfo; + late SharedPreferences _prefs; Future init() async { _packageInfo = await PackageInfo.fromPlatform(); @@ -33,27 +33,27 @@ class UpdateService { try { _latestVersion = await _getLatestVersionInfo(); final currentVersionCode = int.parse(_packageInfo.buildNumber); - return currentVersionCode < _latestVersion.code; + return currentVersionCode < _latestVersion!.code!; } catch (e) { _logger.severe(e); return false; } } - bool shouldForceUpdate(LatestVersionInfo info) { + bool shouldForceUpdate(LatestVersionInfo? info) { if (!isIndependent()) { return false; } try { final currentVersionCode = int.parse(_packageInfo.buildNumber); - return currentVersionCode < info.lastSupportedVersionCode; + return currentVersionCode < info!.lastSupportedVersionCode; } catch (e) { _logger.severe(e); return false; } } - LatestVersionInfo getLatestVersionInfo() { + LatestVersionInfo? getLatestVersionInfo() { return _latestVersion; } @@ -69,7 +69,7 @@ class UpdateService { (now - lastNotificationShownTime) > (3 * microSecondsInDay); if (shouldUpdate && hasBeen3DaysSinceLastNotification && - _latestVersion.shouldNotify) { + _latestVersion!.shouldNotify!) { NotificationService.instance.showNotification( "Update available", "Click to install our best version yet", @@ -96,14 +96,14 @@ class UpdateService { } class LatestVersionInfo { - final String name; - final int code; + final String? name; + final int? code; final List changelog; - final bool shouldForceUpdate; + final bool? shouldForceUpdate; final int lastSupportedVersionCode; - final String url; - final int size; - final bool shouldNotify; + final String? url; + final int? size; + final bool? shouldNotify; LatestVersionInfo( this.name, diff --git a/lib/services/user_service.dart b/lib/services/user_service.dart index e3e9ee174..a363cff2f 100644 --- a/lib/services/user_service.dart +++ b/lib/services/user_service.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'package:bip39/bip39.dart' as bip39; import 'package:dio/dio.dart'; import 'package:ente_auth/core/configuration.dart'; @@ -32,14 +30,14 @@ class UserService { final _dio = Network.instance.getDio(); final _logger = Logger("UserSerivce"); final _config = Configuration.instance; - ValueNotifier emailValueNotifier; + late ValueNotifier emailValueNotifier; UserService._privateConstructor(); static final UserService instance = UserService._privateConstructor(); Future init() async { emailValueNotifier = - ValueNotifier(Configuration.instance.getEmail()); + ValueNotifier(Configuration.instance.getEmail()); } Future sendOtt( @@ -49,7 +47,7 @@ class UserService { bool isCreateAccountScreen = false, }) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { final response = await _dio.post( @@ -75,19 +73,19 @@ class UserService { ); return; } - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } on DioError catch (e) { await dialog.hide(); _logger.info(e); - if (e.response != null && e.response.statusCode == 403) { + if (e.response != null && e.response!.statusCode == 403) { showErrorDialog(context, "Oops", "This email is already in use"); } else { - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } catch (e) { await dialog.hide(); _logger.severe(e); - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } @@ -186,15 +184,15 @@ class UserService { } catch (e) { _logger.severe(e); await dialog.hide(); - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } - Future getDeleteChallenge( + Future getDeleteChallenge( BuildContext context, ) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { final response = await _dio.get( @@ -218,7 +216,7 @@ class UserService { } catch (e) { _logger.severe(e); await dialog.hide(); - await showGenericErrorDialog(context); + await showGenericErrorDialog(context: context); return null; } } @@ -257,13 +255,13 @@ class UserService { } catch (e) { _logger.severe(e); await dialog.hide(); - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } Future verifyEmail(BuildContext context, String ott) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { final response = await _dio.post( @@ -302,7 +300,7 @@ class UserService { } on DioError catch (e) { _logger.info(e); await dialog.hide(); - if (e.response != null && e.response.statusCode == 410) { + if (e.response != null && e.response!.statusCode == 410) { await showErrorDialog( context, "Oops", @@ -334,7 +332,7 @@ class UserService { String ott, ) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { final response = await _dio.post( @@ -360,7 +358,7 @@ class UserService { showErrorDialog(context, "Oops", "Verification failed, please try again"); } on DioError catch (e) { await dialog.hide(); - if (e.response != null && e.response.statusCode == 403) { + if (e.response != null && e.response!.statusCode == 403) { showErrorDialog(context, "Oops", "This email is already in use"); } else { showErrorDialog( @@ -447,7 +445,7 @@ class UserService { } } - Future getPaymentToken() async { + Future getPaymentToken() async { try { final response = await _dio.get( "${_config.getHttpEndpoint()}/users/payment-token", @@ -504,7 +502,7 @@ class UserService { Future recoverTwoFactor(BuildContext context, String sessionID) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { final response = await _dio.get( @@ -529,7 +527,7 @@ class UserService { } } on DioError catch (e) { _logger.severe(e); - if (e.response != null && e.response.statusCode == 404) { + if (e.response != null && e.response!.statusCode == 404) { showToast(context, "Session expired"); Navigator.of(context).pushAndRemoveUntil( MaterialPageRoute( @@ -589,7 +587,7 @@ class UserService { } on DioError catch (e) { await dialog.hide(); _logger.severe(e); - if (e.response != null && e.response.statusCode == 404) { + if (e.response != null && e.response!.statusCode == 404) { showToast(context, "Session expired"); Navigator.of(context).pushAndRemoveUntil( MaterialPageRoute( @@ -625,7 +623,7 @@ class UserService { String secretDecryptionNonce, ) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); String secret; try { @@ -675,7 +673,7 @@ class UserService { } } on DioError catch (e) { _logger.severe(e); - if (e.response != null && e.response.statusCode == 404) { + if (e.response != null && e.response!.statusCode == 404) { showToast(context, "Session expired"); Navigator.of(context).pushAndRemoveUntil( MaterialPageRoute( diff --git a/lib/theme/colors.dart b/lib/theme/colors.dart index ea5d061e0..ef068c9f6 100644 --- a/lib/theme/colors.dart +++ b/lib/theme/colors.dart @@ -11,6 +11,7 @@ class EnteColorScheme { // Backdrop Colors final Color backdropBase; final Color backdropBaseMute; + final Color backdropFaint; // Text Colors final Color textBase; @@ -19,6 +20,7 @@ class EnteColorScheme { // Fill Colors final Color fillBase; + final Color fillBasePressed; final Color fillMuted; final Color fillFaint; final Color fillFaintPressed; @@ -42,6 +44,8 @@ class EnteColorScheme { final Color warning700; final Color warning500; final Color warning400; + final Color warning800; + final Color caution500; const EnteColorScheme( @@ -50,10 +54,12 @@ class EnteColorScheme { this.backgroundElevated2, this.backdropBase, this.backdropBaseMute, + this.backdropFaint, this.textBase, this.textMuted, this.textFaint, this.fillBase, + this.fillBasePressed, this.fillMuted, this.fillFaint, this.fillFaintPressed, @@ -70,6 +76,7 @@ class EnteColorScheme { this.primary400 = _primary400, this.primary300 = _primary300, this.warning700 = _warning700, + this.warning800 = _warning800, this.warning500 = _warning500, this.warning400 = _warning700, this.caution500 = _caution500, @@ -81,11 +88,13 @@ const EnteColorScheme lightScheme = EnteColorScheme( backgroundElevatedLight, backgroundElevated2Light, backdropBaseLight, - backdropBaseMuteLight, + backdropMutedLight, + backdropFaintLight, textBaseLight, textMutedLight, textFaintLight, fillBaseLight, + fillBasePressedLight, fillMutedLight, fillFaintLight, fillFaintPressedLight, @@ -103,11 +112,13 @@ const EnteColorScheme darkScheme = EnteColorScheme( backgroundElevatedDark, backgroundElevated2Dark, backdropBaseDark, - backdropBaseMuteDark, + backdropMutedDark, + backdropFaintDark, textBaseDark, textMutedDark, textFaintDark, fillBaseDark, + fillBasePressedDark, fillMutedDark, fillFaintDark, fillFaintPressedDark, @@ -130,11 +141,13 @@ const Color backgroundElevatedDark = Color.fromRGBO(27, 27, 27, 1); const Color backgroundElevated2Dark = Color.fromRGBO(37, 37, 37, 1); // Backdrop Colors -const Color backdropBaseLight = Color.fromRGBO(255, 255, 255, 0.75); -const Color backdropBaseMuteLight = Color.fromRGBO(255, 255, 255, 0.30); +const Color backdropBaseLight = Color.fromRGBO(255, 255, 255, 0.92); +const Color backdropMutedLight = Color.fromRGBO(255, 255, 255, 0.75); +const Color backdropFaintLight = Color.fromRGBO(255, 255, 255, 0.30); -const Color backdropBaseDark = Color.fromRGBO(0, 0, 0, 0.65); -const Color backdropBaseMuteDark = Color.fromRGBO(0, 0, 0, 0.20); +const Color backdropBaseDark = Color.fromRGBO(0, 0, 0, 0.90); +const Color backdropMutedDark = Color.fromRGBO(0, 0, 0, 0.65); +const Color backdropFaintDark = Color.fromRGBO(0, 0, 0, 0.20); // Text Colors const Color textBaseLight = Color.fromRGBO(0, 0, 0, 1); @@ -147,11 +160,13 @@ const Color textFaintDark = Color.fromRGBO(255, 255, 255, 0.5); // Fill Colors const Color fillBaseLight = Color.fromRGBO(0, 0, 0, 1); +const Color fillBasePressedLight = Color.fromRGBO(0, 0, 0, 0.87); const Color fillMutedLight = Color.fromRGBO(0, 0, 0, 0.12); const Color fillFaintLight = Color.fromRGBO(0, 0, 0, 0.04); const Color fillFaintPressedLight = Color.fromRGBO(0, 0, 0, 0.08); const Color fillBaseDark = Color.fromRGBO(255, 255, 255, 1); +const Color fillBasePressedDark = Color.fromRGBO(255, 255, 255, 0.9); const Color fillMutedDark = Color.fromRGBO(255, 255, 255, 0.16); const Color fillFaintDark = Color.fromRGBO(255, 255, 255, 0.12); const Color fillFaintPressedDark = Color.fromRGBO(255, 255, 255, 0.06); @@ -184,6 +199,7 @@ const Color _primary300 = Color.fromARGB(255, 152, 77, 244); const Color _warning700 = Color.fromRGBO(234, 63, 63, 1); const Color _warning500 = Color.fromRGBO(255, 101, 101, 1); +const Color _warning800 = Color(0xFFF53434); const Color warning500 = Color.fromRGBO(255, 101, 101, 1); const Color _warning400 = Color.fromRGBO(255, 111, 111, 1); diff --git a/lib/theme/effects.dart b/lib/theme/effects.dart index e13558517..3bc00a3ec 100644 --- a/lib/theme/effects.dart +++ b/lib/theme/effects.dart @@ -1,8 +1,8 @@ import 'package:flutter/material.dart'; -const blurBase = 96; -const blurMuted = 48; -const blurFaint = 24; +const blurBase = 96.0; +const blurMuted = 48.0; +const blurFaint = 24.0; List shadowFloatLight = const [ BoxShadow(blurRadius: 10, color: Color.fromRGBO(0, 0, 0, 0.25)), diff --git a/lib/theme/ente_theme.dart b/lib/theme/ente_theme.dart index ab231d31a..e03ac38e9 100644 --- a/lib/theme/ente_theme.dart +++ b/lib/theme/ente_theme.dart @@ -36,10 +36,20 @@ EnteTheme darkTheme = EnteTheme( shadowButton: shadowButtonDark, ); -EnteColorScheme getEnteColorScheme(BuildContext context) { - return Theme.of(context).colorScheme.enteTheme.colorScheme; +EnteColorScheme getEnteColorScheme( + BuildContext context, { + bool inverse = false, +}) { + return inverse + ? Theme.of(context).colorScheme.inverseEnteTheme.colorScheme + : Theme.of(context).colorScheme.enteTheme.colorScheme; } -EnteTextTheme getEnteTextTheme(BuildContext context) { - return Theme.of(context).colorScheme.enteTheme.textTheme; +EnteTextTheme getEnteTextTheme( + BuildContext context, { + bool inverse = false, +}) { + return inverse + ? Theme.of(context).colorScheme.inverseEnteTheme.textTheme + : Theme.of(context).colorScheme.enteTheme.textTheme; } diff --git a/lib/ui/account/delete_account_page.dart b/lib/ui/account/delete_account_page.dart index 0cadad100..814a30886 100644 --- a/lib/ui/account/delete_account_page.dart +++ b/lib/ui/account/delete_account_page.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'dart:convert'; import 'package:ente_auth/core/configuration.dart'; @@ -16,7 +14,7 @@ import 'package:flutter_sodium/flutter_sodium.dart'; class DeleteAccountPage extends StatelessWidget { const DeleteAccountPage({ - Key key, + Key? key, }) : super(key: key); @override @@ -153,7 +151,7 @@ class DeleteAccountPage extends StatelessWidget { ); if (hasAuthenticated) { - final choice = await showChoiceDialog( + final choice = await showChoiceDialogOld( context, l10n.confirmAccountDeleteTitle, l10n.confirmAccountDeleteMessage, @@ -167,8 +165,8 @@ class DeleteAccountPage extends StatelessWidget { } final decryptChallenge = CryptoUtil.openSealSync( Sodium.base642bin(response.encryptedChallenge), - Sodium.base642bin(Configuration.instance.getKeyAttributes().publicKey), - Configuration.instance.getSecretKey(), + Sodium.base642bin(Configuration.instance.getKeyAttributes()!.publicKey), + Configuration.instance.getSecretKey()!, ); final challengeResponseStr = utf8.decode(decryptChallenge); await UserService.instance.deleteAccount(context, challengeResponseStr); diff --git a/lib/ui/account/login_page.dart b/lib/ui/account/login_page.dart index 61b69e82e..d9fe18a8b 100644 --- a/lib/ui/account/login_page.dart +++ b/lib/ui/account/login_page.dart @@ -79,7 +79,7 @@ class _LoginPageState extends State { padding: const EdgeInsets.symmetric(vertical: 30, horizontal: 20), child: Text( - l10n.accountWelcomeBack, + l10n.welcomeBack, style: Theme.of(context).textTheme.headline4, ), ), diff --git a/lib/ui/account/ott_verification_page.dart b/lib/ui/account/ott_verification_page.dart index 28915d7f4..3df518c2b 100644 --- a/lib/ui/account/ott_verification_page.dart +++ b/lib/ui/account/ott_verification_page.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/ente_theme_data.dart'; import 'package:ente_auth/services/user_service.dart'; @@ -15,7 +15,7 @@ class OTTVerificationPage extends StatefulWidget { this.email, { this.isChangeEmail = false, this.isCreateAccountScreen = false, - Key key, + Key? key, }) : super(key: key); @override @@ -29,7 +29,7 @@ class _OTTVerificationPageState extends State { Widget build(BuildContext context) { final isKeypadOpen = MediaQuery.of(context).viewInsets.bottom > 100; - FloatingActionButtonLocation fabLocation() { + FloatingActionButtonLocation? fabLocation() { if (isKeypadOpen) { return null; } else { @@ -114,7 +114,7 @@ class _OTTVerificationPageState extends State { text: TextSpan( style: Theme.of(context) .textTheme - .subtitle1 + .subtitle1! .copyWith(fontSize: 14), children: [ const TextSpan(text: "We've sent a mail to "), @@ -134,7 +134,7 @@ class _OTTVerificationPageState extends State { 'Please check your inbox (and spam) to complete verification', style: Theme.of(context) .textTheme - .subtitle1 + .subtitle1! .copyWith(fontSize: 14), ), ], @@ -187,7 +187,7 @@ class _OTTVerificationPageState extends State { }, child: Text( "Resend email", - style: Theme.of(context).textTheme.subtitle1.copyWith( + style: Theme.of(context).textTheme.subtitle1!.copyWith( fontSize: 14, decoration: TextDecoration.underline, ), diff --git a/lib/ui/account/password_entry_page.dart b/lib/ui/account/password_entry_page.dart index 8e93e9247..0cbc7772c 100644 --- a/lib/ui/account/password_entry_page.dart +++ b/lib/ui/account/password_entry_page.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/l10n/l10n.dart'; @@ -24,7 +24,7 @@ enum PasswordEntryMode { class PasswordEntryPage extends StatefulWidget { final PasswordEntryMode mode; - const PasswordEntryPage({this.mode = PasswordEntryMode.set, Key key}) + const PasswordEntryPage({this.mode = PasswordEntryMode.set, Key? key}) : super(key: key); @override @@ -39,7 +39,7 @@ class _PasswordEntryPageState extends State { final _passwordController1 = TextEditingController(), _passwordController2 = TextEditingController(); final Color _validFieldValueColor = const Color.fromRGBO(45, 194, 98, 0.2); - String _volatilePassword; + String? _volatilePassword; String _passwordInInputBox = ''; String _passwordInInputConfirmationBox = ''; double _passwordStrength = 0.0; @@ -60,7 +60,7 @@ class _PasswordEntryPageState extends State { if (_volatilePassword != null) { Future.delayed( Duration.zero, - () => _showRecoveryCodeDialog(_volatilePassword), + () => _showRecoveryCodeDialog(_volatilePassword!), ); } _password1FocusNode.addListener(() { @@ -79,7 +79,7 @@ class _PasswordEntryPageState extends State { Widget build(BuildContext context) { final isKeypadOpen = MediaQuery.of(context).viewInsets.bottom > 100; - FloatingActionButtonLocation fabLocation() { + FloatingActionButtonLocation? fabLocation() { if (isKeypadOpen) { return null; } else { @@ -165,7 +165,7 @@ class _PasswordEntryPageState extends State { textAlign: TextAlign.start, style: Theme.of(context) .textTheme - .subtitle1 + .subtitle1! .copyWith(fontSize: 14), ), ), @@ -176,7 +176,7 @@ class _PasswordEntryPageState extends State { text: TextSpan( style: Theme.of(context) .textTheme - .subtitle1 + .subtitle1! .copyWith(fontSize: 14), children: [ const TextSpan( @@ -185,7 +185,7 @@ class _PasswordEntryPageState extends State { ), TextSpan( text: "we cannot decrypt your data", - style: Theme.of(context).textTheme.subtitle1.copyWith( + style: Theme.of(context).textTheme.subtitle1!.copyWith( fontSize: 14, decoration: TextDecoration.underline, ), @@ -243,7 +243,7 @@ class _PasswordEntryPageState extends State { Icons.check, color: Theme.of(context) .inputDecorationTheme - .focusedBorder + .focusedBorder! .borderSide .color, ) @@ -305,7 +305,7 @@ class _PasswordEntryPageState extends State { Icons.check, color: Theme.of(context) .inputDecorationTheme - .focusedBorder + .focusedBorder! .borderSide .color, ) @@ -362,7 +362,7 @@ class _PasswordEntryPageState extends State { child: RichText( text: TextSpan( text: "How it works", - style: Theme.of(context).textTheme.subtitle1.copyWith( + style: Theme.of(context).textTheme.subtitle1!.copyWith( fontSize: 14, decoration: TextDecoration.underline, ), @@ -396,7 +396,7 @@ class _PasswordEntryPageState extends State { } catch (e, s) { _logger.severe(e, s); await dialog.hide(); - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } @@ -410,7 +410,7 @@ class _PasswordEntryPageState extends State { Configuration.instance.setVolatilePassword(null); await dialog.hide(); onDone() async { - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { await UserService.instance.setAttributes(result); @@ -426,7 +426,7 @@ class _PasswordEntryPageState extends State { } catch (e, s) { _logger.severe(e, s); await dialog.hide(); - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } @@ -451,7 +451,7 @@ class _PasswordEntryPageState extends State { "Sorry, we could not generate secure keys on this device.\n\nplease sign up from a different device.", ); } else { - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); } } } diff --git a/lib/ui/account/password_reentry_page.dart b/lib/ui/account/password_reentry_page.dart index 98a5b5af5..20e962f6e 100644 --- a/lib/ui/account/password_reentry_page.dart +++ b/lib/ui/account/password_reentry_page.dart @@ -1,12 +1,11 @@ -// @dart=2.9 +import 'dart:async'; import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/core/errors.dart'; import 'package:ente_auth/l10n/l10n.dart'; -import 'package:ente_auth/models/key_attributes.dart'; import 'package:ente_auth/ui/account/recovery_page.dart'; -import 'package:ente_auth/ui/common/dialogs.dart'; import 'package:ente_auth/ui/common/dynamic_fab.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; import 'package:ente_auth/ui/home_page.dart'; import 'package:ente_auth/utils/dialog_util.dart'; import 'package:ente_auth/utils/email_util.dart'; @@ -14,7 +13,7 @@ import 'package:flutter/material.dart'; import 'package:logging/logging.dart'; class PasswordReentryPage extends StatefulWidget { - const PasswordReentryPage({Key key}) : super(key: key); + const PasswordReentryPage({Key? key}) : super(key: key); @override State createState() => _PasswordReentryPageState(); @@ -24,7 +23,7 @@ class _PasswordReentryPageState extends State { final _logger = Logger((_PasswordReentryPageState).toString()); final _passwordController = TextEditingController(); final FocusNode _passwordFocusNode = FocusNode(); - String email; + String? email; bool _passwordInFocus = false; bool _passwordVisible = false; @@ -41,10 +40,9 @@ class _PasswordReentryPageState extends State { @override Widget build(BuildContext context) { - final l10n = context.l10n; final isKeypadOpen = MediaQuery.of(context).viewInsets.bottom > 100; - FloatingActionButtonLocation fabLocation() { + FloatingActionButtonLocation? fabLocation() { if (isKeypadOpen) { return null; } else { @@ -68,29 +66,26 @@ class _PasswordReentryPageState extends State { floatingActionButton: DynamicFAB( isKeypadOpen: isKeypadOpen, isFormValid: _passwordController.text.isNotEmpty, - buttonText: l10n.verifyPassword, + buttonText: context.l10n.verifyPassword, onPressedFunction: () async { FocusScope.of(context).unfocus(); - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, context.l10n.pleaseWait); await dialog.show(); try { await Configuration.instance.decryptAndSaveSecrets( _passwordController.text, - Configuration.instance.getKeyAttributes(), + Configuration.instance.getKeyAttributes()!, ); } on KeyDerivationError catch (e, s) { _logger.severe("Password verification failed", e, s); await dialog.hide(); - final dialogUserChoice = await showChoiceDialog( + final dialogChoice = await showChoiceDialog( context, - l10n.recreatePassword, - l10n.recreatePasswordMessage, - firstAction: l10n.cancel, - firstActionColor: Theme.of(context).colorScheme.primary, - secondAction: l10n.useRecoveryKeyAction, - secondActionColor: Theme.of(context).colorScheme.primary, + title: context.l10n.recreatePasswordTitle, + body: context.l10n.recreatePasswordBody, + firstButtonLabel: context.l10n.useRecoveryKey, ); - if (dialogUserChoice == DialogUserChoice.secondChoice) { + if (dialogChoice!.action == ButtonAction.first) { Navigator.of(context).push( MaterialPageRoute( builder: (BuildContext context) { @@ -103,20 +98,17 @@ class _PasswordReentryPageState extends State { } catch (e, s) { _logger.severe("Password verification failed", e, s); await dialog.hide(); - - final dialogUserChoice = await showChoiceDialog( + final dialogChoice = await showChoiceDialog( context, - l10n.incorrectPassword, - l10n.tryAgainMessage, - firstAction: l10n.contactSupport, - firstActionColor: Theme.of(context).colorScheme.primary, - secondAction: l10n.ok, - secondActionColor: Theme.of(context).colorScheme.primary, + title: context.l10n.incorrectPasswordTitle, + body: context.l10n.pleaseTryAgain, + firstButtonLabel: context.l10n.contactSupport, + secondButtonLabel: context.l10n.ok, ); - if (dialogUserChoice == DialogUserChoice.firstChoice) { + if (dialogChoice!.action == ButtonAction.first) { await sendLogs( context, - l10n.contactSupport, + context.l10n.contactSupport, "support@ente.io", postShare: () {}, ); @@ -124,13 +116,15 @@ class _PasswordReentryPageState extends State { return; } await dialog.hide(); - Navigator.of(context).pushAndRemoveUntil( - MaterialPageRoute( - builder: (BuildContext context) { - return const HomePage(); - }, + unawaited( + Navigator.of(context).pushAndRemoveUntil( + MaterialPageRoute( + builder: (BuildContext context) { + return const HomePage(); + }, + ), + (route) => false, ), - (route) => false, ); }, ), @@ -140,7 +134,6 @@ class _PasswordReentryPageState extends State { } Widget _getBody() { - final l10n = context.l10n; return Column( children: [ Expanded( @@ -151,7 +144,7 @@ class _PasswordReentryPageState extends State { padding: const EdgeInsets.symmetric(vertical: 30, horizontal: 20), child: Text( - l10n.welcomeBackTitle, + context.l10n.welcomeBack, style: Theme.of(context).textTheme.headline4, ), ), @@ -174,7 +167,7 @@ class _PasswordReentryPageState extends State { child: TextFormField( autofillHints: const [AutofillHints.password], decoration: InputDecoration( - hintText: l10n.enterYourPasswordHint, + hintText: context.l10n.enterYourPasswordHint, filled: true, contentPadding: const EdgeInsets.all(20), border: UnderlineInputBorder( @@ -236,9 +229,9 @@ class _PasswordReentryPageState extends State { }, child: Center( child: Text( - l10n.forgotPassword, + context.l10n.forgotPassword, style: - Theme.of(context).textTheme.subtitle1.copyWith( + Theme.of(context).textTheme.subtitle1!.copyWith( fontSize: 14, decoration: TextDecoration.underline, ), @@ -250,7 +243,7 @@ class _PasswordReentryPageState extends State { onTap: () async { final dialog = createProgressDialog( context, - l10n.pleaseWaitTitle, + context.l10n.pleaseWait, ); await dialog.show(); await Configuration.instance.logout(); @@ -260,9 +253,9 @@ class _PasswordReentryPageState extends State { }, child: Center( child: Text( - l10n.changeEmail, + context.l10n.changeEmail, style: - Theme.of(context).textTheme.subtitle1.copyWith( + Theme.of(context).textTheme.subtitle1!.copyWith( fontSize: 14, decoration: TextDecoration.underline, ), @@ -279,10 +272,4 @@ class _PasswordReentryPageState extends State { ], ); } - - void validatePreVerificationState(KeyAttributes keyAttributes) { - if (keyAttributes == null) { - throw Exception("Key Attributes can not be null"); - } - } } diff --git a/lib/ui/account/recovery_page.dart b/lib/ui/account/recovery_page.dart index 96be13f2d..5f6c702d9 100644 --- a/lib/ui/account/recovery_page.dart +++ b/lib/ui/account/recovery_page.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'dart:ui'; @@ -10,7 +10,7 @@ import 'package:ente_auth/utils/toast_util.dart'; import 'package:flutter/material.dart'; class RecoveryPage extends StatefulWidget { - const RecoveryPage({Key key}) : super(key: key); + const RecoveryPage({Key? key}) : super(key: key); @override State createState() => _RecoveryPageState(); @@ -22,7 +22,7 @@ class _RecoveryPageState extends State { @override Widget build(BuildContext context) { final isKeypadOpen = MediaQuery.of(context).viewInsets.bottom > 100; - FloatingActionButtonLocation fabLocation() { + FloatingActionButtonLocation? fabLocation() { if (isKeypadOpen) { return null; } else { @@ -140,7 +140,7 @@ class _RecoveryPageState extends State { child: Text( "No recovery key?", style: - Theme.of(context).textTheme.subtitle1.copyWith( + Theme.of(context).textTheme.subtitle1!.copyWith( fontSize: 14, decoration: TextDecoration.underline, ), diff --git a/lib/ui/account/sessions_page.dart b/lib/ui/account/sessions_page.dart index ff11d21f4..8f61d7882 100644 --- a/lib/ui/account/sessions_page.dart +++ b/lib/ui/account/sessions_page.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/ente_theme_data.dart'; @@ -13,14 +13,14 @@ import 'package:flutter/material.dart'; import 'package:logging/logging.dart'; class SessionsPage extends StatefulWidget { - const SessionsPage({Key key}) : super(key: key); + const SessionsPage({Key? key}) : super(key: key); @override State createState() => _SessionsPageState(); } class _SessionsPageState extends State { - Sessions _sessions; + Sessions? _sessions; final Logger _logger = Logger("SessionsPageState"); @override @@ -46,7 +46,7 @@ class _SessionsPageState extends State { } final List rows = []; rows.add(const Padding(padding: EdgeInsets.all(4))); - for (final session in _sessions.sessions) { + for (final session in _sessions!.sessions) { rows.add(_getSessionWidget(session)); } return SingleChildScrollView( @@ -113,7 +113,7 @@ class _SessionsPageState extends State { Future _terminateSession(Session session) async { final l10n = context.l10n; - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { await UserService.instance.terminateSession(session.token); @@ -133,11 +133,11 @@ class _SessionsPageState extends State { Future _fetchActiveSessions() async { _sessions = await UserService.instance .getActiveSessions() - .onError((error, stackTrace) { + .onError((dynamic error, stackTrace) { showToast(context, "Failed to fetch active sessions"); throw error; }); - _sessions.sessions.sort((first, second) { + _sessions!.sessions.sort((first, second) { return second.lastUsedTime.compareTo(first.lastUsedTime); }); setState(() {}); diff --git a/lib/ui/account/verify_recovery_page.dart b/lib/ui/account/verify_recovery_page.dart index 88234383a..3c9796d10 100644 --- a/lib/ui/account/verify_recovery_page.dart +++ b/lib/ui/account/verify_recovery_page.dart @@ -1,18 +1,15 @@ -// ignore_for_file: import_of_legacy_library_into_null_safe - import 'dart:ui'; import 'package:bip39/bip39.dart' as bip39; import 'package:dio/dio.dart'; import 'package:ente_auth/core/configuration.dart'; -import 'package:ente_auth/core/event_bus.dart'; import 'package:ente_auth/ente_theme_data.dart'; -import 'package:ente_auth/events/notification_event.dart'; +import 'package:ente_auth/l10n/l10n.dart'; import 'package:ente_auth/services/local_authentication_service.dart'; import 'package:ente_auth/services/user_remote_flag_service.dart'; import 'package:ente_auth/ui/account/recovery_key_page.dart'; -import 'package:ente_auth/ui/common/dialogs.dart'; import 'package:ente_auth/ui/common/gradient_button.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; import 'package:ente_auth/utils/dialog_util.dart'; import 'package:ente_auth/utils/navigation_util.dart'; import 'package:flutter/material.dart'; @@ -31,7 +28,8 @@ class _VerifyRecoveryPageState extends State { final Logger _logger = Logger((_VerifyRecoveryPageState).toString()); void _verifyRecoveryKey() async { - final dialog = createProgressDialog(context, "Verifying recovery key..."); + final dialog = + createProgressDialog(context, context.l10n.verifyingRecoveryKey); await dialog.show(); try { final String inputKey = _recoveryKey.text.trim(); @@ -50,19 +48,17 @@ class _VerifyRecoveryPageState extends State { "Please check your internet connection and try again.", ); } else { - await showGenericErrorDialog(context); + await showGenericErrorDialog(context: context); } return; } - Bus.instance.fire(NotificationEvent()); + await dialog.hide(); // todo: change this as per figma once the component is ready await showErrorDialog( context, - "Recovery key verified", - "Great! Your recovery key is valid. Thank you for verifying.\n" - "\nPlease" - " remember to keep your recovery key safely backed up.", + context.l10n.recoveryKeyVerified, + context.l10n.recoveryKeySuccessBody, ); Navigator.of(context).pop(); } else { @@ -71,18 +67,16 @@ class _VerifyRecoveryPageState extends State { } catch (e, s) { _logger.severe("failed to verify recovery key", e, s); await dialog.hide(); - const String errMessage = - "The recovery key you entered is not valid. Please make sure it " - "contains 24 words, and check the spelling of each.\n\nIf you " - "entered an older recovery code, make sure it is 64 characters long, and check each of them."; + final String errMessage = context.l10n.invalidRecoveryKey; final result = await showChoiceDialog( context, - "Invalid key", - errMessage, - firstAction: "Try again", - secondAction: "View recovery key", + title: context.l10n.invalidKey, + body: errMessage, + firstButtonLabel: context.l10n.tryAgain, + secondButtonLabel: context.l10n.viewRecoveryKey, + secondButtonAction: ButtonAction.second, ); - if (result == DialogUserChoice.secondChoice) { + if (result!.action == ButtonAction.second) { await _onViewRecoveryKeyClick(); } } @@ -102,7 +96,7 @@ class _VerifyRecoveryPageState extends State { context, RecoveryKeyPage( recoveryKey, - "OK", + context.l10n.ok, showAppBar: true, onDone: () { Navigator.of(context).pop(); @@ -110,7 +104,7 @@ class _VerifyRecoveryPageState extends State { ), ); } catch (e) { - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); return; } } @@ -147,16 +141,14 @@ class _VerifyRecoveryPageState extends State { SizedBox( width: double.infinity, child: Text( - 'Verify recovery key', + context.l10n.confirmRecoveryKey, style: enteTheme.textTheme.h3Bold, textAlign: TextAlign.left, ), ), const SizedBox(height: 18), Text( - "If you forget your password, your recovery key is the " - "only way to recover your photos.\n\nPlease verify that " - "you have safely backed up your 24 word recovery key by re-entering it.", + context.l10n.recoveryKeyVerifyReason, style: enteTheme.textTheme.small .copyWith(color: enteTheme.colorScheme.textMuted), ), @@ -164,7 +156,7 @@ class _VerifyRecoveryPageState extends State { TextFormField( decoration: InputDecoration( filled: true, - hintText: "Enter your recovery key", + hintText: context.l10n.enterYourRecoveryKey, contentPadding: const EdgeInsets.all(20), border: UnderlineInputBorder( borderSide: BorderSide.none, @@ -186,12 +178,6 @@ class _VerifyRecoveryPageState extends State { }, ), const SizedBox(height: 12), - Text( - "If you saved the recovery key from older app versions, you might have a 64 character recovery code instead of 24 words. You can enter that too.", - style: enteTheme.textTheme.mini - .copyWith(color: enteTheme.colorScheme.textMuted), - ), - const SizedBox(height: 8), Expanded( child: Container( alignment: Alignment.bottomCenter, @@ -203,8 +189,7 @@ class _VerifyRecoveryPageState extends State { children: [ GradientButton( onTap: _verifyRecoveryKey, - text: "Verify", - iconData: Icons.shield_outlined, + text: context.l10n.confirm, ), const SizedBox(height: 8), ], diff --git a/lib/ui/common/DividerWithPadding.dart b/lib/ui/common/DividerWithPadding.dart index 8be210db2..94b20d9c2 100644 --- a/lib/ui/common/DividerWithPadding.dart +++ b/lib/ui/common/DividerWithPadding.dart @@ -1,11 +1,11 @@ -// @dart=2.9 + import 'package:flutter/material.dart'; class DividerWithPadding extends StatelessWidget { final double left, top, right, bottom, thinckness; const DividerWithPadding({ - Key key, + Key? key, this.left = 0, this.top = 0, this.right = 0, diff --git a/lib/ui/common/bottom_shadow.dart b/lib/ui/common/bottom_shadow.dart index 08dd69f23..6003e199d 100644 --- a/lib/ui/common/bottom_shadow.dart +++ b/lib/ui/common/bottom_shadow.dart @@ -1,11 +1,11 @@ -// @dart=2.9 + import 'package:flutter/material.dart'; class BottomShadowWidget extends StatelessWidget { final double offsetDy; - final Color shadowColor; - const BottomShadowWidget({this.offsetDy = 28, this.shadowColor, Key key}) + final Color? shadowColor; + const BottomShadowWidget({this.offsetDy = 28, this.shadowColor, Key? key}) : super(key: key); @override diff --git a/lib/ui/common/dialogs.dart b/lib/ui/common/dialogs.dart index 9c1e38ef9..60879335e 100644 --- a/lib/ui/common/dialogs.dart +++ b/lib/ui/common/dialogs.dart @@ -1,8 +1,10 @@ -// @dart=2.9 - import 'package:ente_auth/ente_theme_data.dart'; +import 'package:ente_auth/models/typedefs.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; +import 'package:ente_auth/ui/components/dialog_widget.dart'; +import 'package:ente_auth/ui/components/models/button_result.dart'; +import 'package:ente_auth/ui/components/models/button_type.dart'; import 'package:flutter/material.dart'; -import 'package:flutter/widgets.dart'; enum DialogUserChoice { firstChoice, secondChoice } @@ -12,14 +14,14 @@ enum ActionType { } // if dialog is dismissed by tapping outside, this will return null -Future showChoiceDialog( +Future showChoiceDialogOld( BuildContext context, String title, String content, { String firstAction = 'Ok', - Color firstActionColor, + Color? firstActionColor, String secondAction = 'Cancel', - Color secondActionColor, + Color? secondActionColor, ActionType actionType = ActionType.confirm, }) { final AlertDialog alert = AlertDialog( @@ -69,7 +71,7 @@ Future showChoiceDialog( ], ); - return showDialog( + return showDialog( context: context, builder: (BuildContext context) { return alert; @@ -77,3 +79,46 @@ Future showChoiceDialog( barrierColor: Colors.black87, ); } + +///Will return null if dismissed by tapping outside +Future showChoiceDialog( + BuildContext context, { + required String title, + String? body, + required String firstButtonLabel, + String secondButtonLabel = "Cancel", + ButtonType firstButtonType = ButtonType.neutral, + ButtonType secondButtonType = ButtonType.secondary, + ButtonAction firstButtonAction = ButtonAction.first, + ButtonAction secondButtonAction = ButtonAction.cancel, + FutureVoidCallback? firstButtonOnTap, + FutureVoidCallback? secondButtonOnTap, + bool isCritical = false, + IconData? icon, + bool isDismissible = true, +}) async { + final buttons = [ + ButtonWidget( + buttonType: isCritical ? ButtonType.critical : firstButtonType, + labelText: firstButtonLabel, + isInAlert: true, + onTap: firstButtonOnTap, + buttonAction: firstButtonAction, + ), + ButtonWidget( + buttonType: secondButtonType, + labelText: secondButtonLabel, + isInAlert: true, + onTap: secondButtonOnTap, + buttonAction: secondButtonAction, + ), + ]; + return showDialogWidget( + context: context, + title: title, + body: body, + buttons: buttons, + icon: icon, + isDismissible: isDismissible, + ); +} diff --git a/lib/ui/common/dynamic_fab.dart b/lib/ui/common/dynamic_fab.dart index c38fbfb40..a536de353 100644 --- a/lib/ui/common/dynamic_fab.dart +++ b/lib/ui/common/dynamic_fab.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'dart:math' as math; @@ -6,13 +6,13 @@ import 'package:ente_auth/ente_theme_data.dart'; import 'package:flutter/material.dart'; class DynamicFAB extends StatelessWidget { - final bool isKeypadOpen; - final bool isFormValid; - final String buttonText; - final Function onPressedFunction; + final bool? isKeypadOpen; + final bool? isFormValid; + final String? buttonText; + final Function? onPressedFunction; const DynamicFAB({ - Key key, + Key? key, this.isKeypadOpen, this.buttonText, this.isFormValid, @@ -21,7 +21,7 @@ class DynamicFAB extends StatelessWidget { @override Widget build(BuildContext context) { - if (isKeypadOpen) { + if (isKeypadOpen!) { return Container( decoration: BoxDecoration( boxShadow: [ @@ -43,13 +43,13 @@ class DynamicFAB extends StatelessWidget { Theme.of(context).colorScheme.dynamicFABBackgroundColor, foregroundColor: Theme.of(context).colorScheme.dynamicFABTextColor, - onPressed: isFormValid - ? onPressedFunction + onPressed: isFormValid! + ? onPressedFunction as void Function()? : () { FocusScope.of(context).unfocus(); }, child: Transform.rotate( - angle: isFormValid ? 0 : math.pi / 2, + angle: isFormValid! ? 0 : math.pi / 2, child: const Icon( Icons.chevron_right, size: 36, @@ -65,8 +65,8 @@ class DynamicFAB extends StatelessWidget { height: 56, padding: const EdgeInsets.symmetric(horizontal: 20), child: OutlinedButton( - onPressed: isFormValid ? onPressedFunction : null, - child: Text(buttonText), + onPressed: isFormValid! ? onPressedFunction as void Function()? : null, + child: Text(buttonText!), ), ); } @@ -75,17 +75,17 @@ class DynamicFAB extends StatelessWidget { class NoScalingAnimation extends FloatingActionButtonAnimator { @override - Offset getOffset({Offset begin, Offset end, double progress}) { + Offset getOffset({Offset? begin, required Offset end, double? progress}) { return end; } @override - Animation getRotationAnimation({Animation parent}) { + Animation getRotationAnimation({required Animation parent}) { return Tween(begin: 1.0, end: 1.0).animate(parent); } @override - Animation getScaleAnimation({Animation parent}) { + Animation getScaleAnimation({required Animation parent}) { return Tween(begin: 1.0, end: 1.0).animate(parent); } } diff --git a/lib/ui/common/gradient_button.dart b/lib/ui/common/gradient_button.dart index 586172d90..5b021f613 100644 --- a/lib/ui/common/gradient_button.dart +++ b/lib/ui/common/gradient_button.dart @@ -1,22 +1,22 @@ -// @dart=2.9 + import 'package:flutter/material.dart'; class GradientButton extends StatelessWidget { final List linearGradientColors; - final Function onTap; + final Function? onTap; // text is ignored if child is specified final String text; // nullable - final IconData iconData; + final IconData? iconData; // padding between the text and icon final double paddingValue; const GradientButton({ - Key key, + Key? key, this.linearGradientColors = const [ Color.fromARGB(255, 133, 44, 210), Color.fromARGB(255, 187, 26, 93), @@ -64,7 +64,7 @@ class GradientButton extends StatelessWidget { ); } return InkWell( - onTap: onTap, + onTap: onTap as void Function()?, child: Container( height: 56, decoration: BoxDecoration( diff --git a/lib/ui/common/linear_progress_dialog.dart b/lib/ui/common/linear_progress_dialog.dart index b441336f0..85bcc8c5b 100644 --- a/lib/ui/common/linear_progress_dialog.dart +++ b/lib/ui/common/linear_progress_dialog.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/ente_theme_data.dart'; import 'package:flutter/material.dart'; @@ -6,14 +6,14 @@ import 'package:flutter/material.dart'; class LinearProgressDialog extends StatefulWidget { final String message; - const LinearProgressDialog(this.message, {Key key}) : super(key: key); + const LinearProgressDialog(this.message, {Key? key}) : super(key: key); @override LinearProgressDialogState createState() => LinearProgressDialogState(); } class LinearProgressDialogState extends State { - double _progress; + double? _progress; @override void initState() { diff --git a/lib/ui/common/progress_dialog.dart b/lib/ui/common/progress_dialog.dart index 616d53f76..a05f031e6 100644 --- a/lib/ui/common/progress_dialog.dart +++ b/lib/ui/common/progress_dialog.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'package:flutter/material.dart'; enum ProgressDialogType { normal, download } @@ -7,7 +5,7 @@ enum ProgressDialogType { normal, download } String _dialogMessage = "Loading..."; double _progress = 0.0, _maxProgress = 100.0; -Widget _customBody; +Widget? _customBody; TextAlign _textAlign = TextAlign.left; Alignment _progressWidgetAlignment = Alignment.centerLeft; @@ -15,10 +13,10 @@ Alignment _progressWidgetAlignment = Alignment.centerLeft; TextDirection _direction = TextDirection.ltr; bool _isShowing = false; -BuildContext _context, _dismissingContext; -ProgressDialogType _progressDialogType; +BuildContext? _context, _dismissingContext; +ProgressDialogType? _progressDialogType; bool _barrierDismissible = true, _showLogs = false; -Color _barrierColor; +Color? _barrierColor; TextStyle _progressTextStyle = const TextStyle( color: Colors.black, @@ -42,16 +40,16 @@ Widget _progressWidget = Image.asset( ); class ProgressDialog { - _Body _dialog; + _Body? _dialog; ProgressDialog( BuildContext context, { - ProgressDialogType type, - bool isDismissible, - bool showLogs, - TextDirection textDirection, - Widget customBody, - Color barrierColor, + ProgressDialogType? type, + bool? isDismissible, + bool? showLogs, + TextDirection? textDirection, + Widget? customBody, + Color? barrierColor, }) { _context = context; _progressDialogType = type ?? ProgressDialogType.normal; @@ -63,20 +61,20 @@ class ProgressDialog { } void style({ - Widget child, - double progress, - double maxProgress, - String message, - Widget progressWidget, - Color backgroundColor, - TextStyle progressTextStyle, - TextStyle messageTextStyle, - double elevation, - TextAlign textAlign, - double borderRadius, - Curve insetAnimCurve, - EdgeInsets padding, - Alignment progressWidgetAlignment, + Widget? child, + double? progress, + double? maxProgress, + String? message, + Widget? progressWidget, + Color? backgroundColor, + TextStyle? progressTextStyle, + TextStyle? messageTextStyle, + double? elevation, + TextAlign? textAlign, + double? borderRadius, + Curve? insetAnimCurve, + EdgeInsets? padding, + Alignment? progressWidgetAlignment, }) { if (_isShowing) return; if (_progressDialogType == ProgressDialogType.download) { @@ -100,12 +98,12 @@ class ProgressDialog { } void update({ - double progress, - double maxProgress, - String message, - Widget progressWidget, - TextStyle progressTextStyle, - TextStyle messageTextStyle, + double? progress, + double? maxProgress, + String? message, + Widget? progressWidget, + TextStyle? progressTextStyle, + TextStyle? messageTextStyle, }) { if (_progressDialogType == ProgressDialogType.download) { _progress = progress ?? _progress; @@ -117,7 +115,7 @@ class ProgressDialog { _messageStyle = messageTextStyle ?? _messageStyle; _progressTextStyle = progressTextStyle ?? _progressTextStyle; - if (_isShowing) _dialog.update(); + if (_isShowing) _dialog!.update(); } bool isShowing() { @@ -128,7 +126,9 @@ class ProgressDialog { try { if (_isShowing) { _isShowing = false; - Navigator.of(_dismissingContext).pop(); + if (_dismissingContext != null) { + Navigator.of(_dismissingContext!).pop(); + } if (_showLogs) debugPrint('ProgressDialog dismissed'); return Future.value(true); } else { @@ -147,7 +147,7 @@ class ProgressDialog { if (!_isShowing) { _dialog = _Body(); showDialog( - context: _context, + context: _context!, barrierDismissible: _barrierDismissible, barrierColor: _barrierColor, builder: (BuildContext context) { diff --git a/lib/ui/common/rename_dialog.dart b/lib/ui/common/rename_dialog.dart index cfea32436..03c68d3b1 100644 --- a/lib/ui/common/rename_dialog.dart +++ b/lib/ui/common/rename_dialog.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/utils/dialog_util.dart'; import 'package:flutter/material.dart'; @@ -8,7 +8,7 @@ class RenameDialog extends StatefulWidget { final String type; final int maxLength; - const RenameDialog(this.name, this.type, {Key key, this.maxLength = 100}) + const RenameDialog(this.name, this.type, {Key? key, this.maxLength = 100}) : super(key: key); @override @@ -16,7 +16,7 @@ class RenameDialog extends StatefulWidget { } class _RenameDialogState extends State { - String _newName; + String? _newName; @override void initState() { @@ -74,7 +74,7 @@ class _RenameDialogState extends State { ), ), onPressed: () { - if (_newName.trim().isEmpty) { + if (_newName!.trim().isEmpty) { showErrorDialog( context, "Empty name", @@ -82,7 +82,7 @@ class _RenameDialogState extends State { ); return; } - if (_newName.trim().length > widget.maxLength) { + if (_newName!.trim().length > widget.maxLength) { showErrorDialog( context, "Name too large", @@ -90,7 +90,7 @@ class _RenameDialogState extends State { ); return; } - Navigator.of(context).pop(_newName.trim()); + Navigator.of(context).pop(_newName!.trim()); }, ), ], diff --git a/lib/ui/components/action_sheet_widget.dart b/lib/ui/components/action_sheet_widget.dart new file mode 100644 index 000000000..50a84d489 --- /dev/null +++ b/lib/ui/components/action_sheet_widget.dart @@ -0,0 +1,221 @@ +import 'dart:ui'; + +import 'package:ente_auth/theme/colors.dart'; +import 'package:ente_auth/theme/effects.dart'; +import 'package:ente_auth/theme/ente_theme.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; +import 'package:ente_auth/ui/components/components_constants.dart'; +import 'package:ente_auth/ui/components/models/button_result.dart'; +import 'package:ente_auth/ui/components/separators.dart'; +import 'package:flutter/material.dart'; +import 'package:modal_bottom_sheet/modal_bottom_sheet.dart'; + +enum ActionSheetType { + defaultActionSheet, + iconOnly, +} + +///Returns null if dismissed +Future showActionSheet({ + required BuildContext context, + required List buttons, + ActionSheetType actionSheetType = ActionSheetType.defaultActionSheet, + bool enableDrag = true, + bool isDismissible = true, + bool isCheckIconGreen = false, + String? title, + Widget? bodyWidget, + String? body, + String? bodyHighlight, +}) { + return showMaterialModalBottomSheet( + backgroundColor: Colors.transparent, + barrierColor: backdropFaintDark, + useRootNavigator: true, + context: context, + isDismissible: isDismissible, + enableDrag: enableDrag, + builder: (_) { + return ActionSheetWidget( + title: title, + bodyWidget: bodyWidget, + body: body, + bodyHighlight: bodyHighlight, + actionButtons: buttons, + actionSheetType: actionSheetType, + isCheckIconGreen: isCheckIconGreen, + ); + }, + ); +} + +class ActionSheetWidget extends StatelessWidget { + final String? title; + final Widget? bodyWidget; + final String? body; + final String? bodyHighlight; + final List actionButtons; + final ActionSheetType actionSheetType; + final bool isCheckIconGreen; + + const ActionSheetWidget({ + required this.actionButtons, + required this.actionSheetType, + required this.isCheckIconGreen, + this.title, + this.bodyWidget, + this.body, + this.bodyHighlight, + super.key, + }); + + @override + Widget build(BuildContext context) { + final isTitleAndBodyNull = + title == null && bodyWidget == null && body == null; + final blur = MediaQuery.of(context).platformBrightness == Brightness.light + ? blurMuted + : blurBase; + final extraWidth = MediaQuery.of(context).size.width - restrictedMaxWidth; + final double? horizontalPadding = extraWidth > 0 ? extraWidth / 2 : null; + return Padding( + padding: EdgeInsets.fromLTRB( + horizontalPadding ?? 12, + 12, + horizontalPadding ?? 12, + 32, + ), + child: Container( + decoration: BoxDecoration(boxShadow: shadowMenuLight), + child: ClipRRect( + borderRadius: const BorderRadius.all(Radius.circular(8)), + child: BackdropFilter( + filter: ImageFilter.blur(sigmaX: blur, sigmaY: blur), + child: Container( + color: backdropMutedDark, + child: Padding( + padding: EdgeInsets.fromLTRB( + 24, + 24, + 24, + isTitleAndBodyNull ? 24 : 28, + ), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + isTitleAndBodyNull + ? const SizedBox.shrink() + : Padding( + padding: const EdgeInsets.only(bottom: 36), + child: ContentContainerWidget( + title: title, + bodyWidget: bodyWidget, + body: body, + bodyHighlight: bodyHighlight, + actionSheetType: actionSheetType, + isCheckIconGreen: isCheckIconGreen, + ), + ), + ActionButtons( + actionButtons, + ), + ], + ), + ), + ), + ), + ), + ), + ); + } +} + +class ContentContainerWidget extends StatelessWidget { + final String? title; + final Widget? bodyWidget; + final String? body; + final String? bodyHighlight; + final ActionSheetType actionSheetType; + final bool isCheckIconGreen; + + const ContentContainerWidget({ + required this.actionSheetType, + required this.isCheckIconGreen, + this.title, + this.bodyWidget, + this.body, + this.bodyHighlight, + super.key, + }); + + @override + Widget build(BuildContext context) { + final textTheme = getEnteTextTheme(context); + final bool bodyMissing = body == null && bodyWidget == null; + debugPrint("body missing $bodyMissing"); + return Column( + mainAxisSize: MainAxisSize.min, + //todo: set cross axis to center when icon should be shown in place of body + crossAxisAlignment: actionSheetType == ActionSheetType.defaultActionSheet + ? CrossAxisAlignment.stretch + : CrossAxisAlignment.center, + children: [ + title == null + ? const SizedBox.shrink() + : Text( + title!, + style: textTheme.largeBold + .copyWith(color: textBaseDark), //constant color + ), + title == null || bodyMissing + ? const SizedBox.shrink() + : const SizedBox(height: 19), + actionSheetType == ActionSheetType.defaultActionSheet + ? bodyMissing + ? const SizedBox.shrink() + : (bodyWidget != null + ? bodyWidget! + : Text( + body!, + style: textTheme.body + .copyWith(color: textMutedDark), //constant color + )) + : Icon( + Icons.check_outlined, + size: 48, + color: isCheckIconGreen + ? getEnteColorScheme(context).primary700 + : strokeBaseDark, + ), + actionSheetType == ActionSheetType.defaultActionSheet && + bodyHighlight != null + ? Padding( + padding: const EdgeInsets.only(top: 19.0), + child: Text( + bodyHighlight!, + style: textTheme.body + .copyWith(color: textBaseDark), //constant color + ), + ) + : const SizedBox.shrink(), + ], + ); + } +} + +class ActionButtons extends StatelessWidget { + final List actionButtons; + const ActionButtons(this.actionButtons, {super.key}); + + @override + Widget build(BuildContext context) { + final actionButtonsWithSeparators = actionButtons; + return Column( + children: + //Separator height is 8pts in figma. -2pts here as the action + //buttons are 2pts extra in height in code compared to figma because + //of the border(1pt top + 1pt bottom) of action buttons. + addSeparators(actionButtonsWithSeparators, const SizedBox(height: 6)), + ); + } +} diff --git a/lib/ui/components/components_constants.dart b/lib/ui/components/components_constants.dart index e69de29bb..2f8cbf52b 100644 --- a/lib/ui/components/components_constants.dart +++ b/lib/ui/components/components_constants.dart @@ -0,0 +1,4 @@ +const double mobileSmallThreshold = 336; + +//Screen width of iPhone 14 pro max in points is taken as maximum +const double restrictedMaxWidth = 430; diff --git a/lib/ui/components/dialog_widget.dart b/lib/ui/components/dialog_widget.dart index a99e0dc9f..82c286531 100644 --- a/lib/ui/components/dialog_widget.dart +++ b/lib/ui/components/dialog_widget.dart @@ -1,17 +1,17 @@ import 'dart:math'; +import 'package:ente_auth/l10n/l10n.dart'; +import 'package:ente_auth/models/typedefs.dart'; +import 'package:ente_auth/theme/colors.dart'; +import 'package:ente_auth/theme/effects.dart'; +import 'package:ente_auth/theme/ente_theme.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; +import 'package:ente_auth/ui/components/components_constants.dart'; +import 'package:ente_auth/ui/components/models/button_result.dart'; +import 'package:ente_auth/ui/components/models/button_type.dart'; +import 'package:ente_auth/ui/components/separators.dart'; +import 'package:ente_auth/ui/components/text_input_widget.dart'; import 'package:flutter/material.dart'; -import 'package:photos/core/constants.dart'; -import "package:photos/generated/l10n.dart"; -import "package:photos/models/search/button_result.dart"; -import 'package:photos/models/typedefs.dart'; -import 'package:photos/theme/colors.dart'; -import 'package:photos/theme/effects.dart'; -import 'package:photos/theme/ente_theme.dart'; -import 'package:photos/ui/components/buttons/button_widget.dart'; -import 'package:photos/ui/components/models/button_type.dart'; -import 'package:photos/ui/components/text_input_widget.dart'; -import 'package:photos/utils/separators_util.dart'; ///Will return null if dismissed by tapping outside Future showDialogWidget({ @@ -261,7 +261,7 @@ class _TextInputDialogState extends State { child: ButtonWidget( buttonType: ButtonType.secondary, buttonSize: ButtonSize.small, - labelText: S.of(context).cancel, + labelText: context.l10n.cancel, isInAlert: true, ), ), diff --git a/lib/ui/components/expandable_menu_item_widget.dart b/lib/ui/components/expandable_menu_item_widget.dart index a94357c8f..5953d135c 100644 --- a/lib/ui/components/expandable_menu_item_widget.dart +++ b/lib/ui/components/expandable_menu_item_widget.dart @@ -69,7 +69,7 @@ class _ExpandableMenuItemWidgetState extends State { ), collapsed: const SizedBox.shrink(), expanded: widget.selectionOptionsWidget, - theme: getExpandableTheme(context), + theme: getExpandableTheme(), controller: expandableController, ), ), diff --git a/lib/ui/components/text_input_widget.dart b/lib/ui/components/text_input_widget.dart index 53ae63521..773797832 100644 --- a/lib/ui/components/text_input_widget.dart +++ b/lib/ui/components/text_input_widget.dart @@ -1,11 +1,11 @@ +import 'package:ente_auth/models/execution_states.dart'; +import 'package:ente_auth/models/typedefs.dart'; +import 'package:ente_auth/theme/ente_theme.dart'; +import 'package:ente_auth/ui/common/loading_widget.dart'; +import 'package:ente_auth/ui/components/separators.dart'; +import 'package:ente_auth/utils/debouncer.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; -import 'package:photos/models/execution_states.dart'; -import 'package:photos/models/typedefs.dart'; -import 'package:photos/theme/ente_theme.dart'; -import 'package:photos/ui/common/loading_widget.dart'; -import 'package:photos/utils/debouncer.dart'; -import 'package:photos/utils/separators_util.dart'; class TextInputWidget extends StatefulWidget { final String? label; diff --git a/lib/ui/lifecycle_event_handler.dart b/lib/ui/lifecycle_event_handler.dart index 3f54c3438..da539f074 100644 --- a/lib/ui/lifecycle_event_handler.dart +++ b/lib/ui/lifecycle_event_handler.dart @@ -1,11 +1,11 @@ -// @dart=2.9 + import 'package:flutter/foundation.dart'; import 'package:flutter/widgets.dart'; class LifecycleEventHandler extends WidgetsBindingObserver { - final AsyncCallback resumeCallBack; - final AsyncCallback suspendingCallBack; + final AsyncCallback? resumeCallBack; + final AsyncCallback? suspendingCallBack; LifecycleEventHandler({ this.resumeCallBack, @@ -17,14 +17,14 @@ class LifecycleEventHandler extends WidgetsBindingObserver { switch (state) { case AppLifecycleState.resumed: if (resumeCallBack != null) { - await resumeCallBack(); + await resumeCallBack!(); } break; case AppLifecycleState.inactive: case AppLifecycleState.paused: case AppLifecycleState.detached: if (suspendingCallBack != null) { - await suspendingCallBack(); + await suspendingCallBack!(); } break; } diff --git a/lib/ui/settings/about_section_widget.dart b/lib/ui/settings/about_section_widget.dart index e5650add9..34fb2d422 100644 --- a/lib/ui/settings/about_section_widget.dart +++ b/lib/ui/settings/about_section_widget.dart @@ -12,7 +12,7 @@ import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.dart'; class AboutSectionWidget extends StatelessWidget { - const AboutSectionWidget({Key key}) : super(key: key); + const AboutSectionWidget({super.key}); @override Widget build(BuildContext context) { diff --git a/lib/ui/settings/account_section_widget.dart b/lib/ui/settings/account_section_widget.dart index 6779917e9..ed7c3ddc9 100644 --- a/lib/ui/settings/account_section_widget.dart +++ b/lib/ui/settings/account_section_widget.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/app/view/app.dart'; import 'package:ente_auth/core/configuration.dart'; @@ -20,7 +20,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_sodium/flutter_sodium.dart'; class AccountSectionWidget extends StatelessWidget { - AccountSectionWidget({Key key}) : super(key: key); + AccountSectionWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) { @@ -56,7 +56,7 @@ class AccountSectionWidget extends StatelessWidget { recoveryKey = Sodium.bin2hex(Configuration.instance.getRecoveryKey()); } catch (e) { - showGenericErrorDialog(context); + showGenericErrorDialog(context: context); return; } routeToPage( diff --git a/lib/ui/settings/app_update_dialog.dart b/lib/ui/settings/app_update_dialog.dart index 497806846..20d22c4ae 100644 --- a/lib/ui/settings/app_update_dialog.dart +++ b/lib/ui/settings/app_update_dialog.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/core/network.dart'; @@ -9,9 +9,9 @@ import 'package:logging/logging.dart'; import 'package:open_filex/open_filex.dart'; class AppUpdateDialog extends StatefulWidget { - final LatestVersionInfo latestVersionInfo; + final LatestVersionInfo? latestVersionInfo; - const AppUpdateDialog(this.latestVersionInfo, {Key key}) : super(key: key); + const AppUpdateDialog(this.latestVersionInfo, {Key? key}) : super(key: key); @override State createState() => _AppUpdateDialogState(); @@ -21,13 +21,13 @@ class _AppUpdateDialogState extends State { @override Widget build(BuildContext context) { final List changelog = []; - for (final log in widget.latestVersionInfo.changelog) { + for (final log in widget.latestVersionInfo!.changelog) { changelog.add( Padding( padding: const EdgeInsets.fromLTRB(8, 4, 0, 4), child: Text( "- " + log, - style: Theme.of(context).textTheme.caption.copyWith( + style: Theme.of(context).textTheme.caption!.copyWith( fontSize: 14, ), ), @@ -39,7 +39,7 @@ class _AppUpdateDialogState extends State { mainAxisSize: MainAxisSize.min, children: [ Text( - widget.latestVersionInfo.name, + widget.latestVersionInfo!.name!, style: const TextStyle( fontSize: 20, fontWeight: FontWeight.bold, @@ -62,8 +62,8 @@ class _AppUpdateDialogState extends State { width: double.infinity, height: 64, child: OutlinedButton( - style: Theme.of(context).outlinedButtonTheme.style.copyWith( - textStyle: MaterialStateProperty.resolveWith( + style: Theme.of(context).outlinedButtonTheme.style!.copyWith( + textStyle: MaterialStateProperty.resolveWith( (Set states) { return Theme.of(context).textTheme.subtitle1; }, @@ -101,24 +101,24 @@ class _AppUpdateDialogState extends State { } class ApkDownloaderDialog extends StatefulWidget { - final LatestVersionInfo versionInfo; + final LatestVersionInfo? versionInfo; - const ApkDownloaderDialog(this.versionInfo, {Key key}) : super(key: key); + const ApkDownloaderDialog(this.versionInfo, {Key? key}) : super(key: key); @override State createState() => _ApkDownloaderDialogState(); } class _ApkDownloaderDialogState extends State { - String _saveUrl; - double _downloadProgress; + String? _saveUrl; + double? _downloadProgress; @override void initState() { super.initState(); _saveUrl = Configuration.instance.getTempDirectory() + "ente-" + - widget.versionInfo.name + + widget.versionInfo!.name! + ".apk"; _downloadApk(); } @@ -148,11 +148,11 @@ class _ApkDownloaderDialogState extends State { Future _downloadApk() async { try { await Network.instance.getDio().download( - widget.versionInfo.url, + widget.versionInfo!.url!, _saveUrl, onReceiveProgress: (count, _) { setState(() { - _downloadProgress = count / widget.versionInfo.size; + _downloadProgress = count / widget.versionInfo!.size!; }); }, ); diff --git a/lib/ui/settings/app_version_widget.dart b/lib/ui/settings/app_version_widget.dart index ce23ca492..bd35db739 100644 --- a/lib/ui/settings/app_version_widget.dart +++ b/lib/ui/settings/app_version_widget.dart @@ -1,12 +1,10 @@ -// @dart=2.9 - import 'package:ente_auth/utils/dialog_util.dart'; import 'package:flutter/material.dart'; import 'package:package_info_plus/package_info_plus.dart'; class AppVersionWidget extends StatefulWidget { const AppVersionWidget({ - Key key, + Key? key, }) : super(key: key); @override @@ -18,7 +16,7 @@ class _AppVersionWidgetState extends State { static const kConsecutiveTapTimeWindowInMilliseconds = 2000; static const kDummyDelayDurationInMilliseconds = 1500; - int _lastTap; + int? _lastTap; int _consecutiveTaps = 0; @override @@ -43,14 +41,14 @@ class _AppVersionWidgetState extends State { } _lastTap = now; }, - child: FutureBuilder( + child: FutureBuilder( future: _getAppVersion(), builder: (context, snapshot) { if (snapshot.hasData) { return Padding( padding: const EdgeInsets.all(20), child: Text( - "Version: " + snapshot.data, + "Version: " + snapshot.data!, style: Theme.of(context).textTheme.caption, ), ); diff --git a/lib/ui/settings/common_settings.dart b/lib/ui/settings/common_settings.dart index 35648a8f7..4299c1cca 100644 --- a/lib/ui/settings/common_settings.dart +++ b/lib/ui/settings/common_settings.dart @@ -1,18 +1,10 @@ -// @dart=2.9 - -import 'dart:io'; - import 'package:expandable/expandable.dart'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; -Widget sectionOptionDivider = Padding( - padding: EdgeInsets.all(Platform.isIOS ? 4 : 2), -); - Widget sectionOptionSpacing = const SizedBox(height: 6); -ExpandableThemeData getExpandableTheme(BuildContext context) { +ExpandableThemeData getExpandableTheme() { return const ExpandableThemeData( hasIcon: false, useInkWell: false, diff --git a/lib/ui/settings/danger_section_widget.dart b/lib/ui/settings/danger_section_widget.dart index 609b8f6e9..0a59280a6 100644 --- a/lib/ui/settings/danger_section_widget.dart +++ b/lib/ui/settings/danger_section_widget.dart @@ -1,5 +1,6 @@ -// @dart=2.9 + +import 'package:ente_auth/l10n/l10n.dart'; import 'package:ente_auth/services/user_service.dart'; import 'package:ente_auth/theme/ente_theme.dart'; import 'package:ente_auth/ui/account/delete_account_page.dart'; @@ -11,12 +12,12 @@ import 'package:ente_auth/utils/navigation_util.dart'; import 'package:flutter/material.dart'; class DangerSectionWidget extends StatelessWidget { - const DangerSectionWidget({Key key}) : super(key: key); + const DangerSectionWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return ExpandableMenuItemWidget( - title: "Exit", + title: context.l10n.exit, selectionOptionsWidget: _getSectionOptions(context), leadingIcon: Icons.logout_outlined, ); @@ -27,25 +28,25 @@ class DangerSectionWidget extends StatelessWidget { children: [ sectionOptionSpacing, MenuItemWidget( - captionedTextWidget: const CaptionedTextWidget( - title: "Logout", + captionedTextWidget: CaptionedTextWidget( + title: context.l10n.logout, ), pressedColor: getEnteColorScheme(context).fillFaint, trailingIcon: Icons.chevron_right_outlined, trailingIconIsMuted: true, - onTap: () { + onTap: () async { _onLogoutTapped(context); }, ), sectionOptionSpacing, MenuItemWidget( - captionedTextWidget: const CaptionedTextWidget( - title: "Delete account", + captionedTextWidget: CaptionedTextWidget( + title: context.l10n.deleteAccount, ), pressedColor: getEnteColorScheme(context).fillFaint, trailingIcon: Icons.chevron_right_outlined, trailingIconIsMuted: true, - onTap: () { + onTap: () async { routeToPage(context, const DeleteAccountPage()); }, ), diff --git a/lib/ui/settings/data_section_widget.dart b/lib/ui/settings/data_section_widget.dart index 644995591..73be0e7b6 100644 --- a/lib/ui/settings/data_section_widget.dart +++ b/lib/ui/settings/data_section_widget.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'dart:async'; import 'dart:io'; @@ -13,8 +13,10 @@ import 'package:ente_auth/services/local_authentication_service.dart'; import 'package:ente_auth/store/code_store.dart'; import 'package:ente_auth/theme/ente_theme.dart'; import 'package:ente_auth/ui/components/captioned_text_widget.dart'; +import 'package:ente_auth/ui/components/dialog_widget.dart'; import 'package:ente_auth/ui/components/expandable_menu_item_widget.dart'; import 'package:ente_auth/ui/components/menu_item_widget.dart'; +import 'package:ente_auth/ui/components/models/button_type.dart'; import 'package:ente_auth/ui/settings/common_settings.dart'; import 'package:ente_auth/utils/dialog_util.dart'; import 'package:file_picker/file_picker.dart'; @@ -29,7 +31,7 @@ class DataSectionWidget extends StatelessWidget { Configuration.instance.getTempDirectory() + "ente-authenticator-codes.txt", ); - DataSectionWidget({Key key}) : super(key: key); + DataSectionWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) { @@ -216,14 +218,14 @@ class DataSectionWidget extends StatelessWidget { Future _pickImportFile(BuildContext context) async { final l10n = context.l10n; - FilePickerResult result = await FilePicker.platform.pickFiles(); + FilePickerResult? result = await FilePicker.platform.pickFiles(); if (result == null) { return; } - final dialog = createProgressDialog(context, l10n.pleaseWaitTitle); + final dialog = createProgressDialog(context, l10n.pleaseWait); await dialog.show(); try { - File file = File(result.files.single.path); + File file = File(result.files.single.path!); final codes = await file.readAsString(); List splitCodes = codes.split(","); if (splitCodes.length == 1) { @@ -241,34 +243,20 @@ class DataSectionWidget extends StatelessWidget { await CodeStore.instance.addCode(code, shouldSync: false); } unawaited(AuthenticatorService.instance.sync()); - await dialog.hide(); + + final DialogWidget dialog = choiceDialog( + title: "Yay!", + body: "You have imported " + parsedCodes.length.toString() + " codes!", + firstButtonLabel: l10n.ok, + firstButtonOnTap: () async { + Navigator.of(context, rootNavigator: true).pop('dialog'); + }, + firstButtonType: ButtonType.primary, + ); await showConfettiDialog( context: context, - builder: (BuildContext context) { - return AlertDialog( - shape: - RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)), - title: Text( - "Yay!", - style: Theme.of(context).textTheme.headline6, - ), - content: Text( - "You have imported " + parsedCodes.length.toString() + " codes!", - ), - actions: [ - TextButton( - child: Text( - l10n.ok, - style: TextStyle( - color: Theme.of(context).colorScheme.onSurface, - ), - ), - onPressed: () { - Navigator.of(context, rootNavigator: true).pop('dialog'); - }, - ), - ], - ); + dialogBuilder: (BuildContext context) { + return dialog; }, ); } catch (e) { diff --git a/lib/ui/settings/debug_section_widget.dart b/lib/ui/settings/debug_section_widget.dart index 25c8b9ecb..259937ff7 100644 --- a/lib/ui/settings/debug_section_widget.dart +++ b/lib/ui/settings/debug_section_widget.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/l10n/l10n.dart'; import 'package:ente_auth/ui/settings/common_settings.dart'; @@ -10,7 +8,8 @@ import 'package:flutter/material.dart'; import 'package:flutter_sodium/flutter_sodium.dart'; class DebugSectionWidget extends StatelessWidget { - const DebugSectionWidget({Key key}) : super(key: key); + const DebugSectionWidget({super.key}); + @override Widget build(BuildContext context) { // This is a debug only section not shown to end users, so these strings are @@ -19,7 +18,7 @@ class DebugSectionWidget extends StatelessWidget { header: const SettingsSectionTitle("Debug"), collapsed: Container(), expanded: _getSectionOptions(context), - theme: getExpandableTheme(context), + theme: getExpandableTheme(), ); } @@ -42,7 +41,7 @@ class DebugSectionWidget extends StatelessWidget { void _showKeyAttributesDialog(BuildContext context) { final l10n = context.l10n; - final keyAttributes = Configuration.instance.getKeyAttributes(); + final keyAttributes = Configuration.instance.getKeyAttributes()!; final AlertDialog alert = AlertDialog( title: const Text("key attributes"), content: SingleChildScrollView( @@ -52,7 +51,7 @@ class DebugSectionWidget extends StatelessWidget { "Key", style: TextStyle(fontWeight: FontWeight.bold), ), - Text(Sodium.bin2base64(Configuration.instance.getKey())), + Text(Sodium.bin2base64(Configuration.instance.getKey()!)), const Padding(padding: EdgeInsets.all(12)), const Text( "Encrypted Key", diff --git a/lib/ui/settings/language_picker.dart b/lib/ui/settings/language_picker.dart index 149e577f1..5c1bc6796 100644 --- a/lib/ui/settings/language_picker.dart +++ b/lib/ui/settings/language_picker.dart @@ -54,7 +54,7 @@ class LanguageSelectorPage extends StatelessWidget { ), ), // MenuSectionDescriptionWidget( - // content: S.of(context).maxDeviceLimitSpikeHandling(50), + // content: context.l10n.maxDeviceLimitSpikeHandling(50), // ) ], ), diff --git a/lib/ui/settings/security_section_widget.dart b/lib/ui/settings/security_section_widget.dart index 22eab922c..55b2f31f8 100644 --- a/lib/ui/settings/security_section_widget.dart +++ b/lib/ui/settings/security_section_widget.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/l10n/l10n.dart'; @@ -13,7 +13,7 @@ import 'package:ente_auth/ui/settings/common_settings.dart'; import 'package:flutter/material.dart'; class SecuritySectionWidget extends StatefulWidget { - const SecuritySectionWidget({Key key}) : super(key: key); + const SecuritySectionWidget({Key? key}) : super(key: key); @override State createState() => _SecuritySectionWidgetState(); diff --git a/lib/ui/settings/settings_section_title.dart b/lib/ui/settings/settings_section_title.dart index 3c71ac178..85bba4a0c 100644 --- a/lib/ui/settings/settings_section_title.dart +++ b/lib/ui/settings/settings_section_title.dart @@ -1,14 +1,14 @@ -// @dart=2.9 + import 'package:flutter/material.dart'; class SettingsSectionTitle extends StatelessWidget { final String title; - final Color color; + final Color? color; const SettingsSectionTitle( this.title, { - Key key, + Key? key, this.color, }) : super(key: key); @@ -24,7 +24,7 @@ class SettingsSectionTitle extends StatelessWidget { style: color != null ? Theme.of(context) .textTheme - .headline6 + .headline6! .merge(TextStyle(color: color)) : Theme.of(context).textTheme.headline6, ), diff --git a/lib/ui/settings/settings_text_item.dart b/lib/ui/settings/settings_text_item.dart index 32dc01b08..243cc96b5 100644 --- a/lib/ui/settings/settings_text_item.dart +++ b/lib/ui/settings/settings_text_item.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'dart:io'; @@ -8,9 +8,9 @@ class SettingsTextItem extends StatelessWidget { final String text; final IconData icon; const SettingsTextItem({ - Key key, - @required this.text, - @required this.icon, + Key? key, + required this.text, + required this.icon, }) : super(key: key); @override diff --git a/lib/ui/settings/social_section_widget.dart b/lib/ui/settings/social_section_widget.dart index 4020d6215..3702b0f57 100644 --- a/lib/ui/settings/social_section_widget.dart +++ b/lib/ui/settings/social_section_widget.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/l10n/l10n.dart'; import 'package:ente_auth/theme/ente_theme.dart'; @@ -10,7 +10,7 @@ import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher_string.dart'; class SocialSectionWidget extends StatelessWidget { - const SocialSectionWidget({Key key}) : super(key: key); + const SocialSectionWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) { @@ -39,7 +39,7 @@ class SocialSectionWidget extends StatelessWidget { class SocialsMenuItemWidget extends StatelessWidget { final String text; final String urlSring; - const SocialsMenuItemWidget(this.text, this.urlSring, {Key key}) + const SocialsMenuItemWidget(this.text, this.urlSring, {Key? key}) : super(key: key); @override @@ -53,7 +53,7 @@ class SocialsMenuItemWidget extends StatelessWidget { trailingIconIsMuted: true, onTap: () { launchUrlString(urlSring); - }, + } as Future Function()?, ); } } diff --git a/lib/ui/settings/support_section_widget.dart b/lib/ui/settings/support_section_widget.dart index ce27ebc4b..ad578810d 100644 --- a/lib/ui/settings/support_section_widget.dart +++ b/lib/ui/settings/support_section_widget.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/core/constants.dart'; import 'package:ente_auth/core/logging/super_logging.dart'; @@ -13,7 +13,7 @@ import 'package:ente_auth/utils/email_util.dart'; import 'package:flutter/material.dart'; class SupportSectionWidget extends StatefulWidget { - const SupportSectionWidget({Key key}) : super(key: key); + const SupportSectionWidget({Key? key}) : super(key: key); @override State createState() => _SupportSectionWidgetState(); diff --git a/lib/ui/settings/theme_switch_widget.dart b/lib/ui/settings/theme_switch_widget.dart index 439f4695f..69e4513f1 100644 --- a/lib/ui/settings/theme_switch_widget.dart +++ b/lib/ui/settings/theme_switch_widget.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:adaptive_theme/adaptive_theme.dart'; import 'package:ente_auth/ente_theme_data.dart'; @@ -11,14 +11,14 @@ import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; class ThemeSwitchWidget extends StatefulWidget { - const ThemeSwitchWidget({Key key}) : super(key: key); + const ThemeSwitchWidget({Key? key}) : super(key: key); @override State createState() => _ThemeSwitchWidgetState(); } class _ThemeSwitchWidgetState extends State { - AdaptiveThemeMode currentThemeMode; + AdaptiveThemeMode? currentThemeMode; @override void initState() { @@ -67,7 +67,7 @@ class _ThemeSwitchWidgetState extends State { Widget _menuItem(BuildContext context, AdaptiveThemeMode themeMode) { return MenuItemWidget( captionedTextWidget: CaptionedTextWidget( - title: toBeginningOfSentenceCase(themeMode.name), + title: toBeginningOfSentenceCase(themeMode.name)!, textStyle: Theme.of(context).colorScheme.enteTheme.textTheme.body, ), pressedColor: getEnteColorScheme(context).fillFaint, diff --git a/lib/ui/settings_page.dart b/lib/ui/settings_page.dart index c7a983534..43a6823ba 100644 --- a/lib/ui/settings_page.dart +++ b/lib/ui/settings_page.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'dart:io'; import 'package:ente_auth/theme/colors.dart'; @@ -19,8 +17,8 @@ import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; class SettingsPage extends StatelessWidget { - final ValueNotifier emailNotifier; - const SettingsPage({Key key, @required this.emailNotifier}) : super(key: key); + final ValueNotifier emailNotifier; + const SettingsPage({Key? key, required this.emailNotifier}) : super(key: key); @override Widget build(BuildContext context) { @@ -44,9 +42,9 @@ class SettingsPage extends StatelessWidget { child: AnimatedBuilder( // [AnimatedBuilder] accepts any [Listenable] subtype. animation: emailNotifier, - builder: (BuildContext context, Widget child) { + builder: (BuildContext context, Widget? child) { return Text( - emailNotifier.value, + emailNotifier.value!, style: enteTextTheme.body.copyWith( color: colorScheme.textMuted, overflow: TextOverflow.ellipsis, diff --git a/lib/ui/tools/debug/log_file_viewer.dart b/lib/ui/tools/debug/log_file_viewer.dart index 28cde4543..cc9321aa4 100644 --- a/lib/ui/tools/debug/log_file_viewer.dart +++ b/lib/ui/tools/debug/log_file_viewer.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'dart:io'; import 'dart:ui'; @@ -8,14 +6,14 @@ import 'package:flutter/material.dart'; class LogFileViewer extends StatefulWidget { final File file; - const LogFileViewer(this.file, {Key key}) : super(key: key); + const LogFileViewer(this.file, {Key? key}) : super(key: key); @override State createState() => _LogFileViewerState(); } class _LogFileViewerState extends State { - String _logs; + String? _logs; @override void initState() { widget.file.readAsString().then((logs) { @@ -45,7 +43,7 @@ class _LogFileViewerState extends State { padding: const EdgeInsets.only(left: 12, top: 8, right: 12), child: SingleChildScrollView( child: Text( - _logs, + _logs!, style: const TextStyle( fontFeatures: [ FontFeature.tabularFigures(), diff --git a/lib/ui/tools/lock_screen.dart b/lib/ui/tools/lock_screen.dart index 4546658ee..a1389fc4e 100644 --- a/lib/ui/tools/lock_screen.dart +++ b/lib/ui/tools/lock_screen.dart @@ -1,4 +1,4 @@ -// @dart=2.9 + import 'package:ente_auth/ui/common/gradient_button.dart'; import 'package:ente_auth/ui/tools/app_lock.dart'; @@ -7,7 +7,7 @@ import 'package:flutter/material.dart'; import 'package:logging/logging.dart'; class LockScreen extends StatefulWidget { - const LockScreen({Key key}) : super(key: key); + const LockScreen({Key? key}) : super(key: key); @override State createState() => _LockScreenState(); @@ -62,7 +62,7 @@ class _LockScreenState extends State { "Please authenticate to view your secrets", ); if (result) { - AppLock.of(context).didUnlock(); + AppLock.of(context)!.didUnlock(); } } catch (e, s) { _logger.severe(e, s); diff --git a/lib/ui/two_factor_authentication_page.dart b/lib/ui/two_factor_authentication_page.dart index 589e25922..6287abdf8 100644 --- a/lib/ui/two_factor_authentication_page.dart +++ b/lib/ui/two_factor_authentication_page.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'package:ente_auth/l10n/l10n.dart'; import 'package:ente_auth/services/user_service.dart'; import 'package:ente_auth/ui/lifecycle_event_handler.dart'; @@ -10,7 +8,7 @@ import 'package:pinput/pin_put/pin_put.dart'; class TwoFactorAuthenticationPage extends StatefulWidget { final String sessionID; - const TwoFactorAuthenticationPage(this.sessionID, {Key key}) + const TwoFactorAuthenticationPage(this.sessionID, {Key? key}) : super(key: key); @override @@ -22,7 +20,7 @@ class _TwoFactorAuthenticationPageState extends State { final _pinController = TextEditingController(); String _code = ""; - LifecycleEventHandler _lifecycleEventHandler; + late LifecycleEventHandler _lifecycleEventHandler; @override void initState() { @@ -30,8 +28,8 @@ class _TwoFactorAuthenticationPageState resumeCallBack: () async { if (mounted) { final data = await Clipboard.getData(Clipboard.kTextPlain); - if (data != null && data.text != null && data.text.length == 6) { - _pinController.text = data.text; + if (data != null && data.text != null && data.text!.length == 6) { + _pinController.text = data.text!; } } }, @@ -65,7 +63,7 @@ class _TwoFactorAuthenticationPageState border: Border.all( color: Theme.of(context) .inputDecorationTheme - .focusedBorder + .focusedBorder! .borderSide .color, ), diff --git a/lib/ui/two_factor_recovery_page.dart b/lib/ui/two_factor_recovery_page.dart index 60ce1f021..e007a9c40 100644 --- a/lib/ui/two_factor_recovery_page.dart +++ b/lib/ui/two_factor_recovery_page.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'dart:ui'; import 'package:ente_auth/l10n/l10n.dart'; @@ -16,7 +14,7 @@ class TwoFactorRecoveryPage extends StatefulWidget { this.sessionID, this.encryptedSecret, this.secretDecryptionNonce, { - Key key, + Key? key, }) : super(key: key); @override diff --git a/lib/utils/dialog_util.dart b/lib/utils/dialog_util.dart index 89a287545..e37beb831 100644 --- a/lib/utils/dialog_util.dart +++ b/lib/utils/dialog_util.dart @@ -1,24 +1,230 @@ -// @dart=2.9 - import 'dart:math'; import 'package:confetti/confetti.dart'; +import "package:dio/dio.dart"; import 'package:ente_auth/l10n/l10n.dart'; +import 'package:ente_auth/models/typedefs.dart'; +import 'package:ente_auth/theme/colors.dart'; import 'package:ente_auth/ui/common/loading_widget.dart'; import 'package:ente_auth/ui/common/progress_dialog.dart'; +import 'package:ente_auth/ui/components/action_sheet_widget.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; +import 'package:ente_auth/ui/components/components_constants.dart'; +import 'package:ente_auth/ui/components/dialog_widget.dart'; +import 'package:ente_auth/ui/components/models/button_result.dart'; +import 'package:ente_auth/ui/components/models/button_type.dart'; import 'package:flutter/material.dart'; -ProgressDialog createProgressDialog(BuildContext context, String message) { +typedef DialogBuilder = DialogWidget Function(BuildContext context); + +///Will return null if dismissed by tapping outside +Future showErrorDialog( + BuildContext context, + String title, + String? body, { + bool isDismissable = true, +}) async { + return showDialogWidget( + context: context, + title: title, + body: body, + isDismissible: isDismissable, + buttons: const [ + ButtonWidget( + buttonType: ButtonType.secondary, + labelText: "OK", + isInAlert: true, + buttonAction: ButtonAction.first, + ), + ], + ); +} + +Future showErrorDialogForException({ + required BuildContext context, + required Exception exception, + bool isDismissible = true, + String apiErrorPrefix = "It looks like something went wrong.", +}) async { + String errorMessage = context.l10n.tempErrorContactSupportIfPersists; + if (exception is DioError && + exception.response != null && + exception.response!.data["code"] != null) { + errorMessage = + "$apiErrorPrefix\n\nReason: " + exception.response!.data["code"]; + } + return showDialogWidget( + context: context, + title: context.l10n.error, + icon: Icons.error_outline_outlined, + body: errorMessage, + isDismissible: isDismissible, + buttons: const [ + ButtonWidget( + buttonType: ButtonType.secondary, + labelText: "OK", + isInAlert: true, + ), + ], + ); +} + +///Will return null if dismissed by tapping outside +Future showGenericErrorDialog({ + required BuildContext context, + bool isDismissible = true, +}) async { + return showDialogWidget( + context: context, + title: context.l10n.error, + icon: Icons.error_outline_outlined, + body: context.l10n.itLooksLikeSomethingWentWrongPleaseRetryAfterSome, + isDismissible: isDismissible, + buttons: const [ + ButtonWidget( + buttonType: ButtonType.secondary, + labelText: "OK", + isInAlert: true, + ), + ], + ); +} + +DialogWidget choiceDialog({ + required String title, + String? body, + required String firstButtonLabel, + String secondButtonLabel = "Cancel", + ButtonType firstButtonType = ButtonType.neutral, + ButtonType secondButtonType = ButtonType.secondary, + ButtonAction firstButtonAction = ButtonAction.first, + ButtonAction secondButtonAction = ButtonAction.cancel, + FutureVoidCallback? firstButtonOnTap, + FutureVoidCallback? secondButtonOnTap, + bool isCritical = false, + IconData? icon, +}) { + final buttons = [ + ButtonWidget( + buttonType: isCritical ? ButtonType.critical : firstButtonType, + labelText: firstButtonLabel, + isInAlert: true, + onTap: firstButtonOnTap, + buttonAction: firstButtonAction, + ), + ButtonWidget( + buttonType: secondButtonType, + labelText: secondButtonLabel, + isInAlert: true, + onTap: secondButtonOnTap, + buttonAction: secondButtonAction, + ), + ]; + + return DialogWidget(title: title, body: body, buttons: buttons, icon: icon); +} + +///Will return null if dismissed by tapping outside +Future showChoiceDialog( + BuildContext context, { + required String title, + String? body, + required String firstButtonLabel, + String secondButtonLabel = "Cancel", + ButtonType firstButtonType = ButtonType.neutral, + ButtonType secondButtonType = ButtonType.secondary, + ButtonAction firstButtonAction = ButtonAction.first, + ButtonAction secondButtonAction = ButtonAction.cancel, + FutureVoidCallback? firstButtonOnTap, + FutureVoidCallback? secondButtonOnTap, + bool isCritical = false, + IconData? icon, + bool isDismissible = true, +}) async { + final buttons = [ + ButtonWidget( + buttonType: isCritical ? ButtonType.critical : firstButtonType, + labelText: firstButtonLabel, + isInAlert: true, + onTap: firstButtonOnTap, + buttonAction: firstButtonAction, + ), + ButtonWidget( + buttonType: secondButtonType, + labelText: secondButtonLabel, + isInAlert: true, + onTap: secondButtonOnTap, + buttonAction: secondButtonAction, + ), + ]; + return showDialogWidget( + context: context, + title: title, + body: body, + buttons: buttons, + icon: icon, + isDismissible: isDismissible, + ); +} + +///Will return null if dismissed by tapping outside +Future showChoiceActionSheet( + BuildContext context, { + required String title, + String? body, + required String firstButtonLabel, + String secondButtonLabel = "Cancel", + ButtonType firstButtonType = ButtonType.neutral, + ButtonType secondButtonType = ButtonType.secondary, + ButtonAction firstButtonAction = ButtonAction.first, + ButtonAction secondButtonAction = ButtonAction.cancel, + FutureVoidCallback? firstButtonOnTap, + FutureVoidCallback? secondButtonOnTap, + bool isCritical = false, + IconData? icon, + bool isDismissible = true, +}) async { + final buttons = [ + ButtonWidget( + buttonType: isCritical ? ButtonType.critical : firstButtonType, + labelText: firstButtonLabel, + isInAlert: true, + onTap: firstButtonOnTap, + buttonAction: firstButtonAction, + shouldStickToDarkTheme: true, + ), + ButtonWidget( + buttonType: secondButtonType, + labelText: secondButtonLabel, + isInAlert: true, + onTap: secondButtonOnTap, + buttonAction: secondButtonAction, + shouldStickToDarkTheme: true, + ), + ]; + return showActionSheet( + context: context, + title: title, + body: body, + buttons: buttons, + isDismissible: isDismissible, + ); +} + +ProgressDialog createProgressDialog( + BuildContext context, + String message, { + isDismissible = false, +}) { final dialog = ProgressDialog( context, type: ProgressDialogType.normal, - isDismissible: false, + isDismissible: isDismissible, barrierColor: Colors.black12, ); dialog.style( message: message, - messageTextStyle: - Theme.of(context).textTheme.caption.copyWith(fontSize: 14), + messageTextStyle: Theme.of(context).textTheme.caption, backgroundColor: Theme.of(context).dialogTheme.backgroundColor, progressWidget: const EnteLoadingWidget(), borderRadius: 10, @@ -28,61 +234,20 @@ ProgressDialog createProgressDialog(BuildContext context, String message) { return dialog; } -Future showErrorDialog( - BuildContext context, - String title, - String content, -) { - final l10n = context.l10n; - final AlertDialog alert = AlertDialog( - shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)), - title: title.isEmpty - ? const SizedBox.shrink() - : Text( - title, - style: Theme.of(context).textTheme.headline6, - ), - content: Text(content), - actions: [ - TextButton( - child: Text( - l10n.ok, - style: TextStyle( - color: Theme.of(context).colorScheme.onSurface, - ), - ), - onPressed: () { - Navigator.of(context, rootNavigator: true).pop('dialog'); - }, - ), - ], - ); - - return showDialog( - context: context, - builder: (BuildContext context) { - return alert; - }, - barrierColor: Colors.black12, - ); -} - -Future showGenericErrorDialog(BuildContext context) { - return showErrorDialog(context, "Something went wrong", "Please try again."); -} - -Future showConfettiDialog({ - @required BuildContext context, - WidgetBuilder builder, +Future showConfettiDialog({ + required BuildContext context, + required DialogBuilder dialogBuilder, bool barrierDismissible = true, - Color barrierColor, + Color? barrierColor, bool useSafeArea = true, bool useRootNavigator = true, - RouteSettings routeSettings, + RouteSettings? routeSettings, Alignment confettiAlignment = Alignment.center, }) { + final widthOfScreen = MediaQuery.of(context).size.width; + final isMobileSmall = widthOfScreen <= mobileSmallThreshold; final pageBuilder = Builder( - builder: builder, + builder: dialogBuilder, ); final ConfettiController confettiController = ConfettiController(duration: const Duration(seconds: 1)); @@ -90,22 +255,25 @@ Future showConfettiDialog({ return showDialog( context: context, builder: (BuildContext buildContext) { - return Stack( - children: [ - pageBuilder, - Align( - alignment: confettiAlignment, - child: ConfettiWidget( - confettiController: confettiController, - blastDirection: pi / 2, - emissionFrequency: 0, - numberOfParticles: 100, - // a lot of particles at once - gravity: 1, - blastDirectionality: BlastDirectionality.explosive, + return Padding( + padding: EdgeInsets.symmetric(horizontal: isMobileSmall ? 8 : 0), + child: Stack( + children: [ + Align(alignment: Alignment.center, child: pageBuilder), + Align( + alignment: confettiAlignment, + child: ConfettiWidget( + confettiController: confettiController, + blastDirection: pi / 2, + emissionFrequency: 0, + numberOfParticles: 100, + // a lot of particles at once + gravity: 1, + blastDirectionality: BlastDirectionality.explosive, + ), ), - ), - ], + ], + ), ); }, barrierDismissible: barrierDismissible, @@ -115,3 +283,56 @@ Future showConfettiDialog({ routeSettings: routeSettings, ); } + +//Can return ButtonResult? from ButtonWidget or Exception? from TextInputDialog +Future showTextInputDialog( + BuildContext context, { + required String title, + String? body, + required String submitButtonLabel, + IconData? icon, + String? label, + String? message, + String? hintText, + required FutureVoidCallbackParamStr onSubmit, + IconData? prefixIcon, + String? initialValue, + Alignment? alignMessage, + int? maxLength, + bool showOnlyLoadingState = false, + TextCapitalization textCapitalization = TextCapitalization.none, + bool alwaysShowSuccessState = false, + bool isPasswordInput = false, +}) { + return showDialog( + barrierColor: backdropFaintDark, + context: context, + builder: (context) { + final bottomInset = MediaQuery.of(context).viewInsets.bottom; + final isKeyboardUp = bottomInset > 100; + return Center( + child: Padding( + padding: EdgeInsets.only(bottom: isKeyboardUp ? bottomInset : 0), + child: TextInputDialog( + title: title, + message: message, + label: label, + body: body, + icon: icon, + submitButtonLabel: submitButtonLabel, + onSubmit: onSubmit, + hintText: hintText, + prefixIcon: prefixIcon, + initialValue: initialValue, + alignMessage: alignMessage, + maxLength: maxLength, + showOnlyLoadingState: showOnlyLoadingState, + textCapitalization: textCapitalization, + alwaysShowSuccessState: alwaysShowSuccessState, + isPasswordInput: isPasswordInput, + ), + ), + ); + }, + ); +} diff --git a/lib/utils/email_util.dart b/lib/utils/email_util.dart index 9da345673..7fc8f4321 100644 --- a/lib/utils/email_util.dart +++ b/lib/utils/email_util.dart @@ -1,5 +1,3 @@ -// @dart=2.9 - import 'dart:io'; import 'package:archive/archive_io.dart'; @@ -8,12 +6,13 @@ import 'package:ente_auth/core/configuration.dart'; import 'package:ente_auth/core/logging/super_logging.dart'; import 'package:ente_auth/ente_theme_data.dart'; import 'package:ente_auth/l10n/l10n.dart'; -import 'package:ente_auth/ui/common/dialogs.dart'; +import 'package:ente_auth/ui/components/buttons/button_widget.dart'; +import 'package:ente_auth/ui/components/dialog_widget.dart'; +import 'package:ente_auth/ui/components/models/button_type.dart'; import 'package:ente_auth/ui/tools/debug/log_file_viewer.dart'; // import 'package:ente_auth/ui/tools/debug/log_file_viewer.dart'; import 'package:ente_auth/utils/dialog_util.dart'; import 'package:ente_auth/utils/toast_util.dart'; -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_email_sender/flutter_email_sender.dart'; @@ -34,9 +33,9 @@ Future sendLogs( BuildContext context, String title, String toEmail, { - Function postShare, - String subject, - String body, + Function? postShare, + String? subject, + String? body, }) async { final l10n = context.l10n; final List actions = [ @@ -46,7 +45,7 @@ Future sendLogs( children: [ Icon( Icons.feed_outlined, - color: Theme.of(context).iconTheme.color.withOpacity(0.85), + color: Theme.of(context).iconTheme.color?.withOpacity(0.85), ), const Padding(padding: EdgeInsets.all(4)), Text( @@ -64,7 +63,7 @@ Future sendLogs( showDialog( context: context, builder: (BuildContext context) { - return LogFileViewer(SuperLogging.logFile); + return LogFileViewer(SuperLogging.logFile!); }, barrierColor: Colors.black87, barrierDismissible: false, @@ -128,14 +127,14 @@ Future sendLogs( Future _sendLogs( BuildContext context, String toEmail, - String subject, - String body, + String? subject, + String? body, ) async { final String zipFilePath = await getZippedLogsFile(context); final Email email = Email( recipients: [toEmail], - subject: subject, - body: body, + subject: subject ?? '', + body: body ?? '', attachmentPaths: [zipFilePath], isHTML: false, ); @@ -169,29 +168,49 @@ Future shareLogs( String toEmail, String zipFilePath, ) async { - final l10n = context.l10n; - final result = await showChoiceDialog( - context, - l10n.emailLogsTitle, - l10n.emailLogsMessage(toEmail), - firstAction: l10n.copyEmailAction, - secondAction: l10n.exportLogsAction, + final result = await showDialogWidget( + context: context, + title: context.l10n.emailYourLogs, + body: context.l10n.pleaseSendTheLogsTo(toEmail), + buttons: [ + ButtonWidget( + buttonType: ButtonType.neutral, + labelText: context.l10n.copyEmailAddress, + isInAlert: true, + buttonAction: ButtonAction.first, + onTap: () async { + await Clipboard.setData(ClipboardData(text: toEmail)); + }, + shouldShowSuccessConfirmation: true, + ), + ButtonWidget( + buttonType: ButtonType.neutral, + labelText: context.l10n.exportLogs, + isInAlert: true, + buttonAction: ButtonAction.second, + ), + ButtonWidget( + buttonType: ButtonType.secondary, + labelText: context.l10n.cancel, + isInAlert: true, + buttonAction: ButtonAction.cancel, + ), + ], ); - if (result != null && result == DialogUserChoice.firstChoice) { - await Clipboard.setData(ClipboardData(text: toEmail)); + if (result?.action != null && result!.action == ButtonAction.second) { + final Size size = MediaQuery.of(context).size; + await Share.shareFiles( + [zipFilePath], + sharePositionOrigin: Rect.fromLTWH(0, 0, size.width, size.height / 2), + ); } - final Size size = MediaQuery.of(context).size; - await Share.shareFiles( - [zipFilePath], - sharePositionOrigin: Rect.fromLTWH(0, 0, size.width, size.height / 2), - ); } Future sendEmail( BuildContext context, { - @required String to, - String subject, - String body, + required String to, + String? subject, + String? body, }) async { try { final String clientDebugInfo = await _clientInfo(); diff --git a/pubspec.lock b/pubspec.lock index c46f62503..654c1f8db 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -790,6 +790,14 @@ packages: url: "https://pub.dev" source: hosted version: "0.3.0" + modal_bottom_sheet: + dependency: "direct main" + description: + name: modal_bottom_sheet + sha256: "3bba63c62d35c931bce7f8ae23a47f9a05836d8cb3c11122ada64e0b2f3d718f" + url: "https://pub.dev" + source: hosted + version: "3.0.0-pre" move_to_background: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 8a565b7c0..b829deb08 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ version: 1.0.36+36 publish_to: none environment: - sdk: ">=2.12.0 <3.0.0" + sdk: '>=2.17.0 <3.0.0' dependencies: adaptive_theme: ^3.1.0 # done @@ -48,6 +48,7 @@ dependencies: json_annotation: ^4.5.0 local_auth: ^1.1.5 logging: ^1.0.1 + modal_bottom_sheet: ^3.0.0-pre move_to_background: ^1.0.2 open_filex: ^4.3.2 otp: ^3.1.1