Giter Site home page Giter Site logo

Optional type hints about nestru HOT 2 CLOSED

cschmatzler avatar cschmatzler commented on June 12, 2024
Optional type hints

from nestru.

Comments (2)

IvanRublev avatar IvanRublev commented on June 12, 2024

I guess you might want to replace nil with a default empty list to process it without an error message at all. To do so you can adapt Nestru.PreDecoder protocol like the following:

defmodule Kratos.Models.UIContainer do
  @moduledoc false

  defimpl Nestru.PreDecoder do
    def gather_fields_from_map(_value, _context, map) do
      {:ok, Map.update(map, "messages", [], &if(is_nil(&1), do: [], else: &1))}
    end
  end
  
  @derive {Nestru.Decoder, hint: %{nodes: [Kratos.Models.UINode], messages: [Kratos.Models.UIText]}}

  ...
end

Then the decoding of the map with missing messages field or when its value is set to null will return:

{:ok,
 %Kratos.Models.UIContainer{
   ...
   messages: []
 }}

How about that?

from nestru.

cschmatzler avatar cschmatzler commented on June 12, 2024

That works beautifully, sorry for missing it in the first place. Thanks!

from nestru.

Related Issues (4)

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.