Skip to content

MvvmCrud helps your Xamarin.Forms/MAUI app to standardize operations of creating, updating, deletion and display data, from REST API.

License

Notifications You must be signed in to change notification settings

giuseppenovielli/MvvmCrud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MvvmCrud

MvvmCrud helps your Xamarin.Forms/MAUI app with Prism Library to standardize operations of creating, updating, deletion and display data, from REST API.

Preview Stable
Xamarin.Forms_5 NuGet version (MvvmCrud.Forms.Prism) NuGet version (MvvmCrud.Forms.Prism)
MAUI_NET7 NuGet version (MvvmCrud.Maui.Prism) NuGet version (MvvmCrud.Maui.Prism)

Example

mvvmcrud.mp4

How it works

This framework standardize CRUD's operations into ViewModel's file using generic T type, endpoint's requests and fully customizable.

The target is WRITE LESS CODE, STANDARDIZING THE MOST USED UI CRUD OPERATIONS, IMPROVE PRODUCTIVITY SPEED.

Only with these following lines of code your page can:

  • Display list of data
  • Embedded custom message, if endpoint fails
  • Embedded pagination's manager
  • Embedded Perform searchs
  • Embedded deletion cell's content, with automatic detect endpoint and confirm message
  • Embedded update cell's content, with automatic: detect endpoint, open page, save, upload and update list's cell
  • Embedded open detail's page
  • Embedded empty view UI
  • Embedded loadig more view UI

All fully customizable!

namespace MVVMCrud.Example.ViewModels.Post
{
    public class PostPageViewModel : BaseListPaginationAdvancedViewModel
        <PostCellViewModel, BaseModelItemsRoot<PostItem>, PostItem>
    {
        public PostPageViewModel(
            INavigationService navigationService,
            IRequestService requestService) : base(navigationService, requestService)
        {
        }

        public override string SetupEndpoint() => Constants.Constants.METHOD_POST;

        public override async void AddNewItem(PostItem item)
        {
            SetupAddItemMessage();
            await SetupGetItems();
        }

        public override async void UpdateEditItem(NewEditItem<PostItem> newEditItem)
        {
            SetupEditItemMessage();
            await SetupGetItems();
        }

        public override List<PostCellViewModel> PerformSearchSetup(string newText) => ItemsList.Where(x => x.Item.Title.Contains(newText.ToLower())).ToList();

        #region DetailPage
        public override string SetupDetailPageName(PostCellViewModel obj) => nameof(CommentPage);

        public override bool IsDetailPageWithHeader(PostCellViewModel obj) => true;
        #endregion

    }
}

Docs

Feedback or Requests

Use GitHub Issues for bug reports and feature requests.

Use GitHub Discussios for questions or opinions.

Disclaimer

This is at the moment an experiment. Use at your own risk.

Copyright and license

Code released under the MIT license.

Did you like ?

Buy Me A Coffee

About

MvvmCrud helps your Xamarin.Forms/MAUI app to standardize operations of creating, updating, deletion and display data, from REST API.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages