Added bookmark options and delete bookmark
This commit is contained in:
@@ -4,9 +4,9 @@
|
|||||||
/// To regenerate, run: `dart run slang`
|
/// To regenerate, run: `dart run slang`
|
||||||
///
|
///
|
||||||
/// Locales: 2
|
/// Locales: 2
|
||||||
/// Strings: 234 (117 per locale)
|
/// Strings: 256 (128 per locale)
|
||||||
///
|
///
|
||||||
/// Built on 2024-02-25 at 16:44 UTC
|
/// Built on 2024-02-25 at 19:19 UTC
|
||||||
|
|
||||||
// coverage:ignore-file
|
// coverage:ignore-file
|
||||||
// ignore_for_file: type=lint
|
// ignore_for_file: type=lint
|
||||||
@@ -221,6 +221,7 @@ class _StringsBookmarksEn {
|
|||||||
late final _StringsBookmarksDatesEn dates = _StringsBookmarksDatesEn._(_root);
|
late final _StringsBookmarksDatesEn dates = _StringsBookmarksDatesEn._(_root);
|
||||||
late final _StringsBookmarksAddBookmarkEn addBookmark = _StringsBookmarksAddBookmarkEn._(_root);
|
late final _StringsBookmarksAddBookmarkEn addBookmark = _StringsBookmarksAddBookmarkEn._(_root);
|
||||||
late final _StringsBookmarksSearchEn search = _StringsBookmarksSearchEn._(_root);
|
late final _StringsBookmarksSearchEn search = _StringsBookmarksSearchEn._(_root);
|
||||||
|
late final _StringsBookmarksBookmarkOptionsEn bookmarkOptions = _StringsBookmarksBookmarkOptionsEn._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: tags
|
// Path: tags
|
||||||
@@ -348,6 +349,26 @@ class _StringsBookmarksSearchEn {
|
|||||||
String get inputtedSearchTermNoResults => 'The inputted search term doesn\'t have any results';
|
String get inputtedSearchTermNoResults => 'The inputted search term doesn\'t have any results';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: bookmarks.bookmarkOptions
|
||||||
|
class _StringsBookmarksBookmarkOptionsEn {
|
||||||
|
_StringsBookmarksBookmarkOptionsEn._(this._root);
|
||||||
|
|
||||||
|
final Translations _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
String get edit => 'Edit';
|
||||||
|
String get delete => 'Delete';
|
||||||
|
String get unread => 'Unread';
|
||||||
|
String get read => 'Read';
|
||||||
|
String get share => 'Share';
|
||||||
|
String get archive => 'Archive';
|
||||||
|
String get deletingBookmark => 'Deleting bookmark...';
|
||||||
|
String get bookmarkDeleted => 'Bookmark deleted successfully';
|
||||||
|
String get bookmarkNotDeleted => 'The bookmark couldn\'t be deleted due to an error.';
|
||||||
|
String get deleteBookmark => 'Delete bookmark';
|
||||||
|
String get followingBookmarkDeleted => 'The following bookmark will be deleted:';
|
||||||
|
}
|
||||||
|
|
||||||
// Path: tags.createTag
|
// Path: tags.createTag
|
||||||
class _StringsTagsCreateTagEn {
|
class _StringsTagsCreateTagEn {
|
||||||
_StringsTagsCreateTagEn._(this._root);
|
_StringsTagsCreateTagEn._(this._root);
|
||||||
@@ -514,6 +535,7 @@ class _StringsBookmarksEs implements _StringsBookmarksEn {
|
|||||||
@override late final _StringsBookmarksDatesEs dates = _StringsBookmarksDatesEs._(_root);
|
@override late final _StringsBookmarksDatesEs dates = _StringsBookmarksDatesEs._(_root);
|
||||||
@override late final _StringsBookmarksAddBookmarkEs addBookmark = _StringsBookmarksAddBookmarkEs._(_root);
|
@override late final _StringsBookmarksAddBookmarkEs addBookmark = _StringsBookmarksAddBookmarkEs._(_root);
|
||||||
@override late final _StringsBookmarksSearchEs search = _StringsBookmarksSearchEs._(_root);
|
@override late final _StringsBookmarksSearchEs search = _StringsBookmarksSearchEs._(_root);
|
||||||
|
@override late final _StringsBookmarksBookmarkOptionsEs bookmarkOptions = _StringsBookmarksBookmarkOptionsEs._(_root);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path: tags
|
// Path: tags
|
||||||
@@ -641,6 +663,26 @@ class _StringsBookmarksSearchEs implements _StringsBookmarksSearchEn {
|
|||||||
@override String get inputtedSearchTermNoResults => 'El término de búsqueda introducido no tiene resultados';
|
@override String get inputtedSearchTermNoResults => 'El término de búsqueda introducido no tiene resultados';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path: bookmarks.bookmarkOptions
|
||||||
|
class _StringsBookmarksBookmarkOptionsEs implements _StringsBookmarksBookmarkOptionsEn {
|
||||||
|
_StringsBookmarksBookmarkOptionsEs._(this._root);
|
||||||
|
|
||||||
|
@override final _StringsEs _root; // ignore: unused_field
|
||||||
|
|
||||||
|
// Translations
|
||||||
|
@override String get edit => 'Editar';
|
||||||
|
@override String get delete => 'Eliminar';
|
||||||
|
@override String get unread => 'No leído';
|
||||||
|
@override String get read => 'Leído';
|
||||||
|
@override String get share => 'Compartir';
|
||||||
|
@override String get archive => 'Archivar';
|
||||||
|
@override String get deletingBookmark => 'Eliminando marcador...';
|
||||||
|
@override String get bookmarkDeleted => 'Marcador eliminado correctamente';
|
||||||
|
@override String get bookmarkNotDeleted => 'El marcador no se ha podido eliminar debido a un error.';
|
||||||
|
@override String get deleteBookmark => 'Eliminar marcador';
|
||||||
|
@override String get followingBookmarkDeleted => 'El siguiente marcador será eliminado:';
|
||||||
|
}
|
||||||
|
|
||||||
// Path: tags.createTag
|
// Path: tags.createTag
|
||||||
class _StringsTagsCreateTagEs implements _StringsTagsCreateTagEn {
|
class _StringsTagsCreateTagEs implements _StringsTagsCreateTagEn {
|
||||||
_StringsTagsCreateTagEs._(this._root);
|
_StringsTagsCreateTagEs._(this._root);
|
||||||
@@ -783,6 +825,17 @@ extension on Translations {
|
|||||||
case 'bookmarks.search.inputSearchTerm': return 'Input a search term';
|
case 'bookmarks.search.inputSearchTerm': return 'Input a search term';
|
||||||
case 'bookmarks.search.cannotSearchError': return 'Cannot search content due to an error';
|
case 'bookmarks.search.cannotSearchError': return 'Cannot search content due to an error';
|
||||||
case 'bookmarks.search.inputtedSearchTermNoResults': return 'The inputted search term doesn\'t have any results';
|
case 'bookmarks.search.inputtedSearchTermNoResults': return 'The inputted search term doesn\'t have any results';
|
||||||
|
case 'bookmarks.bookmarkOptions.edit': return 'Edit';
|
||||||
|
case 'bookmarks.bookmarkOptions.delete': return 'Delete';
|
||||||
|
case 'bookmarks.bookmarkOptions.unread': return 'Unread';
|
||||||
|
case 'bookmarks.bookmarkOptions.read': return 'Read';
|
||||||
|
case 'bookmarks.bookmarkOptions.share': return 'Share';
|
||||||
|
case 'bookmarks.bookmarkOptions.archive': return 'Archive';
|
||||||
|
case 'bookmarks.bookmarkOptions.deletingBookmark': return 'Deleting bookmark...';
|
||||||
|
case 'bookmarks.bookmarkOptions.bookmarkDeleted': return 'Bookmark deleted successfully';
|
||||||
|
case 'bookmarks.bookmarkOptions.bookmarkNotDeleted': return 'The bookmark couldn\'t be deleted due to an error.';
|
||||||
|
case 'bookmarks.bookmarkOptions.deleteBookmark': return 'Delete bookmark';
|
||||||
|
case 'bookmarks.bookmarkOptions.followingBookmarkDeleted': return 'The following bookmark will be deleted:';
|
||||||
case 'tags.tags': return 'Tags';
|
case 'tags.tags': return 'Tags';
|
||||||
case 'tags.created': return ({required Object created}) => 'Created: ${created}';
|
case 'tags.created': return ({required Object created}) => 'Created: ${created}';
|
||||||
case 'tags.createTag.createTag': return 'Create tag';
|
case 'tags.createTag.createTag': return 'Create tag';
|
||||||
@@ -908,6 +961,17 @@ extension on _StringsEs {
|
|||||||
case 'bookmarks.search.inputSearchTerm': return 'Introduce un término de búsqueda';
|
case 'bookmarks.search.inputSearchTerm': return 'Introduce un término de búsqueda';
|
||||||
case 'bookmarks.search.cannotSearchError': return 'No se puede buscar el contenido por un error';
|
case 'bookmarks.search.cannotSearchError': return 'No se puede buscar el contenido por un error';
|
||||||
case 'bookmarks.search.inputtedSearchTermNoResults': return 'El término de búsqueda introducido no tiene resultados';
|
case 'bookmarks.search.inputtedSearchTermNoResults': return 'El término de búsqueda introducido no tiene resultados';
|
||||||
|
case 'bookmarks.bookmarkOptions.edit': return 'Editar';
|
||||||
|
case 'bookmarks.bookmarkOptions.delete': return 'Eliminar';
|
||||||
|
case 'bookmarks.bookmarkOptions.unread': return 'No leído';
|
||||||
|
case 'bookmarks.bookmarkOptions.read': return 'Leído';
|
||||||
|
case 'bookmarks.bookmarkOptions.share': return 'Compartir';
|
||||||
|
case 'bookmarks.bookmarkOptions.archive': return 'Archivar';
|
||||||
|
case 'bookmarks.bookmarkOptions.deletingBookmark': return 'Eliminando marcador...';
|
||||||
|
case 'bookmarks.bookmarkOptions.bookmarkDeleted': return 'Marcador eliminado correctamente';
|
||||||
|
case 'bookmarks.bookmarkOptions.bookmarkNotDeleted': return 'El marcador no se ha podido eliminar debido a un error.';
|
||||||
|
case 'bookmarks.bookmarkOptions.deleteBookmark': return 'Eliminar marcador';
|
||||||
|
case 'bookmarks.bookmarkOptions.followingBookmarkDeleted': return 'El siguiente marcador será eliminado:';
|
||||||
case 'tags.tags': return 'Etiquetas';
|
case 'tags.tags': return 'Etiquetas';
|
||||||
case 'tags.created': return ({required Object created}) => 'Creado: ${created}';
|
case 'tags.created': return ({required Object created}) => 'Creado: ${created}';
|
||||||
case 'tags.createTag.createTag': return 'Crear etiqueta';
|
case 'tags.createTag.createTag': return 'Crear etiqueta';
|
||||||
|
|||||||
@@ -76,6 +76,19 @@
|
|||||||
"inputSearchTerm": "Input a search term",
|
"inputSearchTerm": "Input a search term",
|
||||||
"cannotSearchError": "Cannot search content due to an error",
|
"cannotSearchError": "Cannot search content due to an error",
|
||||||
"inputtedSearchTermNoResults": "The inputted search term doesn't have any results"
|
"inputtedSearchTermNoResults": "The inputted search term doesn't have any results"
|
||||||
|
},
|
||||||
|
"bookmarkOptions": {
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"unread": "Unread",
|
||||||
|
"read": "Read",
|
||||||
|
"share": "Share",
|
||||||
|
"archive": "Archive",
|
||||||
|
"deletingBookmark": "Deleting bookmark...",
|
||||||
|
"bookmarkDeleted": "Bookmark deleted successfully",
|
||||||
|
"bookmarkNotDeleted": "The bookmark couldn't be deleted due to an error.",
|
||||||
|
"deleteBookmark": "Delete bookmark",
|
||||||
|
"followingBookmarkDeleted": "The following bookmark will be deleted:"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tags": {
|
"tags": {
|
||||||
|
|||||||
@@ -76,6 +76,19 @@
|
|||||||
"inputSearchTerm": "Introduce un término de búsqueda",
|
"inputSearchTerm": "Introduce un término de búsqueda",
|
||||||
"cannotSearchError": "No se puede buscar el contenido por un error",
|
"cannotSearchError": "No se puede buscar el contenido por un error",
|
||||||
"inputtedSearchTermNoResults": "El término de búsqueda introducido no tiene resultados"
|
"inputtedSearchTermNoResults": "El término de búsqueda introducido no tiene resultados"
|
||||||
|
},
|
||||||
|
"bookmarkOptions": {
|
||||||
|
"edit": "Editar",
|
||||||
|
"delete": "Eliminar",
|
||||||
|
"unread": "No leído",
|
||||||
|
"read": "Leído",
|
||||||
|
"share": "Compartir",
|
||||||
|
"archive": "Archivar",
|
||||||
|
"deletingBookmark": "Eliminando marcador...",
|
||||||
|
"bookmarkDeleted": "Marcador eliminado correctamente",
|
||||||
|
"bookmarkNotDeleted": "El marcador no se ha podido eliminar debido a un error.",
|
||||||
|
"deleteBookmark": "Eliminar marcador",
|
||||||
|
"followingBookmarkDeleted": "El siguiente marcador será eliminado:"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tags": {
|
"tags": {
|
||||||
|
|||||||
@@ -1,8 +1,13 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||||||
|
|
||||||
import 'package:linkdy/screens/bookmarks/provider/favicon_loader.provider.dart';
|
import 'package:linkdy/screens/bookmarks/provider/favicon_loader.provider.dart';
|
||||||
import 'package:linkdy/screens/bookmarks/model/bookmarks.model.dart';
|
import 'package:linkdy/screens/bookmarks/model/bookmarks.model.dart';
|
||||||
|
|
||||||
|
import 'package:linkdy/utils/process_modal.dart';
|
||||||
|
import 'package:linkdy/utils/snackbar.dart';
|
||||||
|
import 'package:linkdy/i18n/strings.g.dart';
|
||||||
|
import 'package:linkdy/models/data/bookmarks.dart';
|
||||||
import 'package:linkdy/providers/api_client.provider.dart';
|
import 'package:linkdy/providers/api_client.provider.dart';
|
||||||
import 'package:linkdy/constants/enums.dart';
|
import 'package:linkdy/constants/enums.dart';
|
||||||
|
|
||||||
@@ -80,4 +85,20 @@ class Bookmarks extends _$Bookmarks {
|
|||||||
Future<void> refresh() async {
|
Future<void> refresh() async {
|
||||||
await ref.read(bookmarksRequestProvider(state.limit).future);
|
await ref.read(bookmarksRequestProvider(state.limit).future);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void deleteBookmark(Bookmark bookmark) async {
|
||||||
|
final processModal = ProcessModal();
|
||||||
|
processModal.open(t.bookmarks.bookmarkOptions.deletingBookmark);
|
||||||
|
|
||||||
|
final result = await ref.read(apiClientProvider)!.postDeleteBookmark(bookmark.id!);
|
||||||
|
|
||||||
|
processModal.close();
|
||||||
|
if (result.successful == true) {
|
||||||
|
state.bookmarks = state.bookmarks.where((b) => b.id != bookmark.id).toList();
|
||||||
|
ref.notifyListeners();
|
||||||
|
showSnacbkar(label: t.bookmarks.bookmarkOptions.bookmarkDeleted, color: Colors.green);
|
||||||
|
} else {
|
||||||
|
showSnacbkar(label: t.bookmarks.bookmarkOptions.bookmarkNotDeleted, color: Colors.red);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
import 'package:flutter_slidable/flutter_slidable.dart';
|
||||||
import 'package:skeletonizer/skeletonizer.dart';
|
import 'package:skeletonizer/skeletonizer.dart';
|
||||||
import 'package:flutter_svg/flutter_svg.dart';
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
|
||||||
|
import 'package:linkdy/screens/bookmarks/ui/delete_bookmark_modal.dart';
|
||||||
import 'package:linkdy/screens/bookmarks/provider/favicon_loader.provider.dart';
|
import 'package:linkdy/screens/bookmarks/provider/favicon_loader.provider.dart';
|
||||||
|
|
||||||
|
import 'package:linkdy/i18n/strings.g.dart';
|
||||||
import 'package:linkdy/models/data/bookmarks.dart';
|
import 'package:linkdy/models/data/bookmarks.dart';
|
||||||
import 'package:linkdy/providers/app_status.provider.dart';
|
import 'package:linkdy/providers/app_status.provider.dart';
|
||||||
import 'package:linkdy/providers/router.provider.dart';
|
import 'package:linkdy/providers/router.provider.dart';
|
||||||
@@ -32,144 +35,200 @@ class BookmarkItem extends ConsumerWidget {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return InkWell(
|
void openDeleteBookmarkModal(BuildContext ctx) {
|
||||||
onTap: ref.watch(appStatusProvider).useInAppBrowser == true
|
showDialog(
|
||||||
? () => ref.watch(routerProvider).push(RoutesPaths.webview, extra: bookmark)
|
context: context,
|
||||||
: () => openUrl(bookmark.url!),
|
builder: (context) => DeleteBookmarkModal(bookmark: bookmark),
|
||||||
child: Padding(
|
);
|
||||||
padding: const EdgeInsets.all(16),
|
}
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
return Slidable(
|
||||||
children: [
|
startActionPane: ActionPane(
|
||||||
Row(
|
motion: const DrawerMotion(),
|
||||||
children: [
|
extentRatio: 0.75,
|
||||||
if (ref.watch(appStatusProvider).showFavicon == true)
|
children: [
|
||||||
Padding(
|
SlidableAction(
|
||||||
padding: const EdgeInsets.only(right: 8),
|
onPressed: (ctx) => {},
|
||||||
child: ref.watch(faviconStoreProvider).loadingFavicons == true
|
backgroundColor: Colors.blue,
|
||||||
? ClipRRect(
|
label: t.bookmarks.bookmarkOptions.unread,
|
||||||
borderRadius: BorderRadius.circular(4),
|
icon: Icons.mark_as_unread_rounded,
|
||||||
child: Skeletonizer(
|
padding: const EdgeInsets.all(4),
|
||||||
enabled: true,
|
),
|
||||||
ignoreContainers: true,
|
SlidableAction(
|
||||||
child: Container(
|
onPressed: (ctx) => {},
|
||||||
width: 16,
|
backgroundColor: Colors.grey,
|
||||||
height: 16,
|
label: t.bookmarks.bookmarkOptions.archive,
|
||||||
color: Colors.black,
|
icon: Icons.archive_rounded,
|
||||||
),
|
padding: const EdgeInsets.all(4),
|
||||||
),
|
),
|
||||||
)
|
SlidableAction(
|
||||||
: Builder(
|
onPressed: (ctx) => {},
|
||||||
builder: (context) {
|
backgroundColor: Colors.orange,
|
||||||
final faviconItem = ref
|
label: t.bookmarks.bookmarkOptions.share,
|
||||||
.watch(faviconStoreProvider)
|
icon: Icons.share_rounded,
|
||||||
.favicons
|
padding: const EdgeInsets.all(4),
|
||||||
.where((f) => f.url == bookmark.url!)
|
),
|
||||||
.toList();
|
],
|
||||||
if (faviconItem.isEmpty) return const SizedBox();
|
),
|
||||||
if (faviconItem[0].isSvg == true) {
|
endActionPane: ActionPane(
|
||||||
return SvgPicture.network(
|
motion: const DrawerMotion(),
|
||||||
faviconItem[0].favicon,
|
extentRatio: 0.5,
|
||||||
|
children: [
|
||||||
|
SlidableAction(
|
||||||
|
onPressed: (ctx) => {},
|
||||||
|
backgroundColor: Colors.green,
|
||||||
|
label: t.bookmarks.bookmarkOptions.edit,
|
||||||
|
icon: Icons.edit_rounded,
|
||||||
|
padding: const EdgeInsets.all(4),
|
||||||
|
),
|
||||||
|
SlidableAction(
|
||||||
|
onPressed: openDeleteBookmarkModal,
|
||||||
|
backgroundColor: Colors.red,
|
||||||
|
label: t.bookmarks.bookmarkOptions.delete,
|
||||||
|
icon: Icons.delete_rounded,
|
||||||
|
padding: const EdgeInsets.all(4),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
child: InkWell(
|
||||||
|
onTap: ref.watch(appStatusProvider).useInAppBrowser == true
|
||||||
|
? () => ref.watch(routerProvider).push(RoutesPaths.webview, extra: bookmark)
|
||||||
|
: () => openUrl(bookmark.url!),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
if (ref.watch(appStatusProvider).showFavicon == true)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(right: 8),
|
||||||
|
child: ref.watch(faviconStoreProvider).loadingFavicons == true
|
||||||
|
? ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(4),
|
||||||
|
child: Skeletonizer(
|
||||||
|
enabled: true,
|
||||||
|
ignoreContainers: true,
|
||||||
|
child: Container(
|
||||||
width: 16,
|
width: 16,
|
||||||
height: 16,
|
height: 16,
|
||||||
placeholderBuilder: (context) => ClipRRect(
|
color: Colors.black,
|
||||||
borderRadius: BorderRadius.circular(4),
|
),
|
||||||
child: Skeletonizer(
|
),
|
||||||
enabled: true,
|
)
|
||||||
ignoreContainers: true,
|
: Builder(
|
||||||
child: Container(
|
builder: (context) {
|
||||||
width: 16,
|
final faviconItem = ref
|
||||||
height: 16,
|
.watch(faviconStoreProvider)
|
||||||
color: Colors.black,
|
.favicons
|
||||||
|
.where((f) => f.url == bookmark.url!)
|
||||||
|
.toList();
|
||||||
|
if (faviconItem.isEmpty) return const SizedBox();
|
||||||
|
if (faviconItem[0].isSvg == true) {
|
||||||
|
return SvgPicture.network(
|
||||||
|
faviconItem[0].favicon,
|
||||||
|
width: 16,
|
||||||
|
height: 16,
|
||||||
|
placeholderBuilder: (context) => ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(4),
|
||||||
|
child: Skeletonizer(
|
||||||
|
enabled: true,
|
||||||
|
ignoreContainers: true,
|
||||||
|
child: Container(
|
||||||
|
width: 16,
|
||||||
|
height: 16,
|
||||||
|
color: Colors.black,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
);
|
} else {
|
||||||
} else {
|
return Image.network(
|
||||||
return Image.network(
|
faviconItem[0].favicon,
|
||||||
faviconItem[0].favicon,
|
width: 16,
|
||||||
width: 16,
|
height: 16,
|
||||||
height: 16,
|
loadingBuilder: (context, child, loadingProgress) {
|
||||||
loadingBuilder: (context, child, loadingProgress) {
|
if (loadingProgress != null) {
|
||||||
if (loadingProgress != null) {
|
return ClipRRect(
|
||||||
return ClipRRect(
|
borderRadius: BorderRadius.circular(4),
|
||||||
borderRadius: BorderRadius.circular(4),
|
child: Skeletonizer(
|
||||||
child: Skeletonizer(
|
enabled: true,
|
||||||
enabled: true,
|
ignoreContainers: true,
|
||||||
ignoreContainers: true,
|
child: Container(
|
||||||
child: Container(
|
width: 16,
|
||||||
width: 16,
|
height: 16,
|
||||||
height: 16,
|
color: Colors.black,
|
||||||
color: Colors.black,
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
);
|
}
|
||||||
}
|
return child;
|
||||||
return child;
|
},
|
||||||
},
|
);
|
||||||
);
|
}
|
||||||
}
|
},
|
||||||
},
|
),
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Text(
|
|
||||||
validateStrings(bookmark.title, bookmark.websiteTitle),
|
|
||||||
maxLines: 1,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
textAlign: TextAlign.left,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 16,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
color: Theme.of(context).colorScheme.onSurface,
|
|
||||||
),
|
),
|
||||||
),
|
Expanded(
|
||||||
),
|
child: Text(
|
||||||
],
|
validateStrings(bookmark.title, bookmark.websiteTitle),
|
||||||
),
|
maxLines: 1,
|
||||||
const SizedBox(height: 4),
|
overflow: TextOverflow.ellipsis,
|
||||||
Text(
|
textAlign: TextAlign.left,
|
||||||
validateStrings(bookmark.description, bookmark.websiteDescription),
|
style: TextStyle(
|
||||||
maxLines: 3,
|
fontSize: 16,
|
||||||
overflow: TextOverflow.ellipsis,
|
fontWeight: FontWeight.w500,
|
||||||
textAlign: TextAlign.left,
|
color: Theme.of(context).colorScheme.onSurface,
|
||||||
style: TextStyle(
|
),
|
||||||
fontSize: 14,
|
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 4),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Text(
|
|
||||||
bookmark.tagNames?.map((tag) => "#$tag").join(" ") ?? '',
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontSize: 12,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
if (bookmark.dateModified != null) ...[
|
|
||||||
if (bookmark.tagNames?.isNotEmpty == true)
|
|
||||||
Container(
|
|
||||||
width: 1,
|
|
||||||
height: 12,
|
|
||||||
margin: const EdgeInsets.symmetric(horizontal: 8),
|
|
||||||
color: Theme.of(context).colorScheme.tertiary.withOpacity(0.3),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
dateToString(bookmark.dateModified!),
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 12,
|
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
),
|
||||||
),
|
const SizedBox(height: 4),
|
||||||
],
|
Text(
|
||||||
|
validateStrings(bookmark.description, bookmark.websiteDescription),
|
||||||
|
maxLines: 3,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
textAlign: TextAlign.left,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 14,
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
bookmark.tagNames?.map((tag) => "#$tag").join(" ") ?? '',
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 12,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (bookmark.dateModified != null) ...[
|
||||||
|
if (bookmark.tagNames?.isNotEmpty == true)
|
||||||
|
Container(
|
||||||
|
width: 1,
|
||||||
|
height: 12,
|
||||||
|
margin: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
|
color: Theme.of(context).colorScheme.tertiary.withOpacity(0.3),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
dateToString(bookmark.dateModified!),
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 12,
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
69
lib/screens/bookmarks/ui/delete_bookmark_modal.dart
Normal file
69
lib/screens/bookmarks/ui/delete_bookmark_modal.dart
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
|
||||||
|
import 'package:linkdy/screens/bookmarks/provider/bookmarks.provider.dart';
|
||||||
|
|
||||||
|
import 'package:linkdy/i18n/strings.g.dart';
|
||||||
|
import 'package:linkdy/models/data/bookmarks.dart';
|
||||||
|
|
||||||
|
class DeleteBookmarkModal extends ConsumerWidget {
|
||||||
|
final Bookmark bookmark;
|
||||||
|
|
||||||
|
const DeleteBookmarkModal({
|
||||||
|
Key? key,
|
||||||
|
required this.bookmark,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: Column(
|
||||||
|
children: [
|
||||||
|
Icon(
|
||||||
|
Icons.delete_rounded,
|
||||||
|
size: 24,
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
Text(t.bookmarks.bookmarkOptions.deleteBookmark),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
content: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Text(t.bookmarks.bookmarkOptions.followingBookmarkDeleted),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Center(
|
||||||
|
child: Text(
|
||||||
|
bookmark.url!,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: TextStyle(
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
actions: [
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.pop(context),
|
||||||
|
child: Text(t.generic.cancel),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
ref.read(bookmarksProvider.notifier).deleteBookmark(bookmark);
|
||||||
|
},
|
||||||
|
child: Text(t.generic.confirm),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -134,4 +134,14 @@ class ApiClientService {
|
|||||||
return const ApiResponse(successful: false);
|
return const ApiResponse(successful: false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<ApiResponse<bool>> postDeleteBookmark(int bookmarkId) async {
|
||||||
|
try {
|
||||||
|
await dioInstance.delete("/bookmarks/$bookmarkId/");
|
||||||
|
return const ApiResponse(successful: true);
|
||||||
|
} catch (e, stackTrace) {
|
||||||
|
Sentry.captureException(e, stackTrace: stackTrace);
|
||||||
|
return const ApiResponse(successful: false);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -483,6 +483,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.4.10"
|
version: "2.4.10"
|
||||||
|
flutter_slidable:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: flutter_slidable
|
||||||
|
sha256: "19ed4813003a6ff4e9c6bcce37e792a2a358919d7603b2b31ff200229191e44c"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.1"
|
||||||
flutter_svg:
|
flutter_svg:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ dependencies:
|
|||||||
favicon: ^1.1.2
|
favicon: ^1.1.2
|
||||||
skeletonizer: ^1.0.1
|
skeletonizer: ^1.0.1
|
||||||
http: ^1.2.0
|
http: ^1.2.0
|
||||||
|
flutter_slidable: ^3.0.1
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
build_runner: ^2.4.8
|
build_runner: ^2.4.8
|
||||||
|
|||||||
Reference in New Issue
Block a user