Skip to content

Commit 6682453

Browse files
committed
run mix format
1 parent b492a1d commit 6682453

15 files changed

+246
-231
lines changed

config/config.exs

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ config :logger, :console,
1414
format: "$time $metadata[$level] $message\n",
1515
metadata: [:request_id]
1616

17-
1817
# should normally live in config.exs of the device app
1918
config :scenic, :assets,
2019
module: Example.Assets,
2120
alias: [
2221
parrot: "images/parrot.jpg"
2322
]
24-
23+
2524
# Import environment specific config. This must remain at the bottom
2625
# of this file so it overrides the configuration defined above.
27-
import_config "#{Mix.env()}.exs"
26+
import_config "#{Mix.env()}.exs"

config/dev.exs

+13-13
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ use Mix.Config
44
config :logger, :console, format: "[$level] $message\n"
55

66
# Configure the main viewport for the Scenic application
7-
config :example, :viewport, [
8-
name: :main_viewport,
9-
size: {800, 600},
10-
theme: :dark,
11-
default_scene: Example.Scene.Sensor,
12-
drivers: [[
13-
module: Scenic.Driver.Glfw,
14-
name: :glfw_driver,
15-
title: "Super Test Window",
16-
resizeable: false
17-
# on_close: :stop_driver
18-
]]
7+
config :example, :viewport,
8+
name: :main_viewport,
9+
size: {800, 600},
10+
theme: :dark,
11+
default_scene: Example.Scene.Sensor,
12+
drivers: [
13+
[
14+
module: Scenic.Driver.Glfw,
15+
name: :glfw_driver,
16+
title: "Super Test Window",
17+
resizeable: false
18+
# on_close: :stop_driver
1919
]
20-
20+
]

lib/assets.ex

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
defmodule Example.Assets do
22
use Scenic.Assets.Static, otp_app: :example
33
end
4-

lib/components/nav.ex

+22-22
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ defmodule Example.Component.Nav do
1212
# --------------------------------------------------------
1313
def validate(scene) when is_atom(scene), do: {:ok, scene}
1414
def validate({scene, _} = data) when is_atom(scene), do: {:ok, data}
15+
1516
def validate(data) do
1617
{
1718
:error,
@@ -28,20 +29,22 @@ defmodule Example.Component.Nav do
2829
def init(scene, current_scene, opts) do
2930
{width, _} = scene.viewport.size
3031

31-
{background, text} = case opts[:theme] do
32-
:dark ->
33-
{{48, 48, 48}, :white}
32+
{background, text} =
33+
case opts[:theme] do
34+
:dark ->
35+
{{48, 48, 48}, :white}
3436

35-
:light ->
36-
{{220, 220, 220}, :black}
37+
:light ->
38+
{{220, 220, 220}, :black}
3739

38-
_ ->
39-
{{48, 48, 48}, :white}
40-
end
40+
_ ->
41+
{{48, 48, 48}, :white}
42+
end
4143

42-
graph = Graph.build( font_size: 20 )
43-
|> rect( {width, @height}, fill: background )
44-
|> text( "Scene:", translate: {15, 38}, align: :right, fill: text )
44+
graph =
45+
Graph.build(font_size: 20)
46+
|> rect({width, @height}, fill: background)
47+
|> text("Scene:", translate: {15, 38}, align: :right, fill: text)
4548
|> dropdown(
4649
{[
4750
{"Sensor", Example.Scene.Sensor},
@@ -50,7 +53,7 @@ defmodule Example.Component.Nav do
5053
{"Strokes", Example.Scene.Strokes},
5154
{"Components", Example.Scene.Components},
5255
{"Transforms", Example.Scene.Transforms},
53-
{"Sprites", Example.Scene.Sprites},
56+
{"Sprites", Example.Scene.Sprites}
5457
], current_scene},
5558
id: :nav,
5659
translate: {90, 10}
@@ -59,27 +62,26 @@ defmodule Example.Component.Nav do
5962
opts[:theme] == :light,
6063
id: :light_or_dark,
6164
theme: :secondary,
62-
translate: {width - 60, 16},
65+
translate: {width - 60, 16}
6366
)
64-
# |> digital_clock(text_align: :right, translate: {width - 20, 35})
6567

68+
# |> digital_clock(text_align: :right, translate: {width - 20, 35})
6669

6770
push_graph(scene, graph)
6871

69-
{ :ok, scene }
72+
{:ok, scene}
7073
end
7174

72-
7375
# ----------------------------------------------------------------------------
7476
def handle_event({:value_changed, :nav, {scene_mod, param}}, _, scene) do
7577
ViewPort.set_root(scene.viewport, scene_mod, param)
76-
{ :noreply, scene }
78+
{:noreply, scene}
7779
end
7880

7981
# ----------------------------------------------------------------------------
8082
def handle_event({:value_changed, :nav, scene_mod}, _, scene) do
8183
ViewPort.set_root(scene.viewport, scene_mod)
82-
{ :noreply, scene }
84+
{:noreply, scene}
8385
end
8486

8587
# ----------------------------------------------------------------------------
@@ -88,9 +90,7 @@ defmodule Example.Component.Nav do
8890
true -> ViewPort.set_theme(scene.viewport, :light)
8991
false -> ViewPort.set_theme(scene.viewport, :dark)
9092
end
91-
{ :noreply, scene }
92-
end
9393

94+
{:noreply, scene}
95+
end
9496
end
95-
96-

lib/components/notes.ex

+25-21
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ defmodule Example.Component.Notes do
1111
@font_size 20
1212
@indent 30
1313

14-
1514
# --------------------------------------------------------
1615
def validate(notes) when is_bitstring(notes), do: {:ok, notes}
16+
1717
def validate(data) do
1818
{
1919
:error,
@@ -27,27 +27,31 @@ defmodule Example.Component.Notes do
2727
end
2828

2929
# ----------------------------------------------------------------------------
30-
def init(%Scene{viewport: viewport } = scene, notes, opts) do
30+
def init(%Scene{viewport: viewport} = scene, notes, opts) do
3131
{vp_width, vp_height} = viewport.size
3232

33-
{background, text} = case opts[:theme] do
34-
:dark ->
35-
{{48, 48, 48}, :white}
36-
37-
:light ->
38-
{{220, 220, 220}, :black}
39-
40-
_ ->
41-
{{48, 48, 48}, :white}
42-
end
43-
44-
graph = Graph.build(
45-
font_size: @font_size, font: :roboto,
46-
t: {0, vp_height - @height}, theme: opts[:theme]
47-
)
48-
|> rect( {vp_width, @height}, fill: background )
49-
|> text( notes, translate: {@indent, @font_size * 2}, fill: text )
50-
51-
{ :ok, push_graph(scene, graph) }
33+
{background, text} =
34+
case opts[:theme] do
35+
:dark ->
36+
{{48, 48, 48}, :white}
37+
38+
:light ->
39+
{{220, 220, 220}, :black}
40+
41+
_ ->
42+
{{48, 48, 48}, :white}
43+
end
44+
45+
graph =
46+
Graph.build(
47+
font_size: @font_size,
48+
font: :roboto,
49+
t: {0, vp_height - @height},
50+
theme: opts[:theme]
51+
)
52+
|> rect({vp_width, @height}, fill: background)
53+
|> text(notes, translate: {@indent, @font_size * 2}, fill: text)
54+
55+
{:ok, push_graph(scene, graph)}
5256
end
5357
end

lib/example.ex

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ defmodule Example do
1010
# start the application with the default view_port
1111
children = [
1212
{Scenic, [main_viewport]},
13-
Example.Sensors.Supervisor,
13+
Example.Sensors.Supervisor
1414
]
15+
1516
Supervisor.start_link(children, strategy: :one_for_one)
1617
end
1718
end
18-
19-

lib/scenes/components.ex

+17-11
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ defmodule Example.Scene.Components do
2222
"""
2323

2424
@header [
25-
text_spec("Various components", translate: {15, 20} ),
25+
text_spec("Various components", translate: {15, 20}),
2626
text_spec("Event received:", translate: {15, 65}, id: :event_text),
2727
# this button will cause the scene to crash.
2828
button_spec("Crash", id: :btn_crash, theme: :danger, t: {370, 0})
@@ -50,7 +50,7 @@ defmodule Example.Scene.Components do
5050
@slider slider_spec({{0, 100}, 0}, id: :num_slider, t: {0, 100})
5151

5252
@radio_group radio_group_spec(
53-
{[
53+
{[
5454
{"Radio A", :radio_a},
5555
{"Radio B", :radio_b},
5656
{"Radio C", :radio_c}
@@ -63,7 +63,12 @@ defmodule Example.Scene.Components do
6363

6464
@toggle toggle_spec(false, id: :toggle, t: {340, 120})
6565

66-
@text_field text_field_spec("Some text", id: :text, width: 240, hint: "Type here...", t: {200, 160})
66+
@text_field text_field_spec("Some text",
67+
id: :text,
68+
width: 240,
69+
hint: "Type here...",
70+
t: {200, 160}
71+
)
6772

6873
@password_field text_field_spec("",
6974
id: :password,
@@ -116,9 +121,9 @@ defmodule Example.Scene.Components do
116121

117122
defp graph(), do: @graph
118123

119-
def init( scene, _param, _opts ) do
120-
scene = push_graph( scene, graph() )
121-
{ :ok, scene }
124+
def init(scene, _param, _opts) do
125+
scene = push_graph(scene, graph())
126+
{:ok, scene}
122127
end
123128

124129
# force the scene to crash
@@ -127,13 +132,14 @@ defmodule Example.Scene.Components do
127132
# No need to return anything. Already crashed.
128133
end
129134

130-
131135
# display the received message
132136
def handle_event(event, _, scene) do
133-
scene = push_graph(
134-
scene,
135-
Graph.modify( graph(), :event_text, &text(&1, @event_str <> inspect(event)) )
136-
)
137+
scene =
138+
push_graph(
139+
scene,
140+
Graph.modify(graph(), :event_text, &text(&1, @event_str <> inspect(event)))
141+
)
142+
137143
{:noreply, scene}
138144
end
139145
end

0 commit comments

Comments
 (0)