Subiendo api v2

This commit is contained in:
2025-04-16 10:03:13 -03:00
commit 226933fda7
7537 changed files with 576844 additions and 0 deletions

136
deps/ex_heroicons/lib/heroicons.ex vendored Normal file
View File

@ -0,0 +1,136 @@
defmodule Heroicons do
@moduledoc """
This package adds a convenient way of using [Heroicons](https://heroicons.com) with your Phoenix, Phoenix LiveView and Surface applications.
Heroicons is "A set of 450+ free MIT-licensed high-quality SVG icons for you to use in your web projects."
Created by the amazing folks at [Tailwind Labs](https://github.com/tailwindlabs).
You can find the original docs [here](https://heroicons.com) and repo [here](https://github.com/tailwindlabs/heroicons).
Current Heroicons version: 2.0.11
## Installation
Add `ex_heroicons` to the list of dependencies in `mix.exs`:
def deps do
[
{:ex_heroicons, "~> 2.0.0"}
]
end
Then run `mix deps.get`.
## Usage
#### With Eex or Leex
<%= Heroicons.icon("academic-cap", type: "outline", class: "h-4 w-4") %>
#### With Heex
<Heroicons.LiveView.icon name="academic-cap" type="outline" class="h-4 w-4" />
#### With Surface
<Heroicons.Surface.Icon name="academic-cap" type="outline" class="h-4 w-4" />
## Config
Defaults can be set in the `Heroicons` application configuration.
config :ex_heroicons, type: "outline"
"""
alias __MODULE__.Icon
icon_paths = "node_modules/heroicons/**/*.svg" |> Path.wildcard()
icons =
for icon_path <- icon_paths do
@external_resource Path.relative_to_cwd(icon_path)
Icon.parse!(icon_path)
end
types = icons |> Enum.map(& &1.type) |> Enum.uniq()
names = icons |> Enum.map(& &1.name) |> Enum.uniq()
@types types
@names names
@doc "Returns a list of available icon types"
@spec types() :: [String.t()]
def types(), do: @types
@doc "Returns a list of available icon names"
@spec names() :: [String.t()]
def names(), do: @names
@doc false
def default_type() do
case Application.get_env(:ex_heroicons, :type) do
nil ->
nil
type when is_binary(type) ->
if type in types() do
type
else
raise ArgumentError,
"expected default type to be one of #{inspect(types())}, got: #{inspect(type)}"
end
type ->
raise ArgumentError,
"expected default type to be one of #{inspect(types())}, got: #{inspect(type)}"
end
end
@doc """
Generates an icon.
Options may be passed through to the SVG tag for custom attributes.
## Options
* `:type` - the icon type. Accepted values are #{inspect(types)}. Required if default type is not configured.
* `:class` - the css class added to the SVG tag
## Examples
icon("academic-cap", type: "outline", class: "h-4 w-4")
#=> <svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path d="M12 14l9-5-9-5-9 5 9 5z"/>
<path d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 14l9-5-9-5-9 5 9 5zm0 0l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14zm-4 6v-7.5l4-2.222"/>
</svg>
"""
@spec icon(String.t(), keyword) :: Phoenix.HTML.safe()
def icon(name, opts \\ []) when is_binary(name) and is_list(opts) do
{type, opts} = Keyword.pop(opts, :type, default_type())
unless type do
raise ArgumentError,
"expected type in options, got: #{inspect(opts)}"
end
unless type in types() do
raise ArgumentError,
"expected type to be one of #{inspect(types())}, got: #{inspect(type)}"
end
icon(type, name, opts)
end
for %Icon{type: type, name: name, file: file} <- icons do
defp icon(unquote(type), unquote(name), opts) do
attrs = Icon.opts_to_attrs(opts)
Icon.insert_attrs(unquote(file), attrs)
end
end
defp icon(type, name, _opts) do
raise ArgumentError,
"icon #{inspect(name)} with type #{inspect(type)} does not exist."
end
end

64
deps/ex_heroicons/lib/heroicons/icon.ex vendored Normal file
View File

@ -0,0 +1,64 @@
defmodule Heroicons.Icon do
@moduledoc """
This module defines the data structure and functions for working with icons stored as SVG files.
"""
alias __MODULE__
@doc """
Defines the Heroicons.Icon struct.
Its fields are:
* `:type` - the type of the icon
* `:name` - the name of the icon
* `:file` - the binary of the icon
"""
defstruct [:type, :name, :file]
@type t :: %Icon{type: String.t(), name: String.t(), file: binary}
@doc "Parses a SVG file and returns structured data"
@spec parse!(String.t()) :: Icon.t()
def parse!(filename) do
[type, name] =
filename
|> Path.split()
|> Enum.take(-3)
|> case do
["20", "solid", name] -> ["mini", name]
["24", "solid", name] -> ["solid", name]
["24", "outline", name] -> ["outline", name]
end
name = Path.rootname(name)
file = File.read!(filename)
struct!(__MODULE__, type: type, name: name, file: file)
end
@doc "Converts opts to HTML attributes"
@spec opts_to_attrs(keyword) :: list
def opts_to_attrs(opts) do
for {key, value} <- opts do
key =
key
|> Atom.to_string()
|> String.replace("_", "-")
|> Phoenix.HTML.Safe.to_iodata()
value = Phoenix.HTML.Safe.to_iodata(value)
[?\s, key, ?=, ?", value, ?"]
end
end
@doc "Inserts HTML attributes into an SVG icon"
@spec insert_attrs(binary, keyword) :: Phoenix.HTML.safe()
def insert_attrs("<svg" <> rest, attrs) do
Phoenix.HTML.raw(["<svg", attrs, rest])
end
end

View File

@ -0,0 +1,49 @@
if Code.ensure_loaded?(Phoenix.LiveView) do
defmodule Heroicons.LiveView do
@moduledoc """
A LiveView component for rendering Heroicons.
## Examples
<Heroicons.LiveView.icon name="academic-cap" type="outline" class="h-4 w-4" />
"""
use Phoenix.Component
def icon(assigns) do
opts = assigns[:opts] || []
type_opts = type_to_opts(assigns)
class_opts = class_to_opts(assigns)
opts =
opts
|> Keyword.merge(type_opts)
|> Keyword.merge(class_opts)
assigns = assign(assigns, opts: opts)
~H"""
<%= Heroicons.icon(@name, @opts) %>
"""
end
defp type_to_opts(assigns) do
type = assigns[:type] || Heroicons.default_type()
unless type do
raise ArgumentError,
"type prop is required if default type is not configured."
end
[type: type]
end
defp class_to_opts(assigns) do
if assigns[:class] do
[class: assigns.class]
else
[]
end
end
end
end

View File

@ -0,0 +1,64 @@
if Code.ensure_loaded?(Surface) do
defmodule Heroicons.Surface.Icon do
@moduledoc """
A Surface component for rendering Heroicons.
## Examples
<Heroicons.Surface.Icon name="academic-cap" type="outline" class="h-4 w-4" />
"""
use Surface.Component
@doc "The name of the icon"
prop name, :string, required: true
@doc """
The type of the icon
Required if default type is not configured.
"""
prop type, :string
@doc "The class of the icon"
prop class, :css_class
@doc "All options are forwarded to the underlying SVG tag as HTML attributes"
prop opts, :keyword, default: []
def render(assigns) do
type_opts = type_to_opts(assigns)
class_opts = class_to_opts(assigns)
opts =
assigns.opts
|> Keyword.merge(type_opts)
|> Keyword.merge(class_opts)
assigns = assign(assigns, opts: opts)
~F"""
{Heroicons.icon(@name, @opts)}
"""
end
defp type_to_opts(assigns) do
type = assigns[:type] || Heroicons.default_type()
unless type do
raise ArgumentError,
"type prop is required if default type is not configured."
end
[type: type]
end
defp class_to_opts(assigns) do
if assigns[:class] do
[class: Surface.css_class(assigns.class)]
else
[]
end
end
end
end