Skip to content

Commit

Permalink
fix: some database bugs (#5210)
Browse files Browse the repository at this point in the history
* fix: open logic for url cell in database

* fix: row date created not working

* fix: help my toasts are burnt

* chore: quote style and add comment
  • Loading branch information
richardshiue committed Apr 29, 2024
1 parent 9135fb9 commit e0d6b19
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import 'dart:io';
import 'package:appflowy/generated/flowy_svgs.g.dart';
import 'package:appflowy/generated/locale_keys.g.dart';
import 'package:appflowy/mobile/presentation/widgets/flowy_mobile_quick_action_button.dart';
import 'package:appflowy/core/helpers/url_launcher.dart';
import 'package:appflowy/plugins/database/application/cell/cell_controller.dart';
import 'package:appflowy/plugins/database/application/cell/cell_controller_builder.dart';
import 'package:appflowy/plugins/database/application/database_controller.dart';
Expand All @@ -19,6 +18,7 @@ import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:go_router/go_router.dart';
import 'package:url_launcher/url_launcher.dart';

import '../desktop_grid/desktop_grid_url_cell.dart';
import '../desktop_row_detail/desktop_row_detail_url_cell.dart';
Expand Down Expand Up @@ -214,29 +214,20 @@ class MobileURLEditor extends StatelessWidget {
}

void openUrlCellLink(String content) async {
String url = "";
late Uri uri;

try {
// check protocol is provided
const linkPrefix = [
'http://',
'https://',
'file://',
'ftp://',
'ftps://',
'mailto:',
];
final shouldAddScheme =
!linkPrefix.any((pattern) => content.startsWith(pattern));
url = shouldAddScheme ? 'http://$content' : content;

// get hostname and check validity
final uri = Uri.parse(url);
final hostName = uri.host;
await InternetAddress.lookup(hostName);
uri = Uri.parse(content);
// `Uri` identifies `localhost` as a scheme
if (!uri.hasScheme || uri.scheme == 'localhost') {
uri = Uri.parse("http://$content");
await InternetAddress.lookup(uri.host);
}
} catch (_) {
url = "https://www.google.com/search?q=${Uri.encodeComponent(content)}";
uri = Uri.parse(
"https://www.google.com/search?q=${Uri.encodeComponent(content)}",
);
} finally {
await afLaunchUrlString(url);
await launchUrl(uri);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ void showMessageToast(
ToastGravity gravity = ToastGravity.BOTTOM,
}) {
final child = FlowyMessageToast(message: message);
final toast = context == null ? getIt<FToast>() : FToast()
..init(context!);
final toast = context == null ? getIt<FToast>() : (FToast()..init(context));
toast.showToast(
child: child,
gravity: gravity,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ use crate::services::database_view::{
use crate::services::field::{
default_type_option_data_from_type, select_type_option_from_field, transform_type_option,
type_option_data_from_pb, ChecklistCellChangeset, RelationTypeOption, SelectOptionCellChangeset,
StrCellData, TimestampCellData, TypeOptionCellDataHandler, TypeOptionCellExt,
StrCellData, TimestampCellData, TimestampCellDataWrapper, TypeOptionCellDataHandler,
TypeOptionCellExt,
};
use crate::services::field_settings::{default_field_settings_by_layout_map, FieldSettings};
use crate::services::filter::{Filter, FilterChangeset};
Expand Down Expand Up @@ -722,12 +723,12 @@ impl DatabaseEditor {
match field_type {
FieldType::LastEditedTime | FieldType::CreatedTime => {
let row = database.get_row(row_id);
let cell_data = if field_type.is_created_time() {
TimestampCellData::new(row.created_at)
let wrapped_cell_data = if field_type.is_created_time() {
TimestampCellDataWrapper::from((field_type, TimestampCellData::new(row.created_at)))
} else {
TimestampCellData::new(row.modified_at)
TimestampCellDataWrapper::from((field_type, TimestampCellData::new(row.modified_at)))
};
Some(Cell::from(cell_data))
Some(Cell::from(wrapped_cell_data))
},
_ => database.get_cell(field_id, row_id).cell,
}
Expand Down

0 comments on commit e0d6b19

Please sign in to comment.