Skip to content

Commit 6914e24

Browse files
committed
Styling home page draft with basic links
1 parent 04c1df0 commit 6914e24

24 files changed

+66
-27
lines changed

.formatter.exs

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

assets/tailwind.config.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,26 @@ module.exports = {
1111
],
1212
theme: {
1313
extend: {
14+
screens: {
15+
sm: '480px',
16+
md: '768px',
17+
lg: '976px',
18+
xl: '1440px',
19+
'4k': '2160px',
20+
},
1421
colors: {
1522
brand: "#FD4F00",
23+
},
24+
backgroundImage: {
25+
'home-page-background': "url('https://cdn.midjourney.com/f1b780e6-5c1c-4f3e-9d4f-fe01f4a63884/grid_0.png')"
1626
}
1727
},
1828
},
1929
plugins: [
2030
require("@tailwindcss/forms"),
21-
plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])),
22-
plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
23-
plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
24-
plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"]))
31+
plugin(({ addVariant }) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])),
32+
plugin(({ addVariant }) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
33+
plugin(({ addVariant }) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
34+
plugin(({ addVariant }) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"]))
2535
]
2636
}

config/prod.exs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import Config
99
# manifest is generated by the `mix phx.digest` task,
1010
# which you should run after static files are built and
1111
# before starting your production server.
12-
config :elixir_newbie, ElixirNewbieWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
12+
config :elixir_newbie, ElixirNewbieWeb.Endpoint,
13+
cache_static_manifest: "priv/static/cache_manifest.json"
1314

1415
# Configures Swoosh API Client
1516
config :swoosh, :api_client, ElixirNewbie.Finch

lib/elixir_newbie_web/components/core_components.ex

+12-12
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ defmodule ElixirNewbieWeb.CoreComponents do
8787
</p>
8888
</header>
8989
<%= render_slot(@inner_block) %>
90-
<div :if={@confirm != [] or @cancel != []} class="ml-6 mb-4 flex items-center gap-5">
90+
<div :if={@confirm != [] or @cancel != []} class="mb-4 ml-6 flex items-center gap-5">
9191
<.button
9292
:for={confirm <- @confirm}
9393
id={"#{@id}-confirm"}
9494
phx-click={@on_confirm}
9595
phx-disable-with
96-
class="py-2 px-3"
96+
class="px-3 py-2"
9797
>
9898
<%= render_slot(confirm) %>
9999
</.button>
@@ -191,7 +191,7 @@ defmodule ElixirNewbieWeb.CoreComponents do
191191
def simple_form(assigns) do
192192
~H"""
193193
<.form :let={f} for={@for} as={@as} {@rest}>
194-
<div class="space-y-8 bg-white mt-10">
194+
<div class="mt-10 space-y-8 bg-white">
195195
<%= render_slot(@inner_block, f) %>
196196
<div :for={action <- @actions} class="mt-2 flex items-center justify-between gap-6">
197197
<%= render_slot(action, f) %>
@@ -303,7 +303,7 @@ defmodule ElixirNewbieWeb.CoreComponents do
303303
<select
304304
id={@id}
305305
name={@name}
306-
class="mt-1 block w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:ring-zinc-500 focus:border-zinc-500 sm:text-sm"
306+
class="mt-1 block w-full rounded-md border border-gray-300 bg-white px-3 py-2 shadow-sm focus:border-zinc-500 focus:outline-none focus:ring-zinc-500 sm:text-sm"
307307
multiple={@multiple}
308308
{@rest}
309309
>
@@ -386,7 +386,7 @@ defmodule ElixirNewbieWeb.CoreComponents do
386386

387387
def error(assigns) do
388388
~H"""
389-
<p class="phx-no-feedback:hidden mt-3 flex gap-3 text-sm leading-6 text-rose-600">
389+
<p class="mt-3 flex gap-3 text-sm leading-6 text-rose-600 phx-no-feedback:hidden">
390390
<Heroicons.exclamation_circle mini class="mt-0.5 h-5 w-5 flex-none fill-rose-500" />
391391
<%= render_slot(@inner_block) %>
392392
</p>
@@ -441,35 +441,35 @@ defmodule ElixirNewbieWeb.CoreComponents do
441441
def table(assigns) do
442442
~H"""
443443
<div id={@id} class="overflow-y-auto px-4 sm:overflow-visible sm:px-0">
444-
<table class="mt-11 w-[40rem] sm:w-full">
444+
<table class="w-[40rem] mt-11 sm:w-full">
445445
<thead class="text-left text-[0.8125rem] leading-6 text-zinc-500">
446446
<tr>
447-
<th :for={col <- @col} class="p-0 pb-4 pr-6 font-normal"><%= col[:label] %></th>
447+
<th :for={col <- @col} class="p-0 pr-6 pb-4 font-normal"><%= col[:label] %></th>
448448
<th class="relative p-0 pb-4"><span class="sr-only"><%= gettext("Actions") %></span></th>
449449
</tr>
450450
</thead>
451451
<tbody class="relative divide-y divide-zinc-100 border-t border-zinc-200 text-sm leading-6 text-zinc-700">
452452
<tr
453453
:for={row <- @rows}
454454
id={"#{@id}-#{Phoenix.Param.to_param(row)}"}
455-
class="relative group hover:bg-zinc-50"
455+
class="group relative hover:bg-zinc-50"
456456
>
457457
<td
458458
:for={{col, i} <- Enum.with_index(@col)}
459459
phx-click={@row_click && @row_click.(row)}
460460
class={["p-0", @row_click && "hover:cursor-pointer"]}
461461
>
462462
<div :if={i == 0}>
463-
<span class="absolute h-full w-4 top-0 -left-4 group-hover:bg-zinc-50 sm:rounded-l-xl" />
464-
<span class="absolute h-full w-4 top-0 -right-4 group-hover:bg-zinc-50 sm:rounded-r-xl" />
463+
<span class="absolute top-0 -left-4 h-full w-4 group-hover:bg-zinc-50 sm:rounded-l-xl" />
464+
<span class="absolute top-0 -right-4 h-full w-4 group-hover:bg-zinc-50 sm:rounded-r-xl" />
465465
</div>
466466
<div class="block py-4 pr-6">
467467
<span class={["relative", i == 0 && "font-semibold text-zinc-900"]}>
468468
<%= render_slot(col, row) %>
469469
</span>
470470
</div>
471471
</td>
472-
<td :if={@action != []} class="p-0 w-14">
472+
<td :if={@action != []} class="w-14 p-0">
473473
<div class="relative whitespace-nowrap py-4 text-right text-sm font-medium">
474474
<span
475475
:for={action <- @action}
@@ -530,7 +530,7 @@ defmodule ElixirNewbieWeb.CoreComponents do
530530
navigate={@navigate}
531531
class="text-sm font-semibold leading-6 text-zinc-900 hover:text-zinc-700"
532532
>
533-
<Heroicons.arrow_left solid class="w-3 h-3 stroke-current inline" />
533+
<Heroicons.arrow_left solid class="inline h-3 w-3 stroke-current" />
534534
<%= render_slot(@inner_block) %>
535535
</.link>
536536
</div>

lib/elixir_newbie_web/components/layouts/app.html.heex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<header class="px-4 sm:px-6 lg:px-8">
1+
<header class="px-4 sm:px-6 lg:px-8 text-white">
22
<div class="flex items-center justify-between border-b border-zinc-100 py-3">
33
<div class="flex items-center gap-4">
44
<.link navigate={~p"/blog"}>Home</.link>
@@ -11,7 +11,7 @@
1111
</div>
1212
</header>
1313
<main class="px-4 py-20 sm:px-6 lg:px-8">
14-
<div class="mx-auto max-w-2xl">
14+
<div class="mx-auto sm:w-full md:w-3/4 lg:w-full xl:w-3/4">
1515
<.flash kind={:info} title="Success!" flash={@flash} />
1616
<.flash kind={:error} title="Error!" flash={@flash} />
1717
<.flash

lib/elixir_newbie_web/components/layouts/root.html.heex

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
1212
</script>
1313
</head>
14-
<body class="bg-white antialiased">
14+
<body class="bg-[url('https://cdn.midjourney.com/f1b780e6-5c1c-4f3e-9d4f-fe01f4a63884/grid_0.png')] bg-cover bg-top antialiased">
1515
<%= @inner_content %>
1616
</body>
1717
</html>

lib/elixir_newbie_web/live/home_live.ex

+20-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,26 @@ defmodule ElixirNewbieWeb.HomeLive do
33

44
def render(assigns) do
55
~H"""
6-
Home
6+
<section class="flex h-fit w-full flex-col gap-12 xl:gap-24 4k:gap-36 lg:flex-row">
7+
<article class="grid h-fit w-full grid-cols-6 grid-rows-6">
8+
<div class="rounded-full row-start-1 row-end-6 col-start-1 aspect-square col-end-6 rounded-full bg-cover bg-[url('/images/wizard_home_page.png')]" />
9+
<.link href="https://twitter.com/BrooklinJMyers" class="rounded-full border-2 border-white bg-[url('/images/twitter.png')] bg-cover row-start-3 col-start-5 relative left-1/2"></.link>
10+
<.link href="https://github.com/BrooklinJazz" class="rounded-full border-2 border-white bg-[url('/images/github.png')] bg-cover relative col-start-5 row-start-4 bg-pink-300"></.link>
11+
<.link href="https://www.linkedin.com/in/brooklinmyers/" class="rounded-full border-2 border-white bg-[url('/images/linkedin.png')] bg-cover row-start-5 col-start-4 relative left-1/2"></.link>
12+
<.link href="https://github.com/DockYard-Academy/beta_curriculum" class="rounded-full border-2 border-white bg-[url('/images/dockyard_magic.png')] bg-cover bg-pink-500 row-start-5 col-start-3 relative left-1/2 top-1/2"></.link>
13+
</article>
14+
<article class="h-100 flex w-full flex-col text-xl lg:text-2xl text-white 4k:text-4xl">
15+
You walk through the woods and find a Wizard.
16+
17+
“Hello, I’m Brooklin” the Wizard says.
18+
“I’m here to teach you Elixir”.
19+
20+
The wizard takes you to a fork in the road, many paths lie before you. What do you do?
21+
<.link class="bg-[url('/images/wavy_books.png')] bg-cover bg-bottom mt-6 xl:mt-10 rounded-3xl border p-6 lg:p-8 4k:p-12 pl-8 text-left" patch={~p"/blog"}>1. Read the Blog</.link>
22+
<.link class="bg-[url('/images/flower_background.png')] bg-cover bg-center mt-4 xl:mt-8 rounded-3xl border p-6 lg:p-8 4k:p-12 pl-8 text-left" patch={~p"/podcast"}>2. Listen to the Podcast</.link>
23+
<.link class="bg-[url('/images/dark_mushrooms.png')] bg-cover bg-center mt-4 xl:mt-8 rounded-3xl border p-6 lg:p-8 4k:p-12 pl-8 text-left" patch={~p"/resources"}>3. Learning Resources</.link>
24+
</article>
25+
</section>
726
"""
827
end
928

mix.exs

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ defmodule ElixirNewbie.MixProject do
5050
{:telemetry_poller, "~> 1.0"},
5151
{:gettext, "~> 0.20"},
5252
{:jason, "~> 1.2"},
53-
{:plug_cowboy, "~> 2.5"}
53+
{:plug_cowboy, "~> 2.5"},
54+
{:tailwind_formatter, "~> 0.3.1", only: :dev, runtime: false}
5455
]
5556
end
5657

mix.lock

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"},
3636
"swoosh": {:hex, :swoosh, "1.9.0", "23b0678abc29158d3881970d2264724ecf960ac12b8657b657a717445ac01a8f", [:mix], [{:cowboy, "~> 1.1 or ~> 2.4", [hex: :cowboy, repo: "hexpm", optional: true]}, {:ex_aws, "~> 2.1", [hex: :ex_aws, repo: "hexpm", optional: true]}, {:finch, "~> 0.6", [hex: :finch, repo: "hexpm", optional: true]}, {:gen_smtp, "~> 0.13 or ~> 1.0", [hex: :gen_smtp, repo: "hexpm", optional: true]}, {:hackney, "~> 1.9", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mail, "~> 0.2", [hex: :mail, repo: "hexpm", optional: true]}, {:mime, "~> 1.1 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_cowboy, ">= 1.0.0", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "548e8f680182064e94354264065275d424eb60bc207fcd1891bcdc3d40845704"},
3737
"tailwind": {:hex, :tailwind, "0.1.9", "25ba09d42f7bfabe170eb67683a76d6ec2061952dc9bd263a52a99ba3d24bd4d", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "9213f87709c458aaec313bb5f2df2b4d2cedc2b630e4ae821bf3c54c47a56d0b"},
38+
"tailwind_formatter": {:hex, :tailwind_formatter, "0.3.1", "ca8cb6508d69c2bb494e23c08d579eb5e447a823c0f6a355790daefb335c44c9", [:mix], [{:phoenix_live_view, ">= 0.17.6", [hex: :phoenix_live_view, repo: "hexpm", optional: true]}], "hexpm", "94d5c8cc1aa0e1650fc1440b579afa87988ef97958773d5df5bbca50f61410c8"},
3839
"telemetry": {:hex, :telemetry, "1.1.0", "a589817034a27eab11144ad24d5c0f9fab1f58173274b1e9bae7074af9cbee51", [:rebar3], [], "hexpm", "b727b2a1f75614774cff2d7565b64d0dfa5bd52ba517f16543e6fc7efcc0df48"},
3940
"telemetry_metrics": {:hex, :telemetry_metrics, "0.6.1", "315d9163a1d4660aedc3fee73f33f1d355dcc76c5c3ab3d59e76e3edf80eef1f", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6"},
4041
"telemetry_poller": {:hex, :telemetry_poller, "1.0.0", "db91bb424e07f2bb6e73926fcafbfcbcb295f0193e0a00e825e589a0a47e8453", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e"},

priv/static/images/book_shelf.png

2 MB
Loading

priv/static/images/dark_mushrooms.png

2.51 MB
Loading

priv/static/images/dockyard_magic.png

1020 KB
Loading
5.68 MB
Loading

priv/static/images/github.png

1.12 MB
Loading

priv/static/images/linkedin.png

836 KB
Loading

priv/static/images/mushrooms.png

1.65 MB
Loading

priv/static/images/twitter.png

983 KB
Loading

priv/static/images/twitter_logo.png

1.21 MB
Loading

priv/static/images/wavy_books.png

2.43 MB
Loading
1.12 MB
Loading
1.24 MB
Loading

test/elixir_newbie_web/controllers/error_html_test.exs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ defmodule ElixirNewbieWeb.ErrorHTMLTest do
99
end
1010

1111
test "renders 500.html" do
12-
assert render_to_string(ElixirNewbieWeb.ErrorHTML, "500", "html", []) == "Internal Server Error"
12+
assert render_to_string(ElixirNewbieWeb.ErrorHTML, "500", "html", []) ==
13+
"Internal Server Error"
1314
end
1415
end
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
defmodule ElixirNewbieWeb.HomeLiveTest do
2-
use ExUnit.Case
3-
doctest ElixirNewbieWeb.HomeLive
4-
alias ElixirNewbieWeb.HomeLive
2+
use ElixirNewbieWeb.ConnCase
3+
doctest ElixirNewbieWeb.HomeLive
54

5+
test "connected mount", %{conn: conn} do
6+
assert {:ok, _view, html} = live(conn, "/")
7+
assert html =~ "Brooklin"
8+
end
69
end

test/support/conn_case.ex

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ defmodule ElixirNewbieWeb.ConnCase do
2828
import Plug.Conn
2929
import Phoenix.ConnTest
3030
import ElixirNewbieWeb.ConnCase
31+
32+
# Import conveniences for testing LiveView
33+
import Phoenix.LiveViewTest
3134
end
3235
end
3336

0 commit comments

Comments
 (0)