Git Product home page Git Product logo

Comments (4)

iamim avatar iamim commented on May 23, 2024 1

I must admit I haven't actually used the library yet. I found it in awesome-source-generators list.
Discriminated unions is something I try to replicate in C# quite often and I found that your library is the closest to how I would do it :) It seems like that it's evolved somehow since then.

I prefer making the base class abstract and the cases sealed as I don't think that an instance of Animal would make sense without actually being either Dog or Cat in my example. If approached through abstract base, StatusCode (in your example) would have to be extended in each case and it makes the whole thing ugly. I do see exhaustive Match as a big benefit of your approach. However, I do believe that switch is important to make the library more approachable and idiomatic.

TL;DR: trade offs :) I can see how your approach works and if you'r ok with it then there's no need in my suggestion.

from dunet.

iamim avatar iamim commented on May 23, 2024 1

I actually didn't know that partial can set abstract. I tested with this in mind and it does work :)
The common property accessor would make case construction more uniform but I guess it's not a big deal. Consider your example:

var one = new HttpResponse<string>.Ok("Hello") { StatusCode = 200 };
var two = new HttpResponse<string>.Ok(200, "Hello");

one.StatusCode;
two.StatusCode; // if all cases have a property named StatusCode of int

Feel free to re-open if you find it a useful upgrade :)

Overall, a great library!

from dunet.

domn1995 avatar domn1995 commented on May 23, 2024

Hey, I really appreciate you taking the time to contribute your idea!

I am a big fan of how typescript treats union types as well.

What do you see as the benefit of supporting this pattern over just declaring a member in the union record itself? For example, I've done something like this at work:

[Union]
public partial record HttpResponse<T>
{
    // A status code is part of all HTTP responses.
    public required int StatusCode { get; init; }

    public partial record Ok(T Content);

    public partial record BadRequest(string Message);

    public partial record ServerError;
}

I'd use it something like this:

using var client = new HttpClient();
var httpResponse = await GetContentAsync(client, "/some-api");

var message = httpResult.Match(
    ok => $"Success ({ok.StatusCode}). Content: '{ok.Content}'",
    badRequest => $"Bad request ({badRequest.StatusCode}). Error message: '{badRequest.Messsage}'";
    serverError => $"Server error ({serverError.StatusCode})."
);

Console.WriteLine(message);

public static async Task GetContentAsync(HttpClient client, string endpoint)
{
    using var response = client.GetAsync<SomeType>(endpoint);
    using var contentJson = await response.Content.ReadAsStringAsync();
    var content = JsonSerializer.Deserialize<SomeType>(content);
    return new HttpResponse.Ok(content) { StatusCode = response.StatusCode };
}

from dunet.

domn1995 avatar domn1995 commented on May 23, 2024

I prefer making the base class abstract and the cases sealed as I don't think that an instance of Animal would make sense without actually being either Dog or Cat in my example. If approached through abstract base, StatusCode (in your example) would have to be extended in each case and it makes the whole thing ugly. I do see exhaustive Match as a big benefit of your approach. However, I do believe that switch is important to make the library more approachable and idiomatic.

The source generator actually makes the union record abstract and its variants sealed behind the scenes for you. :)

TL;DR: trade offs :) I can see how your approach works and if you'r ok with it then there's no need in my suggestion.

Sounds good. Would love to hear your feedback!

from dunet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.