Skip to content

Commit f8155da

Browse files
committed
Update to latest Phoenix 1.7
1 parent 36d2e00 commit f8155da

33 files changed

+963
-13230
lines changed

.formatter.exs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[
2-
import_deps: [:phoenix],
3-
inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}"]
2+
import_deps: [:ecto, :phoenix],
3+
subdirectories: ["priv/*/migrations"],
4+
plugins: [Phoenix.LiveView.HTMLFormatter],
5+
inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"]
46
]

assets/package-lock.json

+45-13,124
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components_guide/content.ex

+96
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,100 @@ defmodule ComponentsGuide.Content do
6565
Cachex.del(@cache_name, id)
6666
end
6767
end
68+
69+
alias ComponentsGuide.Content.Text2
70+
71+
@doc """
72+
Returns the list of texts2.
73+
74+
## Examples
75+
76+
iex> list_texts2()
77+
[%Text2{}, ...]
78+
79+
"""
80+
def list_texts2 do
81+
Repo.all(Text2)
82+
end
83+
84+
@doc """
85+
Gets a single text2.
86+
87+
Raises `Ecto.NoResultsError` if the Text2 does not exist.
88+
89+
## Examples
90+
91+
iex> get_text2!(123)
92+
%Text2{}
93+
94+
iex> get_text2!(456)
95+
** (Ecto.NoResultsError)
96+
97+
"""
98+
def get_text2!(id), do: Repo.get!(Text2, id)
99+
100+
@doc """
101+
Creates a text2.
102+
103+
## Examples
104+
105+
iex> create_text2(%{field: value})
106+
{:ok, %Text2{}}
107+
108+
iex> create_text2(%{field: bad_value})
109+
{:error, %Ecto.Changeset{}}
110+
111+
"""
112+
def create_text2(attrs \\ %{}) do
113+
%Text2{}
114+
|> Text2.changeset(attrs)
115+
|> Repo.insert()
116+
end
117+
118+
@doc """
119+
Updates a text2.
120+
121+
## Examples
122+
123+
iex> update_text2(text2, %{field: new_value})
124+
{:ok, %Text2{}}
125+
126+
iex> update_text2(text2, %{field: bad_value})
127+
{:error, %Ecto.Changeset{}}
128+
129+
"""
130+
def update_text2(%Text2{} = text2, attrs) do
131+
text2
132+
|> Text2.changeset(attrs)
133+
|> Repo.update()
134+
end
135+
136+
@doc """
137+
Deletes a text2.
138+
139+
## Examples
140+
141+
iex> delete_text2(text2)
142+
{:ok, %Text2{}}
143+
144+
iex> delete_text2(text2)
145+
{:error, %Ecto.Changeset{}}
146+
147+
"""
148+
def delete_text2(%Text2{} = text2) do
149+
Repo.delete(text2)
150+
end
151+
152+
@doc """
153+
Returns an `%Ecto.Changeset{}` for tracking text2 changes.
154+
155+
## Examples
156+
157+
iex> change_text2(text2)
158+
%Ecto.Changeset{data: %Text2{}}
159+
160+
"""
161+
def change_text2(%Text2{} = text2, attrs \\ %{}) do
162+
Text2.changeset(text2, attrs)
163+
end
68164
end

lib/components_guide/content/text2.ex

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
defmodule ComponentsGuide.Content.Text2 do
2+
use Ecto.Schema
3+
import Ecto.Changeset
4+
5+
embedded_schema do
6+
field :content, :string
7+
8+
timestamps()
9+
end
10+
11+
@doc false
12+
def changeset(text2, attrs) do
13+
text2
14+
|> cast(attrs, [:content])
15+
|> validate_required([:content])
16+
end
17+
end

lib/components_guide_web.ex

+32-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ defmodule ComponentsGuideWeb do
1717
and import those modules here.
1818
"""
1919

20+
def static_paths, do: ~w(assets css fonts images js favicon.ico robots.txt)
21+
2022
def controller do
2123
quote do
2224
use Phoenix.Controller, namespace: ComponentsGuideWeb
@@ -25,6 +27,30 @@ defmodule ComponentsGuideWeb do
2527
import ComponentsGuideWeb.Gettext
2628
import Phoenix.LiveView.Controller
2729
alias ComponentsGuideWeb.Router.Helpers, as: Routes
30+
31+
unquote(verified_routes())
32+
end
33+
end
34+
35+
def html do
36+
quote do
37+
use Phoenix.Component
38+
39+
# Import convenience functions from controllers
40+
import Phoenix.Controller,
41+
only: [get_csrf_token: 0, view_module: 1, view_template: 1]
42+
43+
# Include general helpers for rendering HTML
44+
unquote(html_helpers())
45+
end
46+
end
47+
48+
def verified_routes do
49+
quote do
50+
use Phoenix.VerifiedRoutes,
51+
endpoint: ComponentsGuideWeb.Endpoint,
52+
router: ComponentsGuideWeb.Router,
53+
statics: ComponentsGuideWeb.static_paths()
2854
end
2955
end
3056

@@ -57,7 +83,7 @@ defmodule ComponentsGuideWeb do
5783
quote do
5884
@opts Keyword.merge(
5985
[
60-
layout: {ComponentsGuideWeb.LayoutView, "live.html"},
86+
layout: {ComponentsGuideWeb.LayoutView, :live},
6187
container: {:div, class: "relative h-screen flex overflow-hidden"}
6288
],
6389
unquote(opts)
@@ -99,12 +125,12 @@ defmodule ComponentsGuideWeb do
99125
use Phoenix.HTML
100126

101127
# Import LiveView helpers (live_render, live_component, live_patch, etc)
102-
import Phoenix.LiveView.Helpers
128+
import Phoenix.Component
103129

104130
# Import basic rendering functionality (render, render_layout, etc)
105-
import Phoenix.View
131+
# import Phoenix.View
106132

107-
import ComponentsGuideWeb.ErrorHelpers
133+
import ComponentsGuideWeb.CoreComponents
108134
import ComponentsGuideWeb.Gettext
109135
alias ComponentsGuideWeb.Router.Helpers, as: Routes
110136

@@ -117,6 +143,8 @@ defmodule ComponentsGuideWeb do
117143
alias ComponentsGuideWeb.FormattingHelpers, as: Format
118144
# alias ComponentsGuideWeb.PrimitiveHelpers, as: Primitives
119145

146+
unquote(verified_routes())
147+
120148
# def dev_inspect(value) do
121149
# content_tag("pre", inspect(value, pretty: true))
122150
# end

0 commit comments

Comments
 (0)