Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to Flutter 2. #195

Draft
wants to merge 25 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
be35c77
First attempt at resolving packages.
IoanaAlexandru Jun 6, 2021
889ffc6
Make it build.
IoanaAlexandru Jun 6, 2021
fc51d5b
Fix category headers in settings page.
IoanaAlexandru Jun 6, 2021
a623122
Merge branch 'master' into null_safety
IoanaAlexandru Jul 16, 2021
6a2e04c
Fix merge.
IoanaAlexandru Jul 16, 2021
80cf1c1
Fix warnings.
IoanaAlexandru Jul 16, 2021
39efe25
Merge branch 'master' into null_safety
IoanaAlexandru Jul 16, 2021
f9de1d7
Fix merge.
IoanaAlexandru Jul 16, 2021
cf7f267
Fix more warnings.
IoanaAlexandru Jul 16, 2021
6b452c3
Update gradle.
IoanaAlexandru Aug 15, 2021
af2589f
Migrate timetable (#278)
bogpie Sep 30, 2021
1b01a1a
Update null_safety with changes from master (#294)
IoanaAlexandru Oct 3, 2021
2085ce9
Fix warnings for flutter 2 migration. (#280)
IoanaAlexandru Oct 3, 2021
897db6d
Upgrade packages.
IoanaAlexandru Mar 19, 2022
f77fbaa
[untested] Fix even week events bug
IoanaAlexandru Apr 10, 2022
648100b
Upgrade packages (again).
IoanaAlexandru Apr 10, 2022
787a109
Merge branch 'master' into null_safety_latest
IoanaAlexandru Apr 10, 2022
bc726db
Fix go to today button.
IoanaAlexandru Apr 10, 2022
94c487a
Run dart fix --apply.
IoanaAlexandru Apr 10, 2022
e283eb2
Run dart fmt.
IoanaAlexandru Apr 10, 2022
da7c5f9
Merge pull request #331 from student-hub/null_safety_latest
IoanaAlexandru Apr 10, 2022
09ee2de
Migrate to null safety firebase storage and image picker (#295)
AdrianMargineanu Apr 30, 2022
035e4a1
Implement the new no-items strategy (#337)
stefanp0pa May 2, 2022
812d97e
Merge select_sources branch on null-safety branch
stefanp0pa May 17, 2022
d0cad7b
Fix merge on null_safety
stefanp0pa May 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/linter/Dangerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ if github.pr_body.length < 5
warn "Please provide a summary in the Pull Request description"
end

files = git.added_files + git.modified_files
files.each do |f|
diff = git.diff_for_file(f)
# Check for uses of S.of(context) or similar
if f =~ /.*\.dart/ and diff.patch =~ /^\+.*S\.of\(.+\)/m
File.readlines(f).each_with_index do |line, index|
if line =~ /S\.of\(.+\)/
warn("Use S.current instead of S.of(context)", file: f, line: index+1)
end
end
end
end

# Analyze documentation
textlint.config_file = '.github/linter/.textlintrc'
textlint.max_severity = "warn"
Expand Down
19 changes: 8 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ jobs:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'
channel: 'stable'

- name: Get packages
run: flutter pub get
Expand Down Expand Up @@ -91,8 +90,7 @@ jobs:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'
channel: 'stable'

- name: Get packages
run: flutter pub get
Expand All @@ -115,11 +113,11 @@ jobs:
- name: Build release APK
run: flutter build apk --release

- name: Create a Release APK
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*.apk"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Create a Release APK
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*.apk"
token: ${{ secrets.RELEASE_TOKEN }}

android:
name: Deploy to Google Play
Expand All @@ -133,8 +131,7 @@ jobs:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'
channel: 'stable'

- name: Get packages
run: flutter pub get
Expand Down
146 changes: 71 additions & 75 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,90 +1,86 @@
on:
push:
branches:
- master
- master
pull_request:

name: Linter
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'
- name: Check formattting
run: |
if find . -name *.dart -not -path "./lib/generated/*" -exec flutter format --set-exit-if-changed --dry-run {} +
then
echo "The code formatting is nice and tidy."
else
echo "Please fix the formatting of the files listed above."
exit 1
fi

name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Check formattting
run: |
if find . -name *.dart -not -path "./lib/generated/*" -exec flutter format --set-exit-if-changed --dry-run {} +
then
echo "The code formatting is nice and tidy."
else
echo "Please fix the formatting of the files listed above."
exit 1
fi
analysis:
name: Lint
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'
- name: Install dependencies
run: flutter pub get
- name: Run linter
run: flutter analyze
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Run linter
run: flutter analyze

code_review:
name: Code Review
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'
- name: Install dependencies
run: flutter pub get
- name: Run linter
run: flutter analyze > flutter_analyze_report.txt
continue-on-error: true
- name: Install Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: "2.6"
- uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('.github/linter/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install Node packages
run: npm install .github/linter
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install proselint
run: pip install proselint
- name: Set up proselint config
run: cp .github/linter/.proselintrc ~/.proselintrc
- name: Run danger on generated report
uses: MeilCli/danger-action@v5
with:
danger_file: .github/linter/Dangerfile
plugins_file: .github/linter/Gemfile
install_path: 'vendor/bundle'
danger_id: "danger-pr"
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.BOT_TOKEN }}
name: Code Review
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Run linter
run: flutter analyze > flutter_analyze_report.txt
continue-on-error: true
- name: Install Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: "2.6"
- uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('.github/linter/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install Node packages
run: npm install .github/linter
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install proselint
run: pip install proselint
- name: Set up proselint config
run: cp .github/linter/.proselintrc ~/.proselintrc
- name: Run danger on generated report
uses: MeilCli/danger-action@v5
with:
danger_file: .github/linter/Dangerfile
plugins_file: .github/linter/Gemfile
install_path: 'vendor/bundle'
danger_id: "danger-pr"
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.BOT_TOKEN }}
67 changes: 33 additions & 34 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
branches:
- master
- master
pull_request:

name: Tests
Expand All @@ -11,46 +11,45 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.24.x'
channel: 'beta'

- name: Get packages
run: flutter pub get

- name: Run tests
run: flutter test --coverage

- name: Upload test artifact
uses: actions/upload-artifact@v1
with:
name: application
path: .
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'

- name: Get packages
run: flutter pub get

- name: Run tests
run: flutter test --coverage

- name: Upload test artifact
uses: actions/upload-artifact@v1
with:
name: application
path: .

coverage:
name: Coverage
needs: [test]
needs: [ test ]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v1

- name: Download test artifact
uses: actions/download-artifact@v1
with:
name: application
- name: Download test artifact
uses: actions/download-artifact@v1
with:
name: application

- name: Install lcov
run: sudo apt install -y lcov
- name: Install lcov
run: sudo apt install -y lcov

- name: Prepare coverage
working-directory: application
run: genhtml coverage/lcov.info -o coverage
- name: Prepare coverage
working-directory: application
run: genhtml coverage/lcov.info -o coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Future improvements on the app are tracked in Github's **Projects** and **Issues
When mentioning an issue in code using a *TODO* comment, consider using the format:
```TODO(GitHub username): Description, #issueID```

As mentioned in [flutter_style_todos](https://dart-lang.github.io/linter/lints/flutter_style_todos.html) lint, the person mentioned in the *TODO* is the person most familiar with the issue, **and not necesarily the one who is assigned to solve it**.
As mentioned in [flutter_style_todos](https://dart-lang.github.io/linter/lints/flutter_style_todos.html) lint, the person mentioned in the *TODO* is the person most familiar with the issue, **and not necesarily the one who is assigned to solve it**.

## Development tips

Expand All @@ -109,11 +109,13 @@ As mentioned in [flutter_style_todos](https://dart-lang.github.io/linter/lints/f
* To switch to debug config on web, in the [web/index.html](web/index.html) file, replace `firebaseConfig.release` with `firebaseConfig.debug`.
* For simplicity, you could call the default "main.dart" configuration in Android Studio "Debug", duplicate it and call the second one "Release", with `--release` as an argument. For example:
<img src=screenshots/other/release_configuration.png>

* On Android, ACS UPB Mobile uses **a separate (development) environment in debug mode**. That means a completely different Firebase project - separate data, including user info. Some important notes:
- This is not used automatically on iOS and web (#105), but on web you can manually switch to the dev environment by replacing `firebaseConfig.release` with `firebaseConfig.debug` in the [web/index.html](web/index.html) file.
- If you want to copy the data from the production environment into the development environment, you need to follow the export/import instructions from the Firebase [docs](https://firebase.google.com/docs/firestore/manage-data/export-import#export_data). This can help debug builds to match prod better, but this **should NEVER be used to copy user data**. Everything in the users/ collection should stay on the production project (and it would not work anyway, since the user IDs don't match the users in dev).

- On Android, ACS UPB Mobile uses **a separate (development) environment in debug mode**. That means a completely different Firebase project - separate data, including user info. This is not used automatically on iOS and web (#105), but on web you can manually switch to the dev environment by replacing `firebaseConfig.release` with `firebaseConfig.debug` in the [web/index.html](web/index.html) file.

| :exclamation: | You should ALWAYS use the separate development environment for testing the app when modifying any kind of data, so as not to risk breaking something in the production database. |
|---------------|:---------------|

Expand Down
4 changes: 4 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ linter:
rules:
always_put_required_named_parameters_first: true
avoid_bool_literals_in_conditional_expressions: true
# TODO: Enable this when we set up proper error handling
avoid_catches_without_on_clauses: false
avoid_classes_with_only_static_members: false
# TODO: Enable this when we set up proper error handling
avoid_dynamic_calls: false
avoid_field_initializers_in_const_classes: true
avoid_function_literals_in_foreach_calls: true
avoid_positional_boolean_parameters: true
Expand Down
6 changes: 3 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (keystorePropertiesFile.exists()) {
}

android {
compileSdkVersion 29
compileSdkVersion 31

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
Expand All @@ -45,8 +45,8 @@ android {

defaultConfig {
applicationId "ro.pub.acs.acs_upb_mobile"
minSdkVersion 16
targetSdkVersion 29
minSdkVersion 19
targetSdkVersion 31
versionCode flutterVersionCode.toInteger() + 10000
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
8 changes: 2 additions & 6 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ro.pub.acs.acs_upb_mobile">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:name="${applicationName}"
android:label="ACS UPB Mobile"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
Expand Down
Loading