How to create a list feed

In this tutorial you will learn how to create an MVUX project that asynchronously requests and displays a collection of items from a service, and enables refreshing the data.

In this tutorial you will learn how to create an MVUX project and basic usage of a list-feed (IListFeed<T>) and the FeedView control.

  • For our data we're going to create a service that asynchronously provides a collection of Person entities upon request.
  • You'll learn how to use a feed to asynchronously request this data from the service.
  • How to display the data on the UI
  • How to use the FeedView control to display the data and automatically respond to the current feed status.
  • Use a refresh button to retrieve the latest weather data on-demand.

Create the Model

  1. Create an MVUX project by following the steps in this tutorial, and name your project PeopleApp.

  2. Add a class named PeopleService.cs, and replace its content with the following:

    namespace PeopleApp;
    
    public partial record Person(string FirstName, string LastName);  
    
    public class PeopleService
    {
        public async ValueTask<IImmutableList<Person>> GetPeopleAsync(CancellationToken ct)
        {
            await Task.Delay(TimeSpan.FromSeconds(2), ct);
    
            var people = new Person[]
            {
                new Person(FirstName: "Master", LastName: "Yoda"),
                new Person(FirstName: "Darth", LastName: "Vader")
            };
    
            return people.ToImmutableList();
        }
    }
    

    We're using a record for the Person type on purpose, as records are designed to be immutable to ensure purity of objects as well as other features.

    The IListFeed is a feed type tailored for dealing with collections.

  3. Create a class named PeopleModel.cs replacing its content with the following:

    using Uno.Extensions.Reactive;
    
    namespace PeopleApp;
    
    public partial record PeopleModel(PeopleService PeopleService)
    {
        public IListFeed<Person> People => ListFeed.Async(PeopleService.GetPeopleAsync);
    }
    
    Note

    Feeds (IFeed<T> and IListFeed<T> for collections) are used as a gateway to asynchronously request data from a service and wrap the result or an error if any in metadata to be displayed in the View in accordingly.
    Learn more about list-feeds here.

    Tip

    Feeds are stateless and are there for when the data from the service is read-only and we're not planning to enable edits to it.
    MVUX also provides stateful feeds. For that purpose States (IState<T> and <IListState<T> for collections) come handy. Refer to this tutorial to learn more about states.

Data-bind the view

PeopleModel exposes a People property which is an IListFeed of type Person.
This is similar in concept to an IObservable<IEnumerable<T>>, where an IListFeed<T> represents a sequence of person-collections obtained from the service.

Tip

An IListFeed<T> is awaitable, meaning that to get the value of the feed you would do the following in the model:

IImmutableList<Person> people = await this.People;

To make it possible to data bind to feeds, the MVUX analyzers read the PeopleModel and generate a proxy type called BindableWeatherModel, which exposes properties that the View can data bind to.

  1. Open the file MainView.xaml and add the following namespace to the XAML:

    xmlns:mvux="using:Uno.Extensions.Reactive.UI"

  2. Replace anything inside the Page contents with the following code:

    <mvux:FeedView Source="{Binding People}">
        <DataTemplate>
            <ListView ItemsSource="{Binding Data}">
    
                <ListView.Header>
                    <Button Content="Refresh" Command="{Binding Refresh}" />
                </ListView.Header>
    
                <ListView.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal" Spacing="5">
                            <TextBlock Text="{Binding FirstName}"/>
                            <TextBlock Text="{Binding LastName}"/>
                        </StackPanel>
                    </DataTemplate>
                </ListView.ItemTemplate>
    
            </ListView>
        </DataTemplate>
    </mvux:FeedView>
    
    Tip

    The FeedView wraps its source (in this case the People feed) in a FeedViewState object, and makes the current value of the feed accessible via its Data property as well as the Refresh property, which is a command that explicitly triggers reloading the data.

  3. Press F7 to navigate to open code-view, and in the constructor, after the line that calls InitializeComponent(), add the following line:

    this.DataContext = new BindablePeopleModel(new PeopleService());
    
  4. Click F5 to run the project

  5. When the app loads you'll notice how the ProgressTemplate shows (if you've included one), till the data is received from the service (2 seconds).

  6. Once the data is the available, the FeedView switches to its ValueTemplate (the first default DataTemplate in our example), and displays the people list.

  7. If you're using Visual-Studio 2022, Right-click the PeopleApp project, and navigate to Dependencies.
    Open up net7.0-windows10...Analyzers.
    Under Uno.Extensions.Reactive.Generator, expand Uno.Extensions.Reactive.FeedGenerator.
    Here you'll be able to inspect all files MVUX has generated for you, and learn more about how MVUX runs behind the scenes.