From 7c7b69d77197bff8ad1c55df1f826f1e60011599 Mon Sep 17 00:00:00 2001 From: Craig P Jolicoeur Date: Tue, 28 Feb 2023 10:57:26 -0500 Subject: [PATCH] [test] Add phx1_7 test app Remove old phx1_6 test app and associated patches from this branch since Phx 1.7 will now be required --- bin/test | 9 +- test/support/apps/phx1_6/.formatter.exs | 5 - test/support/apps/phx1_6/assets/css/app.css | 120 ---- .../apps/phx1_6/assets/css/phoenix.css | 101 --- test/support/apps/phx1_6/config/prod.exs | 49 -- test/support/apps/phx1_6/lib/phx1_6/mailer.ex | 3 - test/support/apps/phx1_6/lib/phx1_6_web.ex | 110 --- .../phx1_6_web/controllers/page_controller.ex | 7 - .../apps/phx1_6/lib/phx1_6_web/router.ex | 56 -- .../phx1_6_web/templates/layout/app.html.heex | 5 - .../templates/layout/live.html.heex | 11 - .../templates/layout/root.html.heex | 30 - .../phx1_6_web/templates/page/index.html.heex | 41 -- .../lib/phx1_6_web/views/error_helpers.ex | 47 -- .../phx1_6/lib/phx1_6_web/views/error_view.ex | 16 - .../lib/phx1_6_web/views/layout_view.ex | 7 - .../phx1_6/lib/phx1_6_web/views/page_view.ex | 3 - test/support/apps/phx1_6/mix.lock | 49 -- .../phx1_6/priv/static/images/phoenix.png | Bin 13900 -> 0 bytes .../controllers/page_controller_test.exs | 8 - .../test/phx1_6_web/views/error_view_test.exs | 14 - .../phx1_6_web/views/layout_view_test.exs | 8 - .../test/phx1_6_web/views/page_view_test.exs | 3 - .../apps/phx1_6/test/support/channel_case.ex | 36 - test/support/apps/phx1_6/test/test_helper.exs | 2 - test/support/apps/phx1_7/.formatter.exs | 6 + .../apps/{phx1_6 => phx1_7}/.gitignore | 5 +- .../support/apps/{phx1_6 => phx1_7}/README.md | 5 +- test/support/apps/phx1_7/assets/css/app.css | 5 + .../apps/{phx1_6 => phx1_7}/assets/js/app.js | 8 +- .../apps/phx1_7/assets/tailwind.config.js | 26 + .../assets/vendor/topbar.js | 42 +- test/support/apps/{phx1_6 => phx1_7}/bin/test | 26 +- .../apps/{phx1_6 => phx1_7}/config/config.exs | 34 +- .../apps/{phx1_6 => phx1_7}/config/dev.exs | 25 +- test/support/apps/phx1_7/config/prod.exs | 21 + .../{phx1_6 => phx1_7}/config/runtime.exs | 58 +- .../apps/{phx1_6 => phx1_7}/config/test.exs | 22 +- .../lib/phx1_6.ex => phx1_7/lib/phx1_7.ex} | 4 +- .../lib/phx1_7}/application.ex | 22 +- test/support/apps/phx1_7/lib/phx1_7/mailer.ex | 3 + .../lib/phx1_6 => phx1_7/lib/phx1_7}/repo.ex | 4 +- test/support/apps/phx1_7/lib/phx1_7_web.ex | 113 +++ .../phx1_7_web/components/core_components.ex | 661 ++++++++++++++++++ .../lib/phx1_7_web/components/layouts.ex | 5 + .../components/layouts/app.html.heex | 43 ++ .../components/layouts/root.html.heex | 17 + .../lib/phx1_7_web/controllers/error_html.ex | 19 + .../lib/phx1_7_web/controllers/error_json.ex | 15 + .../phx1_7_web/controllers/page_controller.ex | 9 + .../lib/phx1_7_web/controllers/page_html.ex | 5 + .../controllers/page_html/home.html.heex | 237 +++++++ .../lib/phx1_7_web}/endpoint.ex | 21 +- .../lib/phx1_7_web}/gettext.ex | 6 +- .../apps/phx1_7/lib/phx1_7_web/router.ex | 44 ++ .../apps/phx1_7/lib/phx1_7_web/router.ex.orig | 44 ++ .../lib/phx1_7_web}/telemetry.ex | 35 +- test/support/apps/{phx1_6 => phx1_7}/mix.exs | 30 +- test/support/apps/phx1_7/mix.lock | 59 ++ .../priv/gettext/en/LC_MESSAGES/errors.po | 0 .../priv/gettext/errors.pot | 27 +- .../priv/repo/migrations/.formatter.exs | 0 .../{phx1_6 => phx1_7}/priv/repo/seeds.exs | 2 +- .../priv/static/favicon.ico | Bin .../{phx1_6 => phx1_7}/priv/static/robots.txt | 0 .../controllers/error_html_test.exs | 14 + .../controllers/error_json_test.exs | 12 + .../controllers/page_controller_test.exs | 8 + .../test/support/conn_case.ex | 19 +- .../test/support/data_case.ex | 19 +- test/support/apps/phx1_7/test/test_helper.exs | 2 + test/support/patches/install-route.diff | 12 + test/support/patches/install-route.patch | 12 - test/support/patches/install-torch.diff | 46 ++ test/support/patches/install-torch.patch | 48 -- 75 files changed, 1688 insertions(+), 952 deletions(-) delete mode 100644 test/support/apps/phx1_6/.formatter.exs delete mode 100644 test/support/apps/phx1_6/assets/css/app.css delete mode 100644 test/support/apps/phx1_6/assets/css/phoenix.css delete mode 100644 test/support/apps/phx1_6/config/prod.exs delete mode 100644 test/support/apps/phx1_6/lib/phx1_6/mailer.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/controllers/page_controller.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/router.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/app.html.heex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/live.html.heex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/root.html.heex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/templates/page/index.html.heex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/views/error_helpers.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/views/error_view.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/views/layout_view.ex delete mode 100644 test/support/apps/phx1_6/lib/phx1_6_web/views/page_view.ex delete mode 100644 test/support/apps/phx1_6/mix.lock delete mode 100644 test/support/apps/phx1_6/priv/static/images/phoenix.png delete mode 100644 test/support/apps/phx1_6/test/phx1_6_web/controllers/page_controller_test.exs delete mode 100644 test/support/apps/phx1_6/test/phx1_6_web/views/error_view_test.exs delete mode 100644 test/support/apps/phx1_6/test/phx1_6_web/views/layout_view_test.exs delete mode 100644 test/support/apps/phx1_6/test/phx1_6_web/views/page_view_test.exs delete mode 100644 test/support/apps/phx1_6/test/support/channel_case.ex delete mode 100644 test/support/apps/phx1_6/test/test_helper.exs create mode 100644 test/support/apps/phx1_7/.formatter.exs rename test/support/apps/{phx1_6 => phx1_7}/.gitignore (92%) rename test/support/apps/{phx1_6 => phx1_7}/README.md (83%) create mode 100644 test/support/apps/phx1_7/assets/css/app.css rename test/support/apps/{phx1_6 => phx1_7}/assets/js/app.js (81%) create mode 100644 test/support/apps/phx1_7/assets/tailwind.config.js rename test/support/apps/{phx1_6 => phx1_7}/assets/vendor/topbar.js (83%) rename test/support/apps/{phx1_6 => phx1_7}/bin/test (61%) rename test/support/apps/{phx1_6 => phx1_7}/config/config.exs (67%) rename test/support/apps/{phx1_6 => phx1_7}/config/dev.exs (76%) create mode 100644 test/support/apps/phx1_7/config/prod.exs rename test/support/apps/{phx1_6 => phx1_7}/config/runtime.exs (58%) rename test/support/apps/{phx1_6 => phx1_7}/config/test.exs (54%) rename test/support/apps/{phx1_6/lib/phx1_6.ex => phx1_7/lib/phx1_7.ex} (71%) rename test/support/apps/{phx1_6/lib/phx1_6 => phx1_7/lib/phx1_7}/application.ex (62%) create mode 100644 test/support/apps/phx1_7/lib/phx1_7/mailer.ex rename test/support/apps/{phx1_6/lib/phx1_6 => phx1_7/lib/phx1_7}/repo.ex (55%) create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/components/core_components.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/components/layouts.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/components/layouts/app.html.heex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/components/layouts/root.html.heex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/controllers/error_html.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/controllers/error_json.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/controllers/page_controller.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/controllers/page_html.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/controllers/page_html/home.html.heex rename test/support/apps/{phx1_6/lib/phx1_6_web => phx1_7/lib/phx1_7_web}/endpoint.ex (70%) rename test/support/apps/{phx1_6/lib/phx1_6_web => phx1_7/lib/phx1_7_web}/gettext.ex (86%) create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/router.ex create mode 100644 test/support/apps/phx1_7/lib/phx1_7_web/router.ex.orig rename test/support/apps/{phx1_6/lib/phx1_6_web => phx1_7/lib/phx1_7_web}/telemetry.ex (66%) rename test/support/apps/{phx1_6 => phx1_7}/mix.exs (65%) create mode 100644 test/support/apps/phx1_7/mix.lock rename test/support/apps/{phx1_6 => phx1_7}/priv/gettext/en/LC_MESSAGES/errors.po (100%) rename test/support/apps/{phx1_6 => phx1_7}/priv/gettext/errors.pot (86%) rename test/support/apps/{phx1_6 => phx1_7}/priv/repo/migrations/.formatter.exs (100%) rename test/support/apps/{phx1_6 => phx1_7}/priv/repo/seeds.exs (86%) rename test/support/apps/{phx1_6 => phx1_7}/priv/static/favicon.ico (100%) rename test/support/apps/{phx1_6 => phx1_7}/priv/static/robots.txt (100%) create mode 100644 test/support/apps/phx1_7/test/phx1_7_web/controllers/error_html_test.exs create mode 100644 test/support/apps/phx1_7/test/phx1_7_web/controllers/error_json_test.exs create mode 100644 test/support/apps/phx1_7/test/phx1_7_web/controllers/page_controller_test.exs rename test/support/apps/{phx1_6 => phx1_7}/test/support/conn_case.ex (70%) rename test/support/apps/{phx1_6 => phx1_7}/test/support/data_case.ex (79%) create mode 100644 test/support/apps/phx1_7/test/test_helper.exs create mode 100644 test/support/patches/install-route.diff delete mode 100644 test/support/patches/install-route.patch create mode 100644 test/support/patches/install-torch.diff delete mode 100644 test/support/patches/install-torch.patch diff --git a/bin/test b/bin/test index dab0352e..e76ccefe 100755 --- a/bin/test +++ b/bin/test @@ -60,14 +60,13 @@ echo "[DEBUG] Current Elixir Version: $iexCurrentVersion" otpCurrentVersion="$(erl -eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshell | sed 's/\"//g')" echo "[DEBUG] Current OTP Version: $otpCurrentVersion" - -requiredMinVersion="22" +requiredMinVersion="24" if [ "$(printf '%s\n' "$requiredMinVersion" "$otpCurrentVersion" | sort -Vr | head -n1)" = "$requiredMinVersion" ]; then - echo '[Skipping] OTP 22+ is required for Phoenix 1.6+' + echo '[Skipping] OTP 24+ is required for Phoenix 1.7+' else - cd "$TEST_ROOT/support/apps/phx1_6" && { + cd "$TEST_ROOT/support/apps/phx1_7" && { bin/test || { - echo 'Integration tests on regular Phoenix 1.6 project failed!' + echo 'Integration tests on regular Phoenix 1.7 project failed!' exit 1 } } diff --git a/test/support/apps/phx1_6/.formatter.exs b/test/support/apps/phx1_6/.formatter.exs deleted file mode 100644 index 8a6391c6..00000000 --- a/test/support/apps/phx1_6/.formatter.exs +++ /dev/null @@ -1,5 +0,0 @@ -[ - import_deps: [:ecto, :phoenix], - inputs: ["*.{ex,exs}", "priv/*/seeds.exs", "{config,lib,test}/**/*.{ex,exs}"], - subdirectories: ["priv/*/migrations"] -] diff --git a/test/support/apps/phx1_6/assets/css/app.css b/test/support/apps/phx1_6/assets/css/app.css deleted file mode 100644 index 19c2e51e..00000000 --- a/test/support/apps/phx1_6/assets/css/app.css +++ /dev/null @@ -1,120 +0,0 @@ -/* This file is for your main application CSS */ -@import "./phoenix.css"; - -/* Alerts and form errors used by phx.new */ -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert p { - margin-bottom: 0; -} -.alert:empty { - display: none; -} -.invalid-feedback { - color: #a94442; - display: block; - margin: -1rem 0 2rem; -} - -/* LiveView specific classes for your customization */ -.phx-no-feedback.invalid-feedback, -.phx-no-feedback .invalid-feedback { - display: none; -} - -.phx-click-loading { - opacity: 0.5; - transition: opacity 1s ease-out; -} - -.phx-loading{ - cursor: wait; -} - -.phx-modal { - opacity: 1!important; - position: fixed; - z-index: 1; - left: 0; - top: 0; - width: 100%; - height: 100%; - overflow: auto; - background-color: rgba(0,0,0,0.4); -} - -.phx-modal-content { - background-color: #fefefe; - margin: 15vh auto; - padding: 20px; - border: 1px solid #888; - width: 80%; -} - -.phx-modal-close { - color: #aaa; - float: right; - font-size: 28px; - font-weight: bold; -} - -.phx-modal-close:hover, -.phx-modal-close:focus { - color: black; - text-decoration: none; - cursor: pointer; -} - -.fade-in-scale { - animation: 0.2s ease-in 0s normal forwards 1 fade-in-scale-keys; -} - -.fade-out-scale { - animation: 0.2s ease-out 0s normal forwards 1 fade-out-scale-keys; -} - -.fade-in { - animation: 0.2s ease-out 0s normal forwards 1 fade-in-keys; -} -.fade-out { - animation: 0.2s ease-out 0s normal forwards 1 fade-out-keys; -} - -@keyframes fade-in-scale-keys{ - 0% { scale: 0.95; opacity: 0; } - 100% { scale: 1.0; opacity: 1; } -} - -@keyframes fade-out-scale-keys{ - 0% { scale: 1.0; opacity: 1; } - 100% { scale: 0.95; opacity: 0; } -} - -@keyframes fade-in-keys{ - 0% { opacity: 0; } - 100% { opacity: 1; } -} - -@keyframes fade-out-keys{ - 0% { opacity: 1; } - 100% { opacity: 0; } -} diff --git a/test/support/apps/phx1_6/assets/css/phoenix.css b/test/support/apps/phx1_6/assets/css/phoenix.css deleted file mode 100644 index 0d59050f..00000000 --- a/test/support/apps/phx1_6/assets/css/phoenix.css +++ /dev/null @@ -1,101 +0,0 @@ -/* Includes some default style for the starter application. - * This can be safely deleted to start fresh. - */ - -/* Milligram v1.4.1 https://milligram.github.io - * Copyright (c) 2020 CJ Patoilo Licensed under the MIT license - */ - -*,*:after,*:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#000000;font-family:'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:0.3rem solid #d1d1d1;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote *:last-child{margin-bottom:0}.button,button,input[type='button'],input[type='reset'],input[type='submit']{background-color:#0069d9;border:0.1rem solid #0069d9;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3.0rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type='button']:focus,input[type='button']:hover,input[type='reset']:focus,input[type='reset']:hover,input[type='submit']:focus,input[type='submit']:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type='button'][disabled],input[type='reset'][disabled],input[type='submit'][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type='button'][disabled]:focus,input[type='button'][disabled]:hover,input[type='reset'][disabled]:focus,input[type='reset'][disabled]:hover,input[type='submit'][disabled]:focus,input[type='submit'][disabled]:hover{background-color:#0069d9;border-color:#0069d9}.button.button-outline,button.button-outline,input[type='button'].button-outline,input[type='reset'].button-outline,input[type='submit'].button-outline{background-color:transparent;color:#0069d9}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type='button'].button-outline:focus,input[type='button'].button-outline:hover,input[type='reset'].button-outline:focus,input[type='reset'].button-outline:hover,input[type='submit'].button-outline:focus,input[type='submit'].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type='button'].button-outline[disabled]:focus,input[type='button'].button-outline[disabled]:hover,input[type='reset'].button-outline[disabled]:focus,input[type='reset'].button-outline[disabled]:hover,input[type='submit'].button-outline[disabled]:focus,input[type='submit'].button-outline[disabled]:hover{border-color:inherit;color:#0069d9}.button.button-clear,button.button-clear,input[type='button'].button-clear,input[type='reset'].button-clear,input[type='submit'].button-clear{background-color:transparent;border-color:transparent;color:#0069d9}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type='button'].button-clear:focus,input[type='button'].button-clear:hover,input[type='reset'].button-clear:focus,input[type='reset'].button-clear:hover,input[type='submit'].button-clear:focus,input[type='submit'].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type='button'].button-clear[disabled]:focus,input[type='button'].button-clear[disabled]:hover,input[type='reset'].button-clear[disabled]:focus,input[type='reset'].button-clear[disabled]:hover,input[type='submit'].button-clear[disabled]:focus,input[type='submit'].button-clear[disabled]:hover{color:#0069d9}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:0.3rem solid #0069d9;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:0.1rem solid #f4f5f6;margin:3.0rem 0}input[type='color'],input[type='date'],input[type='datetime'],input[type='datetime-local'],input[type='email'],input[type='month'],input[type='number'],input[type='password'],input[type='search'],input[type='tel'],input[type='text'],input[type='url'],input[type='week'],input:not([type]),textarea,select{-webkit-appearance:none;background-color:transparent;border:0.1rem solid #d1d1d1;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1.0rem .7rem;width:100%}input[type='color']:focus,input[type='date']:focus,input[type='datetime']:focus,input[type='datetime-local']:focus,input[type='email']:focus,input[type='month']:focus,input[type='number']:focus,input[type='password']:focus,input[type='search']:focus,input[type='tel']:focus,input[type='text']:focus,input[type='url']:focus,input[type='week']:focus,input:not([type]):focus,textarea:focus,select:focus{border-color:#0069d9;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3.0rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}select[multiple]{background:none;height:auto}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type='checkbox'],input[type='radio']{display:inline}.label-inline{display:inline-block;font-weight:normal;margin-left:.5rem}.container{margin:0 auto;max-width:112.0rem;padding:0 2.0rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-40{margin-left:40%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-60{margin-left:60%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width: 40rem){.row{flex-direction:row;margin-left:-1.0rem;width:calc(100% + 2.0rem)}.row .column{margin-bottom:inherit;padding:0 1.0rem}}a{color:#0069d9;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3.0rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1.0rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;display:block;overflow-x:auto;text-align:left;width:100%}td,th{border-bottom:0.1rem solid #e1e1e1;padding:1.2rem 1.5rem}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}@media (min-width: 40rem){table{display:table;overflow-x:initial}}b,strong{font-weight:bold}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2.0rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right} - -/* General style */ -h1{font-size: 3.6rem; line-height: 1.25} -h2{font-size: 2.8rem; line-height: 1.3} -h3{font-size: 2.2rem; letter-spacing: -.08rem; line-height: 1.35} -h4{font-size: 1.8rem; letter-spacing: -.05rem; line-height: 1.5} -h5{font-size: 1.6rem; letter-spacing: 0; line-height: 1.4} -h6{font-size: 1.4rem; letter-spacing: 0; line-height: 1.2} -pre{padding: 1em;} - -.container{ - margin: 0 auto; - max-width: 80.0rem; - padding: 0 2.0rem; - position: relative; - width: 100% -} -select { - width: auto; -} - -/* Phoenix promo and logo */ -.phx-hero { - text-align: center; - border-bottom: 1px solid #e3e3e3; - background: #eee; - border-radius: 6px; - padding: 3em 3em 1em; - margin-bottom: 3rem; - font-weight: 200; - font-size: 120%; -} -.phx-hero input { - background: #ffffff; -} -.phx-logo { - min-width: 300px; - margin: 1rem; - display: block; -} -.phx-logo img { - width: auto; - display: block; -} - -/* Headers */ -header { - width: 100%; - background: #fdfdfd; - border-bottom: 1px solid #eaeaea; - margin-bottom: 2rem; -} -header section { - align-items: center; - display: flex; - flex-direction: column; - justify-content: space-between; -} -header section :first-child { - order: 2; -} -header section :last-child { - order: 1; -} -header nav ul, -header nav li { - margin: 0; - padding: 0; - display: block; - text-align: right; - white-space: nowrap; -} -header nav ul { - margin: 1rem; - margin-top: 0; -} -header nav a { - display: block; -} - -@media (min-width: 40.0rem) { /* Small devices (landscape phones, 576px and up) */ - header section { - flex-direction: row; - } - header nav ul { - margin: 1rem; - } - .phx-logo { - flex-basis: 527px; - margin: 2rem 1rem; - } -} diff --git a/test/support/apps/phx1_6/config/prod.exs b/test/support/apps/phx1_6/config/prod.exs deleted file mode 100644 index c1eb7ed4..00000000 --- a/test/support/apps/phx1_6/config/prod.exs +++ /dev/null @@ -1,49 +0,0 @@ -import Config - -# For production, don't forget to configure the url host -# to something meaningful, Phoenix uses this information -# when generating URLs. -# -# Note we also include the path to a cache manifest -# containing the digested version of static files. This -# manifest is generated by the `mix phx.digest` task, -# which you should run after static files are built and -# before starting your production server. -config :phx1_6, Phx16Web.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" - -# Do not print debug messages in production -config :logger, level: :info - -# ## SSL Support -# -# To get SSL working, you will need to add the `https` key -# to the previous section and set your `:url` port to 443: -# -# config :phx1_6, Phx16Web.Endpoint, -# ..., -# url: [host: "example.com", port: 443], -# https: [ -# ..., -# port: 443, -# cipher_suite: :strong, -# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), -# certfile: System.get_env("SOME_APP_SSL_CERT_PATH") -# ] -# -# The `cipher_suite` is set to `:strong` to support only the -# latest and more secure SSL ciphers. This means old browsers -# and clients may not be supported. You can set it to -# `:compatible` for wider support. -# -# `:keyfile` and `:certfile` expect an absolute path to the key -# and cert in disk or a relative path inside priv, for example -# "priv/ssl/server.key". For all supported SSL configuration -# options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1 -# -# We also recommend setting `force_ssl` in your endpoint, ensuring -# no data is ever sent via http, always redirecting to https: -# -# config :phx1_6, Phx16Web.Endpoint, -# force_ssl: [hsts: true] -# -# Check `Plug.SSL` for all available options in `force_ssl`. diff --git a/test/support/apps/phx1_6/lib/phx1_6/mailer.ex b/test/support/apps/phx1_6/lib/phx1_6/mailer.ex deleted file mode 100644 index 6dcc10fc..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6/mailer.ex +++ /dev/null @@ -1,3 +0,0 @@ -defmodule Phx16.Mailer do - use Swoosh.Mailer, otp_app: :phx1_6 -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web.ex b/test/support/apps/phx1_6/lib/phx1_6_web.ex deleted file mode 100644 index 2781433e..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web.ex +++ /dev/null @@ -1,110 +0,0 @@ -defmodule Phx16Web do - @moduledoc """ - The entrypoint for defining your web interface, such - as controllers, views, channels and so on. - - This can be used in your application as: - - use Phx16Web, :controller - use Phx16Web, :view - - The definitions below will be executed for every view, - controller, etc, so keep them short and clean, focused - on imports, uses and aliases. - - Do NOT define functions inside the quoted expressions - below. Instead, define any helper function in modules - and import those modules here. - """ - - def controller do - quote do - use Phoenix.Controller, namespace: Phx16Web - - import Plug.Conn - import Phx16Web.Gettext - alias Phx16Web.Router.Helpers, as: Routes - end - end - - def view do - quote do - use Phoenix.View, - root: "lib/phx1_6_web/templates", - namespace: Phx16Web - - # Import convenience functions from controllers - import Phoenix.Controller, - only: [get_flash: 1, get_flash: 2, view_module: 1, view_template: 1] - - # Include shared imports and aliases for views - unquote(view_helpers()) - end - end - - def live_view do - quote do - use Phoenix.LiveView, - layout: {Phx16Web.LayoutView, "live.html"} - - unquote(view_helpers()) - end - end - - def live_component do - quote do - use Phoenix.LiveComponent - - unquote(view_helpers()) - end - end - - def component do - quote do - use Phoenix.Component - - unquote(view_helpers()) - end - end - - def router do - quote do - use Phoenix.Router - - import Plug.Conn - import Phoenix.Controller - import Phoenix.LiveView.Router - end - end - - def channel do - quote do - use Phoenix.Channel - import Phx16Web.Gettext - end - end - - defp view_helpers do - quote do - # Use all HTML functionality (forms, tags, etc) - use Phoenix.HTML - - # Import LiveView and .heex helpers (live_render, live_patch, <.form>, etc) - import Phoenix.LiveView.Helpers - - # Import basic rendering functionality (render, render_layout, etc) - import Phoenix.View - - import Phx16Web.ErrorHelpers - import Phx16Web.Gettext - alias Phx16Web.Router.Helpers, as: Routes - end - end - - @doc """ - When used, dispatch to the appropriate controller/view/etc. - """ - defmacro __using__(which) when is_atom(which) do - apply(__MODULE__, which, []) - end -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/controllers/page_controller.ex b/test/support/apps/phx1_6/lib/phx1_6_web/controllers/page_controller.ex deleted file mode 100644 index c17de51e..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/controllers/page_controller.ex +++ /dev/null @@ -1,7 +0,0 @@ -defmodule Phx16Web.PageController do - use Phx16Web, :controller - - def index(conn, _params) do - render(conn, "index.html") - end -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/router.ex b/test/support/apps/phx1_6/lib/phx1_6_web/router.ex deleted file mode 100644 index a6aaec6c..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/router.ex +++ /dev/null @@ -1,56 +0,0 @@ -defmodule Phx16Web.Router do - use Phx16Web, :router - - pipeline :browser do - plug :accepts, ["html"] - plug :fetch_session - plug :fetch_live_flash - plug :put_root_layout, {Phx16Web.LayoutView, :root} - plug :protect_from_forgery - plug :put_secure_browser_headers - end - - pipeline :api do - plug :accepts, ["json"] - end - - scope "/", Phx16Web do - pipe_through :browser - - get "/", PageController, :index - end - - # Other scopes may use custom stacks. - # scope "/api", Phx16Web do - # pipe_through :api - # end - - # Enables LiveDashboard only for development - # - # If you want to use the LiveDashboard in production, you should put - # it behind authentication and allow only admins to access it. - # If your application does not have an admins-only section yet, - # you can use Plug.BasicAuth to set up some basic authentication - # as long as you are also using SSL (which you should anyway). - if Mix.env() in [:dev, :test] do - import Phoenix.LiveDashboard.Router - - scope "/" do - pipe_through :browser - - live_dashboard("/dashboard", metrics: Phx16Web.Telemetry) - end - end - - # Enables the Swoosh mailbox preview in development. - # - # Note that preview only shows emails that were sent by the same - # node running the Phoenix server. - if Mix.env() == :dev do - scope "/dev" do - pipe_through :browser - - forward("/mailbox", Plug.Swoosh.MailboxPreview) - end - end -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/app.html.heex b/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/app.html.heex deleted file mode 100644 index 169aed95..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/app.html.heex +++ /dev/null @@ -1,5 +0,0 @@ -
- - - <%= @inner_content %> -
diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/live.html.heex b/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/live.html.heex deleted file mode 100644 index a29d6044..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/live.html.heex +++ /dev/null @@ -1,11 +0,0 @@ -
- - - - - <%= @inner_content %> -
diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/root.html.heex b/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/root.html.heex deleted file mode 100644 index de203b87..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/templates/layout/root.html.heex +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - <%= csrf_meta_tag() %> - <%= live_title_tag assigns[:page_title] || "Phx16", suffix: " ยท Phoenix Framework" %> - - - - -
-
- - -
-
- <%= @inner_content %> - - diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/templates/page/index.html.heex b/test/support/apps/phx1_6/lib/phx1_6_web/templates/page/index.html.heex deleted file mode 100644 index f844bd8d..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/templates/page/index.html.heex +++ /dev/null @@ -1,41 +0,0 @@ -
-

<%= gettext "Welcome to %{name}!", name: "Phoenix" %>

-

Peace of mind from prototype to production

-
- -
- - -
diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/views/error_helpers.ex b/test/support/apps/phx1_6/lib/phx1_6_web/views/error_helpers.ex deleted file mode 100644 index 622312eb..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/views/error_helpers.ex +++ /dev/null @@ -1,47 +0,0 @@ -defmodule Phx16Web.ErrorHelpers do - @moduledoc """ - Conveniences for translating and building error messages. - """ - - use Phoenix.HTML - - @doc """ - Generates tag for inlined form input errors. - """ - def error_tag(form, field) do - Enum.map(Keyword.get_values(form.errors, field), fn error -> - content_tag(:span, translate_error(error), - class: "invalid-feedback", - phx_feedback_for: input_name(form, field) - ) - end) - end - - @doc """ - Translates an error message using gettext. - """ - def translate_error({msg, opts}) do - # When using gettext, we typically pass the strings we want - # to translate as a static argument: - # - # # Translate "is invalid" in the "errors" domain - # dgettext("errors", "is invalid") - # - # # Translate the number of files with plural rules - # dngettext("errors", "1 file", "%{count} files", count) - # - # Because the error messages we show in our forms and APIs - # are defined inside Ecto, we need to translate them dynamically. - # This requires us to call the Gettext module passing our gettext - # backend as first argument. - # - # Note we use the "errors" domain, which means translations - # should be written to the errors.po file. The :count option is - # set by Ecto and indicates we should also apply plural rules. - if count = opts[:count] do - Gettext.dngettext(Phx16Web.Gettext, "errors", msg, msg, count, opts) - else - Gettext.dgettext(Phx16Web.Gettext, "errors", msg, opts) - end - end -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/views/error_view.ex b/test/support/apps/phx1_6/lib/phx1_6_web/views/error_view.ex deleted file mode 100644 index f42191ad..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/views/error_view.ex +++ /dev/null @@ -1,16 +0,0 @@ -defmodule Phx16Web.ErrorView do - use Phx16Web, :view - - # If you want to customize a particular status code - # for a certain format, you may uncomment below. - # def render("500.html", _assigns) do - # "Internal Server Error" - # end - - # By default, Phoenix returns the status message from - # the template name. For example, "404.html" becomes - # "Not Found". - def template_not_found(template, _assigns) do - Phoenix.Controller.status_message_from_template(template) - end -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/views/layout_view.ex b/test/support/apps/phx1_6/lib/phx1_6_web/views/layout_view.ex deleted file mode 100644 index 18ce49ca..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/views/layout_view.ex +++ /dev/null @@ -1,7 +0,0 @@ -defmodule Phx16Web.LayoutView do - use Phx16Web, :view - - # Phoenix LiveDashboard is available only in development by default, - # so we instruct Elixir to not warn if the dashboard route is missing. - @compile {:no_warn_undefined, {Routes, :live_dashboard_path, 2}} -end diff --git a/test/support/apps/phx1_6/lib/phx1_6_web/views/page_view.ex b/test/support/apps/phx1_6/lib/phx1_6_web/views/page_view.ex deleted file mode 100644 index 0c2a9749..00000000 --- a/test/support/apps/phx1_6/lib/phx1_6_web/views/page_view.ex +++ /dev/null @@ -1,3 +0,0 @@ -defmodule Phx16Web.PageView do - use Phx16Web, :view -end diff --git a/test/support/apps/phx1_6/mix.lock b/test/support/apps/phx1_6/mix.lock deleted file mode 100644 index 369cb6f5..00000000 --- a/test/support/apps/phx1_6/mix.lock +++ /dev/null @@ -1,49 +0,0 @@ -%{ - "castore": {:hex, :castore, "0.1.15", "dbb300827d5a3ec48f396ca0b77ad47058578927e9ebe792abd99fcbc3324326", [:mix], [], "hexpm", "c69379b907673c7e6eb229f09a0a09b60bb27cfb9625bcb82ea4c04ba82a8442"}, - "certifi": {:hex, :certifi, "2.8.0", "d4fb0a6bb20b7c9c3643e22507e42f356ac090a1dcea9ab99e27e0376d695eba", [:rebar3], [], "hexpm", "6ac7efc1c6f8600b08d625292d4bbf584e14847ce1b6b5c44d983d273e1097ea"}, - "combine": {:hex, :combine, "0.10.0", "eff8224eeb56498a2af13011d142c5e7997a80c8f5b97c499f84c841032e429f", [:mix], [], "hexpm", "1b1dbc1790073076580d0d1d64e42eae2366583e7aecd455d1215b0d16f2451b"}, - "connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"}, - "cowboy": {:hex, :cowboy, "2.9.0", "865dd8b6607e14cf03282e10e934023a1bd8be6f6bacf921a7e2a96d800cd452", [:make, :rebar3], [{:cowlib, "2.11.0", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "1.8.0", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm", "2c729f934b4e1aa149aff882f57c6372c15399a20d54f65c8d67bef583021bde"}, - "cowboy_telemetry": {:hex, :cowboy_telemetry, "0.4.0", "f239f68b588efa7707abce16a84d0d2acf3a0f50571f8bb7f56a15865aae820c", [:rebar3], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7d98bac1ee4565d31b62d59f8823dfd8356a169e7fcbb83831b8a5397404c9de"}, - "cowlib": {:hex, :cowlib, "2.11.0", "0b9ff9c346629256c42ebe1eeb769a83c6cb771a6ee5960bd110ab0b9b872063", [:make, :rebar3], [], "hexpm", "2b3e9da0b21c4565751a6d4901c20d1b4cc25cbb7fd50d91d2ab6dd287bc86a9"}, - "db_connection": {:hex, :db_connection, "2.4.1", "6411f6e23f1a8b68a82fa3a36366d4881f21f47fc79a9efb8c615e62050219da", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "ea36d226ec5999781a9a8ad64e5d8c4454ecedc7a4d643e4832bf08efca01f00"}, - "decimal": {:hex, :decimal, "2.0.0", "a78296e617b0f5dd4c6caf57c714431347912ffb1d0842e998e9792b5642d697", [:mix], [], "hexpm", "34666e9c55dea81013e77d9d87370fe6cb6291d1ef32f46a1600230b1d44f577"}, - "ecto": {:hex, :ecto, "3.7.1", "a20598862351b29f80f285b21ec5297da1181c0442687f9b8329f0445d228892", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "d36e5b39fc479e654cffd4dbe1865d9716e4a9b6311faff799b6f90ab81b8638"}, - "ecto_sql": {:hex, :ecto_sql, "3.7.2", "55c60aa3a06168912abf145c6df38b0295c34118c3624cf7a6977cd6ce043081", [:mix], [{:db_connection, "~> 2.2", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.7.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:myxql, "~> 0.4.0 or ~> 0.5.0 or ~> 0.6.0", [hex: :myxql, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.15.0 or ~> 0.16.0 or ~> 1.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:tds, "~> 2.1.1 or ~> 2.2", [hex: :tds, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "3c218ea62f305dcaef0b915fb56583195e7b91c91dcfb006ba1f669bfacbff2a"}, - "esbuild": {:hex, :esbuild, "0.4.0", "9f17db148aead4cf1e6e6a584214357287a93407b5fb51a031f122b61385d4c2", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "b61e4e6b92ffe45e4ee4755a22de6211a67c67987dc02afb35a425a0add1d447"}, - "file_system": {:hex, :file_system, "0.2.10", "fb082005a9cd1711c05b5248710f8826b02d7d1784e7c3451f9c1231d4fc162d", [:mix], [], "hexpm", "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"}, - "filtrex": {:hex, :filtrex, "0.4.3", "d59e496d385b19df7e3a613ad74deca4ac5ef1666352e9e435e8442fc9ae4c70", [:mix], [{:ecto, "~> 3.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:ecto_sql, "~> 3.0", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:timex, "~> 3.1", [hex: :timex, repo: "hexpm", optional: false]}], "hexpm", "a374999d00174c3a6c617def9c9d199a2bc5928d49a227d1de622ccbadbff1d0"}, - "floki": {:hex, :floki, "0.32.0", "f915dc15258bc997d49be1f5ef7d3992f8834d6f5695270acad17b41f5bcc8e2", [:mix], [{:html_entities, "~> 0.5.0", [hex: :html_entities, repo: "hexpm", optional: false]}], "hexpm", "1c5a91cae1fd8931c26a4826b5e2372c284813904c8bacb468b5de39c7ececbd"}, - "gettext": {:hex, :gettext, "0.19.0", "6909d61b38bb33339558f128f8af5913d5d5fe304a770217bf352b1620fb7ec4", [:mix], [], "hexpm", "3f7a274f52ebda9bb6655dfeda3d6b0dc4537ae51ce41dcccc7f73ca7379ad5e"}, - "hackney": {:hex, :hackney, "1.18.0", "c4443d960bb9fba6d01161d01cd81173089686717d9490e5d3606644c48d121f", [:rebar3], [{:certifi, "~>2.8.0", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~>6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~>1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~>1.1", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.3.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~>1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~>0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "9afcda620704d720db8c6a3123e9848d09c87586dc1c10479c42627b905b5c5e"}, - "html_entities": {:hex, :html_entities, "0.5.2", "9e47e70598da7de2a9ff6af8758399251db6dbb7eebe2b013f2bbd2515895c3c", [:mix], [], "hexpm", "c53ba390403485615623b9531e97696f076ed415e8d8058b1dbaa28181f4fdcc"}, - "idna": {:hex, :idna, "6.1.1", "8a63070e9f7d0c62eb9d9fcb360a7de382448200fbbd1b106cc96d3d8099df8d", [:rebar3], [{:unicode_util_compat, "~>0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "92376eb7894412ed19ac475e4a86f7b413c1b9fbb5bd16dccd57934157944cea"}, - "jason": {:hex, :jason, "1.3.0", "fa6b82a934feb176263ad2df0dbd91bf633d4a46ebfdffea0c8ae82953714946", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "53fc1f51255390e0ec7e50f9cb41e751c260d065dcba2bf0d08dc51a4002c2ac"}, - "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"}, - "mime": {:hex, :mime, "2.0.2", "0b9e1a4c840eafb68d820b0e2158ef5c49385d17fb36855ac6e7e087d4b1dcc5", [:mix], [], "hexpm", "e6a3f76b4c277739e36c2e21a2c640778ba4c3846189d5ab19f97f126df5f9b7"}, - "mimerl": {:hex, :mimerl, "1.2.0", "67e2d3f571088d5cfd3e550c383094b47159f3eee8ffa08e64106cdf5e981be3", [:rebar3], [], "hexpm", "f278585650aa581986264638ebf698f8bb19df297f66ad91b18910dfc6e19323"}, - "parse_trans": {:hex, :parse_trans, "3.3.1", "16328ab840cc09919bd10dab29e431da3af9e9e7e7e6f0089dd5a2d2820011d8", [:rebar3], [], "hexpm", "07cd9577885f56362d414e8c4c4e6bdf10d43a8767abb92d24cbe8b24c54888b"}, - "phoenix": {:hex, :phoenix, "1.6.6", "281c8ce8dccc9f60607346b72cdfc597c3dde134dd9df28dff08282f0b751754", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 1.0", [hex: :phoenix_view, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "807bd646e64cd9dc83db016199715faba72758e6db1de0707eef0a2da4924364"}, - "phoenix_ecto": {:hex, :phoenix_ecto, "4.4.0", "0672ed4e4808b3fbed494dded89958e22fb882de47a97634c0b13e7b0b5f7720", [:mix], [{:ecto, "~> 3.3", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "09864e558ed31ee00bd48fcc1d4fc58ae9678c9e81649075431e69dbabb43cc1"}, - "phoenix_html": {:hex, :phoenix_html, "3.2.0", "1c1219d4b6cb22ac72f12f73dc5fad6c7563104d083f711c3fcd8551a1f4ae11", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "36ec97ba56d25c0136ef1992c37957e4246b649d620958a1f9fa86165f8bc54f"}, - "phoenix_live_dashboard": {:hex, :phoenix_live_dashboard, "0.6.4", "d7ff34b2c8dd5fa950748496697da01ae1b6b259891ce1103e300bdc7abfbb99", [:mix], [{:ecto, "~> 3.6.2 or ~> 3.7", [hex: :ecto, repo: "hexpm", optional: true]}, {:ecto_mysql_extras, "~> 0.3", [hex: :ecto_mysql_extras, repo: "hexpm", optional: true]}, {:ecto_psql_extras, "~> 0.7", [hex: :ecto_psql_extras, repo: "hexpm", optional: true]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:phoenix_live_view, "~> 0.17.1", [hex: :phoenix_live_view, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 0.6.0", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}], "hexpm", "ce2505256ab459663258ecba4158af130e6b7a5b85783fe442541fbb1236e1b2"}, - "phoenix_live_reload": {:hex, :phoenix_live_reload, "1.3.3", "3a53772a6118d5679bf50fc1670505a290e32a1d195df9e069d8c53ab040c054", [:mix], [{:file_system, "~> 0.2.1 or ~> 0.3", [hex: :file_system, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.4", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "766796676e5f558dbae5d1bdb066849673e956005e3730dfd5affd7a6da4abac"}, - "phoenix_live_view": {:hex, :phoenix_live_view, "0.17.6", "3665f3ec426ac8d681cd7753ad4c85d2d247094dc4dc6add80dd6e3026045389", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix, "~> 1.5.9 or ~> 1.6.0", [hex: :phoenix, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 3.1", [hex: :phoenix_html, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "62f06d4bbfc4dc5595070bc338119ab08e8e67a011e2923f9366419622149b9c"}, - "phoenix_pubsub": {:hex, :phoenix_pubsub, "2.0.0", "a1ae76717bb168cdeb10ec9d92d1480fec99e3080f011402c0a2d68d47395ffb", [:mix], [], "hexpm", "c52d948c4f261577b9c6fa804be91884b381a7f8f18450c5045975435350f771"}, - "phoenix_view": {:hex, :phoenix_view, "1.1.2", "1b82764a065fb41051637872c7bd07ed2fdb6f5c3bd89684d4dca6e10115c95a", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "7ae90ad27b09091266f6adbb61e1d2516a7c3d7062c6789d46a7554ec40f3a56"}, - "plug": {:hex, :plug, "1.13.0", "61b2949a31fc8fbfb993487e82d24ddbf7e8f04d5e9339f19ddf4c79c9b69e90", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "c31c0225716cf8c15ef84ec5188093cbc204e046ac85e7b1dd7d9e66d31c18b0"}, - "plug_cowboy": {:hex, :plug_cowboy, "2.5.2", "62894ccd601cf9597e2c23911ff12798a8a18d237e9739f58a6b04e4988899fe", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.7", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "ea6e87f774c8608d60c8d34022a7d073bd7680a0a013f049fc62bf35efea1044"}, - "plug_crypto": {:hex, :plug_crypto, "1.2.2", "05654514ac717ff3a1843204b424477d9e60c143406aa94daf2274fdd280794d", [:mix], [], "hexpm", "87631c7ad914a5a445f0a3809f99b079113ae4ed4b867348dd9eec288cecb6db"}, - "postgrex": {:hex, :postgrex, "0.16.1", "f94628a32c571266f53cd1e5fca705e626e2417bf1eee6f868985d14e874160a", [:mix], [{:connection, "~> 1.1", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "6b225df32c857b9430619dbe30200a7ae664e23415a771ae9209396ee8eeee64"}, - "ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"}, - "scrivener": {:hex, :scrivener, "2.7.2", "1d913c965ec352650a7f864ad7fd8d80462f76a32f33d57d1e48bc5e9d40aba2", [:mix], [], "hexpm", "7866a0ec4d40274efbee1db8bead13a995ea4926ecd8203345af8f90d2b620d9"}, - "scrivener_ecto": {:hex, :scrivener_ecto, "2.7.0", "cf64b8cb8a96cd131cdbcecf64e7fd395e21aaa1cb0236c42a7c2e34b0dca580", [:mix], [{:ecto, "~> 3.3", [hex: :ecto, repo: "hexpm", optional: false]}, {:scrivener, "~> 2.4", [hex: :scrivener, repo: "hexpm", optional: false]}], "hexpm", "e809f171687806b0031129034352f5ae44849720c48dd839200adeaf0ac3e260"}, - "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.6", "cf344f5692c82d2cd7554f5ec8fd961548d4fd09e7d22f5b62482e5aeaebd4b0", [:make, :mix, :rebar3], [], "hexpm", "bdb0d2471f453c88ff3908e7686f86f9be327d065cc1ec16fa4540197ea04680"}, - "swoosh": {:hex, :swoosh, "1.6.1", "7c4b0903876ca4b93992a3225d02c9a5e906aff2610a8d1b78020563a6fd9a6c", [:mix], [{:cowboy, "~> 1.1 or ~> 2.4", [hex: :cowboy, 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", "3e79cc8df5eb3b375f4456cd60af083126111cc4929a06ba3839162efb57862e"}, - "telemetry": {:hex, :telemetry, "1.0.0", "0f453a102cdf13d506b7c0ab158324c337c41f1cc7548f0bc0e130bbf0ae9452", [:rebar3], [], "hexpm", "73bc09fa59b4a0284efb4624335583c528e07ec9ae76aca96ea0673850aec57a"}, - "telemetry_metrics": {:hex, :telemetry_metrics, "0.6.1", "315d9163a1d4660aedc3fee73f33f1d355dcc76c5c3ab3d59e76e3edf80eef1f", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6"}, - "telemetry_poller": {:hex, :telemetry_poller, "1.0.0", "db91bb424e07f2bb6e73926fcafbfcbcb295f0193e0a00e825e589a0a47e8453", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e"}, - "timex": {:hex, :timex, "3.7.6", "502d2347ec550e77fdf419bc12d15bdccd31266bb7d925b30bf478268098282f", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:gettext, "~> 0.10", [hex: :gettext, repo: "hexpm", optional: false]}, {:tzdata, "~> 1.0", [hex: :tzdata, repo: "hexpm", optional: false]}], "hexpm", "a296327f79cb1ec795b896698c56e662ed7210cc9eb31f0ab365eb3a62e2c589"}, - "tzdata": {:hex, :tzdata, "1.1.1", "20c8043476dfda8504952d00adac41c6eda23912278add38edc140ae0c5bcc46", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "a69cec8352eafcd2e198dea28a34113b60fdc6cb57eb5ad65c10292a6ba89787"}, - "unicode_util_compat": {:hex, :unicode_util_compat, "0.7.0", "bc84380c9ab48177092f43ac89e4dfa2c6d62b40b8bd132b1059ecc7232f9a78", [:rebar3], [], "hexpm", "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"}, -} diff --git a/test/support/apps/phx1_6/priv/static/images/phoenix.png b/test/support/apps/phx1_6/priv/static/images/phoenix.png deleted file mode 100644 index 9c81075f63d2151e6f40e9aa66f665749a87cc6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13900 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 UWxWXg`G1#+f~I_}taaG`2PLnS&Hw-a diff --git a/test/support/apps/phx1_6/test/phx1_6_web/controllers/page_controller_test.exs b/test/support/apps/phx1_6/test/phx1_6_web/controllers/page_controller_test.exs deleted file mode 100644 index 7b55687d..00000000 --- a/test/support/apps/phx1_6/test/phx1_6_web/controllers/page_controller_test.exs +++ /dev/null @@ -1,8 +0,0 @@ -defmodule Phx16Web.PageControllerTest do - use Phx16Web.ConnCase - - test "GET /", %{conn: conn} do - conn = get(conn, "/") - assert html_response(conn, 200) =~ "Welcome to Phoenix!" - end -end diff --git a/test/support/apps/phx1_6/test/phx1_6_web/views/error_view_test.exs b/test/support/apps/phx1_6/test/phx1_6_web/views/error_view_test.exs deleted file mode 100644 index 668c0a15..00000000 --- a/test/support/apps/phx1_6/test/phx1_6_web/views/error_view_test.exs +++ /dev/null @@ -1,14 +0,0 @@ -defmodule Phx16Web.ErrorViewTest do - use Phx16Web.ConnCase, async: true - - # Bring render/3 and render_to_string/3 for testing custom views - import Phoenix.View - - test "renders 404.html" do - assert render_to_string(Phx16Web.ErrorView, "404.html", []) == "Not Found" - end - - test "renders 500.html" do - assert render_to_string(Phx16Web.ErrorView, "500.html", []) == "Internal Server Error" - end -end diff --git a/test/support/apps/phx1_6/test/phx1_6_web/views/layout_view_test.exs b/test/support/apps/phx1_6/test/phx1_6_web/views/layout_view_test.exs deleted file mode 100644 index bdb470e1..00000000 --- a/test/support/apps/phx1_6/test/phx1_6_web/views/layout_view_test.exs +++ /dev/null @@ -1,8 +0,0 @@ -defmodule Phx16Web.LayoutViewTest do - use Phx16Web.ConnCase, async: true - - # When testing helpers, you may want to import Phoenix.HTML and - # use functions such as safe_to_string() to convert the helper - # result into an HTML string. - # import Phoenix.HTML -end diff --git a/test/support/apps/phx1_6/test/phx1_6_web/views/page_view_test.exs b/test/support/apps/phx1_6/test/phx1_6_web/views/page_view_test.exs deleted file mode 100644 index e9443b9a..00000000 --- a/test/support/apps/phx1_6/test/phx1_6_web/views/page_view_test.exs +++ /dev/null @@ -1,3 +0,0 @@ -defmodule Phx16Web.PageViewTest do - use Phx16Web.ConnCase, async: true -end diff --git a/test/support/apps/phx1_6/test/support/channel_case.ex b/test/support/apps/phx1_6/test/support/channel_case.ex deleted file mode 100644 index 29cf75f1..00000000 --- a/test/support/apps/phx1_6/test/support/channel_case.ex +++ /dev/null @@ -1,36 +0,0 @@ -defmodule Phx16Web.ChannelCase do - @moduledoc """ - This module defines the test case to be used by - channel tests. - - Such tests rely on `Phoenix.ChannelTest` and also - import other functionality to make it easier - to build common data structures and query the data layer. - - Finally, if the test case interacts with the database, - we enable the SQL sandbox, so changes done to the database - are reverted at the end of every test. If you are using - PostgreSQL, you can even run database tests asynchronously - by setting `use Phx16Web.ChannelCase, async: true`, although - this option is not recommended for other databases. - """ - - use ExUnit.CaseTemplate - - using do - quote do - # Import conveniences for testing with channels - import Phoenix.ChannelTest - import Phx16Web.ChannelCase - - # The default endpoint for testing - @endpoint Phx16Web.Endpoint - end - end - - setup tags do - pid = Ecto.Adapters.SQL.Sandbox.start_owner!(Phx16.Repo, shared: not tags[:async]) - on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end) - :ok - end -end diff --git a/test/support/apps/phx1_6/test/test_helper.exs b/test/support/apps/phx1_6/test/test_helper.exs deleted file mode 100644 index e5426d54..00000000 --- a/test/support/apps/phx1_6/test/test_helper.exs +++ /dev/null @@ -1,2 +0,0 @@ -ExUnit.start() -Ecto.Adapters.SQL.Sandbox.mode(Phx16.Repo, :manual) diff --git a/test/support/apps/phx1_7/.formatter.exs b/test/support/apps/phx1_7/.formatter.exs new file mode 100644 index 00000000..ef8840ce --- /dev/null +++ b/test/support/apps/phx1_7/.formatter.exs @@ -0,0 +1,6 @@ +[ + import_deps: [:ecto, :ecto_sql, :phoenix], + subdirectories: ["priv/*/migrations"], + plugins: [Phoenix.LiveView.HTMLFormatter], + inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"] +] diff --git a/test/support/apps/phx1_6/.gitignore b/test/support/apps/phx1_7/.gitignore similarity index 92% rename from test/support/apps/phx1_6/.gitignore rename to test/support/apps/phx1_7/.gitignore index 9841535f..edafe3d3 100644 --- a/test/support/apps/phx1_6/.gitignore +++ b/test/support/apps/phx1_7/.gitignore @@ -19,8 +19,11 @@ erl_crash.dump # Also ignore archive artifacts (built via "mix archive.build"). *.ez +# Temporary files, for example, from tests. +/tmp/ + # Ignore package tarball (built via "mix hex.build"). -phx1_6-*.tar +phx1_7-*.tar # Ignore assets that are produced by build tools. /priv/static/assets/ diff --git a/test/support/apps/phx1_6/README.md b/test/support/apps/phx1_7/README.md similarity index 83% rename from test/support/apps/phx1_6/README.md rename to test/support/apps/phx1_7/README.md index 60f41a42..8209b18a 100644 --- a/test/support/apps/phx1_6/README.md +++ b/test/support/apps/phx1_7/README.md @@ -1,9 +1,8 @@ -# Phx16 +# Phx17 To start your Phoenix server: - * Install dependencies with `mix deps.get` - * Create and migrate your database with `mix ecto.setup` + * Run `mix setup` to install and setup dependencies * Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server` Now you can visit [`localhost:4000`](http://localhost:4000) from your browser. diff --git a/test/support/apps/phx1_7/assets/css/app.css b/test/support/apps/phx1_7/assets/css/app.css new file mode 100644 index 00000000..378c8f90 --- /dev/null +++ b/test/support/apps/phx1_7/assets/css/app.css @@ -0,0 +1,5 @@ +@import "tailwindcss/base"; +@import "tailwindcss/components"; +@import "tailwindcss/utilities"; + +/* This file is for your main application CSS */ diff --git a/test/support/apps/phx1_6/assets/js/app.js b/test/support/apps/phx1_7/assets/js/app.js similarity index 81% rename from test/support/apps/phx1_6/assets/js/app.js rename to test/support/apps/phx1_7/assets/js/app.js index 2ca06a56..df0cdd9f 100644 --- a/test/support/apps/phx1_6/assets/js/app.js +++ b/test/support/apps/phx1_7/assets/js/app.js @@ -1,7 +1,3 @@ -// We import the CSS which is extracted to its own file by esbuild. -// Remove this line if you add a your own CSS build pipeline (e.g postcss). -import "../css/app.css" - // If you want to use Phoenix channels, run `mix help phx.gen.channel` // to get started and then uncomment the line below. // import "./user_socket.js" @@ -31,8 +27,8 @@ let liveSocket = new LiveSocket("/live", Socket, {params: {_csrf_token: csrfToke // Show progress bar on live navigation and form submits topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"}) -window.addEventListener("phx:page-loading-start", info => topbar.show()) -window.addEventListener("phx:page-loading-stop", info => topbar.hide()) +window.addEventListener("phx:page-loading-start", _info => topbar.show(300)) +window.addEventListener("phx:page-loading-stop", _info => topbar.hide()) // connect if there are any LiveViews on the page liveSocket.connect() diff --git a/test/support/apps/phx1_7/assets/tailwind.config.js b/test/support/apps/phx1_7/assets/tailwind.config.js new file mode 100644 index 00000000..e3bf2413 --- /dev/null +++ b/test/support/apps/phx1_7/assets/tailwind.config.js @@ -0,0 +1,26 @@ +// See the Tailwind configuration guide for advanced usage +// https://tailwindcss.com/docs/configuration + +const plugin = require("tailwindcss/plugin") + +module.exports = { + content: [ + "./js/**/*.js", + "../lib/*_web.ex", + "../lib/*_web/**/*.*ex" + ], + theme: { + extend: { + colors: { + brand: "#FD4F00", + } + }, + }, + plugins: [ + require("@tailwindcss/forms"), + plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])), + plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])), + plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])), + plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])) + ] +} diff --git a/test/support/apps/phx1_6/assets/vendor/topbar.js b/test/support/apps/phx1_7/assets/vendor/topbar.js similarity index 83% rename from test/support/apps/phx1_6/assets/vendor/topbar.js rename to test/support/apps/phx1_7/assets/vendor/topbar.js index 1f622097..41957274 100644 --- a/test/support/apps/phx1_6/assets/vendor/topbar.js +++ b/test/support/apps/phx1_7/assets/vendor/topbar.js @@ -1,6 +1,6 @@ /** * @license MIT - * topbar 1.0.0, 2021-01-06 + * topbar 2.0.0, 2023-02-04 * https://buunguyen.github.io/topbar * Copyright (c) 2021 Buu Nguyen */ @@ -35,10 +35,11 @@ })(); var canvas, - progressTimerId, - fadeTimerId, currentProgress, showing, + progressTimerId = null, + fadeTimerId = null, + delayTimerId = null, addEvent = function (elem, type, handler) { if (elem.addEventListener) elem.addEventListener(type, handler, false); else if (elem.attachEvent) elem.attachEvent("on" + type, handler); @@ -95,21 +96,26 @@ for (var key in opts) if (options.hasOwnProperty(key)) options[key] = opts[key]; }, - show: function () { + show: function (delay) { if (showing) return; - showing = true; - if (fadeTimerId !== null) window.cancelAnimationFrame(fadeTimerId); - if (!canvas) createCanvas(); - canvas.style.opacity = 1; - canvas.style.display = "block"; - topbar.progress(0); - if (options.autoRun) { - (function loop() { - progressTimerId = window.requestAnimationFrame(loop); - topbar.progress( - "+" + 0.05 * Math.pow(1 - Math.sqrt(currentProgress), 2) - ); - })(); + if (delay) { + if (delayTimerId) return; + delayTimerId = setTimeout(() => topbar.show(), delay); + } else { + showing = true; + if (fadeTimerId !== null) window.cancelAnimationFrame(fadeTimerId); + if (!canvas) createCanvas(); + canvas.style.opacity = 1; + canvas.style.display = "block"; + topbar.progress(0); + if (options.autoRun) { + (function loop() { + progressTimerId = window.requestAnimationFrame(loop); + topbar.progress( + "+" + 0.05 * Math.pow(1 - Math.sqrt(currentProgress), 2) + ); + })(); + } } }, progress: function (to) { @@ -125,6 +131,8 @@ return currentProgress; }, hide: function () { + clearTimeout(delayTimerId); + delayTimerId = null; if (!showing) return; showing = false; if (progressTimerId != null) { diff --git a/test/support/apps/phx1_6/bin/test b/test/support/apps/phx1_7/bin/test similarity index 61% rename from test/support/apps/phx1_6/bin/test rename to test/support/apps/phx1_7/bin/test index ca065531..f376ba1d 100755 --- a/test/support/apps/phx1_6/bin/test +++ b/test/support/apps/phx1_7/bin/test @@ -4,30 +4,30 @@ function cleanup() { rm -rf priv/templates rm -rf priv/repo/migrations/*.exs - rm -rf lib/phx1_6/blog.ex - rm -rf lib/phx1_6/blog - rm -rf test/phx1_6/blog_test.exs - rm -rf lib/phx1_6_web/controllers/post_controller.ex - rm -rf lib/phx1_6_web/templates/layout/torch.html.heex - rm -rf lib/phx1_6_web/templates/post/ - rm -rf lib/phx1_6_web/views/post_view.ex - rm -rf test/phx1_6_web/controllers/post_controller_test.exs + rm -rf lib/phx1_7/blog.ex + rm -rf lib/phx1_7/blog + rm -rf test/phx1_7/blog_test.exs + rm -rf lib/phx1_7_web/controllers/post_controller.ex + rm -rf lib/phx1_7_web/templates/layout/torch.html.heex + rm -rf lib/phx1_7_web/templates/post/ + rm -rf lib/phx1_7_web/views/post_view.ex + rm -rf test/phx1_7_web/controllers/post_controller_test.exs rm -rf test/support/fixtures/ - patch -i ../../patches/install-torch.patch -p 5 -R - patch -i ../../patches/install-route.patch -p 5 -R + patch -i ../../patches/install-torch.diff -p 1 -R + patch -i ../../patches/install-route.diff -p 1 -R } -patch -i ../../patches/install-torch.patch -p 5 +patch -i ../../patches/install-torch.diff -p 1 mix deps.get || { cleanup; echo 'Dependencies could not be fetched!'; exit 1; } MIX_ENV=test mix ecto.drop || { cleanup; echo 'Database could not be dropped'; exit 1; } MIX_ENV=test mix torch.install || { cleanup; echo 'Torch could not be installed!'; exit 1; } MIX_ENV=test mix torch.gen.html Blog Post posts title:string published:boolean published_at:datetime views:integer || { echo 'Torch files not generated!'; exit 1; } MIX_ENV=test mix ecto.setup || { cleanup; echo 'Torch database could not be setup!'; exit 1; } -patch -i ../../patches/install-route.patch -p 5 +patch -i ../../patches/install-route.diff -p 1 MIX_ENV=test mix test || { echo 'Tests failed!'; cleanup; exit 1; } # Ensure that put_root_layout is used by default on > Phx 1.5 -if ! grep -q "plug(:put_root_layout" lib/phx1_6_web/controllers/post_controller.ex ; then +if ! grep -q "plug(:put_root_layout" lib/phx1_7_web/controllers/post_controller.ex ; then echo 'Generated Phoenix controller not using `put_root_layout` syntax' cleanup exit 1; diff --git a/test/support/apps/phx1_6/config/config.exs b/test/support/apps/phx1_7/config/config.exs similarity index 67% rename from test/support/apps/phx1_6/config/config.exs rename to test/support/apps/phx1_7/config/config.exs index 3c2eed06..f58eb520 100644 --- a/test/support/apps/phx1_6/config/config.exs +++ b/test/support/apps/phx1_7/config/config.exs @@ -7,15 +7,18 @@ # General application configuration import Config -config :phx1_6, - ecto_repos: [Phx16.Repo] +config :phx1_7, + ecto_repos: [Phx17.Repo] # Configures the endpoint -config :phx1_6, Phx16Web.Endpoint, +config :phx1_7, Phx17Web.Endpoint, url: [host: "localhost"], - render_errors: [view: Phx16Web.ErrorView, accepts: ~w(html json), layout: false], - pubsub_server: Phx16.PubSub, - live_view: [signing_salt: "CxuOtNXH"] + render_errors: [ + formats: [html: Phx17Web.ErrorHTML, json: Phx17Web.ErrorJSON], + layout: false + ], + pubsub_server: Phx17.PubSub, + live_view: [signing_salt: "8b3KX+rn"] # Configures the mailer # @@ -24,14 +27,11 @@ config :phx1_6, Phx16Web.Endpoint, # # For production it's recommended to configure a different adapter # at the `config/runtime.exs`. -config :phx1_6, Phx16.Mailer, adapter: Swoosh.Adapters.Local - -# Swoosh API client is needed for adapters other than SMTP. -config :swoosh, :api_client, false +config :phx1_7, Phx17.Mailer, adapter: Swoosh.Adapters.Local # Configure esbuild (the version is required) config :esbuild, - version: "0.14.0", + version: "0.14.41", default: [ args: ~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*), @@ -39,6 +39,18 @@ config :esbuild, env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)} ] +# Configure tailwind (the version is required) +config :tailwind, + version: "3.2.4", + default: [ + args: ~w( + --config=tailwind.config.js + --input=css/app.css + --output=../priv/static/assets/app.css + ), + cd: Path.expand("../assets", __DIR__) + ] + # Configures Elixir's Logger config :logger, :console, format: "$time $metadata[$level] $message\n", diff --git a/test/support/apps/phx1_6/config/dev.exs b/test/support/apps/phx1_7/config/dev.exs similarity index 76% rename from test/support/apps/phx1_6/config/dev.exs rename to test/support/apps/phx1_7/config/dev.exs index 2085faaf..f74a29a8 100644 --- a/test/support/apps/phx1_6/config/dev.exs +++ b/test/support/apps/phx1_7/config/dev.exs @@ -1,11 +1,12 @@ import Config # Configure your database -config :phx1_6, Phx16.Repo, +config :phx1_7, Phx17.Repo, username: "postgres", password: "postgres", hostname: "localhost", - database: "phx1_6_dev", + database: "phx1_7_dev", + stacktrace: true, show_sensitive_data_on_connection_error: true, pool_size: 10 @@ -15,17 +16,17 @@ config :phx1_6, Phx16.Repo, # The watchers configuration can be used to run external # watchers to your application. For example, we use it # with esbuild to bundle .js and .css sources. -config :phx1_6, Phx16Web.Endpoint, +config :phx1_7, Phx17Web.Endpoint, # Binding to loopback ipv4 address prevents access from other machines. # Change to `ip: {0, 0, 0, 0}` to allow access from other machines. http: [ip: {127, 0, 0, 1}, port: 4000], check_origin: false, code_reloader: true, debug_errors: true, - secret_key_base: "etcdxK7tzvmFU74O3YmTOtoEaeLYqDqDIWJD7e5Mm0rum20bc3snNT2l4CGwExEP", + secret_key_base: "19IzTkNsmuimyLpuAG1foyIGCFGux/qM5o+9Po75mKTogJIXlKESYuliyjzqLDFD", watchers: [ - # Start the esbuild watcher by calling Esbuild.install_and_run(:default, args) - esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]} + esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]}, + tailwind: {Tailwind, :install_and_run, [:default, ~w(--watch)]} ] # ## SSL Support @@ -36,7 +37,6 @@ config :phx1_6, Phx16Web.Endpoint, # # mix phx.gen.cert # -# Note that this task requires Erlang/OTP 20 or later. # Run `mix help phx.gen.cert` for more information. # # The `http:` config above can be replaced with: @@ -53,16 +53,18 @@ config :phx1_6, Phx16Web.Endpoint, # different ports. # Watch static and templates for browser reloading. -config :phx1_6, Phx16Web.Endpoint, +config :phx1_7, Phx17Web.Endpoint, live_reload: [ patterns: [ ~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$", ~r"priv/gettext/.*(po)$", - ~r"lib/phx1_6_web/(live|views)/.*(ex)$", - ~r"lib/phx1_6_web/templates/.*(eex)$" + ~r"lib/phx1_7_web/(controllers|live|components)/.*(ex|heex)$" ] ] +# Enable dev routes for dashboard and mailbox +config :phx1_7, dev_routes: true + # Do not include metadata nor timestamps in development logs config :logger, :console, format: "[$level] $message\n" @@ -72,3 +74,6 @@ config :phoenix, :stacktrace_depth, 20 # Initialize plugs at runtime for faster development compilation config :phoenix, :plug_init_mode, :runtime + +# Disable swoosh api client as it is only required for production adapters. +config :swoosh, :api_client, false diff --git a/test/support/apps/phx1_7/config/prod.exs b/test/support/apps/phx1_7/config/prod.exs new file mode 100644 index 00000000..3cc52c79 --- /dev/null +++ b/test/support/apps/phx1_7/config/prod.exs @@ -0,0 +1,21 @@ +import Config + +# For production, don't forget to configure the url host +# to something meaningful, Phoenix uses this information +# when generating URLs. + +# Note we also include the path to a cache manifest +# containing the digested version of static files. This +# manifest is generated by the `mix phx.digest` task, +# which you should run after static files are built and +# before starting your production server. +config :phx1_7, Phx17Web.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" + +# Configures Swoosh API Client +config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: Phx17.Finch + +# Do not print debug messages in production +config :logger, level: :info + +# Runtime production configuration, including reading +# of environment variables, is done on config/runtime.exs. diff --git a/test/support/apps/phx1_6/config/runtime.exs b/test/support/apps/phx1_7/config/runtime.exs similarity index 58% rename from test/support/apps/phx1_6/config/runtime.exs rename to test/support/apps/phx1_7/config/runtime.exs index 54af96ad..7cfe2162 100644 --- a/test/support/apps/phx1_6/config/runtime.exs +++ b/test/support/apps/phx1_7/config/runtime.exs @@ -7,9 +7,17 @@ import Config # any compile-time configuration in here, as it won't be applied. # The block below contains prod specific runtime configuration. -# Start the phoenix server if environment is set and running in a release -if System.get_env("PHX_SERVER") && System.get_env("RELEASE_NAME") do - config :phx1_6, Phx16Web.Endpoint, server: true +# ## Using releases +# +# If you use `mix release`, you need to explicitly enable the server +# by passing the PHX_SERVER=true when you start it: +# +# PHX_SERVER=true bin/phx1_7 start +# +# Alternatively, you can use `mix phx.gen.release` to generate a `bin/server` +# script that automatically sets the env var above. +if System.get_env("PHX_SERVER") do + config :phx1_7, Phx17Web.Endpoint, server: true end if config_env() == :prod do @@ -20,9 +28,9 @@ if config_env() == :prod do For example: ecto://USER:PASS@HOST/DATABASE """ - maybe_ipv6 = if System.get_env("ECTO_IPV6"), do: [:inet6], else: [] + maybe_ipv6 = if System.get_env("ECTO_IPV6") in ~w(true 1), do: [:inet6], else: [] - config :phx1_6, Phx16.Repo, + config :phx1_7, Phx17.Repo, # ssl: true, url: database_url, pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"), @@ -43,8 +51,8 @@ if config_env() == :prod do host = System.get_env("PHX_HOST") || "example.com" port = String.to_integer(System.get_env("PORT") || "4000") - config :phx1_6, Phx16Web.Endpoint, - url: [host: host, port: 443], + config :phx1_7, Phx17Web.Endpoint, + url: [host: host, port: 443, scheme: "https"], http: [ # Enable IPv6 and bind on all interfaces. # Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access. @@ -55,15 +63,37 @@ if config_env() == :prod do ], secret_key_base: secret_key_base - # ## Using releases + # ## SSL Support # - # If you are doing OTP releases, you need to instruct Phoenix - # to start each relevant endpoint: + # To get SSL working, you will need to add the `https` key + # to your endpoint configuration: # - # config :phx1_6, Phx16Web.Endpoint, server: true + # config :phx1_7, Phx17Web.Endpoint, + # https: [ + # ..., + # port: 443, + # cipher_suite: :strong, + # keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), + # certfile: System.get_env("SOME_APP_SSL_CERT_PATH") + # ] # - # Then you can assemble a release by calling `mix release`. - # See `mix help release` for more information. + # The `cipher_suite` is set to `:strong` to support only the + # latest and more secure SSL ciphers. This means old browsers + # and clients may not be supported. You can set it to + # `:compatible` for wider support. + # + # `:keyfile` and `:certfile` expect an absolute path to the key + # and cert in disk or a relative path inside priv, for example + # "priv/ssl/server.key". For all supported SSL configuration + # options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1 + # + # We also recommend setting `force_ssl` in your endpoint, ensuring + # no data is ever sent via http, always redirecting to https: + # + # config :phx1_7, Phx17Web.Endpoint, + # force_ssl: [hsts: true] + # + # Check `Plug.SSL` for all available options in `force_ssl`. # ## Configuring the mailer # @@ -71,7 +101,7 @@ if config_env() == :prod do # Also, you may need to configure the Swoosh API client of your choice if you # are not using SMTP. Here is an example of the configuration: # - # config :phx1_6, Phx16.Mailer, + # config :phx1_7, Phx17.Mailer, # adapter: Swoosh.Adapters.Mailgun, # api_key: System.get_env("MAILGUN_API_KEY"), # domain: System.get_env("MAILGUN_DOMAIN") diff --git a/test/support/apps/phx1_6/config/test.exs b/test/support/apps/phx1_7/config/test.exs similarity index 54% rename from test/support/apps/phx1_6/config/test.exs rename to test/support/apps/phx1_7/config/test.exs index 3a3562d0..0aa0ea3a 100644 --- a/test/support/apps/phx1_6/config/test.exs +++ b/test/support/apps/phx1_7/config/test.exs @@ -1,33 +1,33 @@ import Config # Configure your database -{whoami, _} = System.cmd("whoami", []) -whoami = String.replace(whoami, "\n", "") - # # The MIX_TEST_PARTITION environment variable can be used # to provide built-in test partitioning in CI environment. # Run `mix help test` for more information. -config :phx1_6, Phx16.Repo, - username: System.get_env("DATABASE_POSTGRESQL_USERNAME") || whoami, - password: System.get_env("DATABASE_POSTGRESQL_PASSWORD") || "", +config :phx1_7, Phx17.Repo, + username: "postgres", + password: "postgres", hostname: "localhost", - database: "phx1_6_test#{System.get_env("MIX_TEST_PARTITION")}", + database: "phx1_7_test#{System.get_env("MIX_TEST_PARTITION")}", pool: Ecto.Adapters.SQL.Sandbox, pool_size: 10 # We don't run a server during test. If one is required, # you can enable the server option below. -config :phx1_6, Phx16Web.Endpoint, +config :phx1_7, Phx17Web.Endpoint, http: [ip: {127, 0, 0, 1}, port: 4002], - secret_key_base: "793gV450djDXzpJmfcdfZ8QcnCYMT3KksZy6/TfFq0XTkg5CyobI4GznSK5gHtee", + secret_key_base: "uYFVmobYDpSImRi+J3xTBoQkUKiSXLdFIKocI31psYeQna4iIaluILDsjFYa56h6", server: false # In test we don't send emails. -config :phx1_6, Phx16.Mailer, adapter: Swoosh.Adapters.Test +config :phx1_7, Phx17.Mailer, adapter: Swoosh.Adapters.Test + +# Disable swoosh api client as it is only required for production adapters. +config :swoosh, :api_client, false # Print only warnings and errors during test -config :logger, level: :warn +config :logger, level: :warning # Initialize plugs at runtime for faster test compilation config :phoenix, :plug_init_mode, :runtime diff --git a/test/support/apps/phx1_6/lib/phx1_6.ex b/test/support/apps/phx1_7/lib/phx1_7.ex similarity index 71% rename from test/support/apps/phx1_6/lib/phx1_6.ex rename to test/support/apps/phx1_7/lib/phx1_7.ex index d531f766..d0c89c93 100644 --- a/test/support/apps/phx1_6/lib/phx1_6.ex +++ b/test/support/apps/phx1_7/lib/phx1_7.ex @@ -1,6 +1,6 @@ -defmodule Phx16 do +defmodule Phx17 do @moduledoc """ - Phx16 keeps the contexts that define your domain + Phx17 keeps the contexts that define your domain and business logic. Contexts are also responsible for managing your data, regardless diff --git a/test/support/apps/phx1_6/lib/phx1_6/application.ex b/test/support/apps/phx1_7/lib/phx1_7/application.ex similarity index 62% rename from test/support/apps/phx1_6/lib/phx1_6/application.ex rename to test/support/apps/phx1_7/lib/phx1_7/application.ex index ff5297df..667cb481 100644 --- a/test/support/apps/phx1_6/lib/phx1_6/application.ex +++ b/test/support/apps/phx1_7/lib/phx1_7/application.ex @@ -1,4 +1,4 @@ -defmodule Phx16.Application do +defmodule Phx17.Application do # See https://hexdocs.pm/elixir/Application.html # for more information on OTP Applications @moduledoc false @@ -8,21 +8,23 @@ defmodule Phx16.Application do @impl true def start(_type, _args) do children = [ - # Start the Ecto repository - Phx16.Repo, # Start the Telemetry supervisor - Phx16Web.Telemetry, + Phx17Web.Telemetry, + # Start the Ecto repository + Phx17.Repo, # Start the PubSub system - {Phoenix.PubSub, name: Phx16.PubSub}, + {Phoenix.PubSub, name: Phx17.PubSub}, + # Start Finch + {Finch, name: Phx17.Finch}, # Start the Endpoint (http/https) - Phx16Web.Endpoint - # Start a worker by calling: Phx16.Worker.start_link(arg) - # {Phx16.Worker, arg} + Phx17Web.Endpoint + # Start a worker by calling: Phx17.Worker.start_link(arg) + # {Phx17.Worker, arg} ] # See https://hexdocs.pm/elixir/Supervisor.html # for other strategies and supported options - opts = [strategy: :one_for_one, name: Phx16.Supervisor] + opts = [strategy: :one_for_one, name: Phx17.Supervisor] Supervisor.start_link(children, opts) end @@ -30,7 +32,7 @@ defmodule Phx16.Application do # whenever the application is updated. @impl true def config_change(changed, _new, removed) do - Phx16Web.Endpoint.config_change(changed, removed) + Phx17Web.Endpoint.config_change(changed, removed) :ok end end diff --git a/test/support/apps/phx1_7/lib/phx1_7/mailer.ex b/test/support/apps/phx1_7/lib/phx1_7/mailer.ex new file mode 100644 index 00000000..7e847e2e --- /dev/null +++ b/test/support/apps/phx1_7/lib/phx1_7/mailer.ex @@ -0,0 +1,3 @@ +defmodule Phx17.Mailer do + use Swoosh.Mailer, otp_app: :phx1_7 +end diff --git a/test/support/apps/phx1_6/lib/phx1_6/repo.ex b/test/support/apps/phx1_7/lib/phx1_7/repo.ex similarity index 55% rename from test/support/apps/phx1_6/lib/phx1_6/repo.ex rename to test/support/apps/phx1_7/lib/phx1_7/repo.ex index 307b0aa2..1dde45a3 100644 --- a/test/support/apps/phx1_6/lib/phx1_6/repo.ex +++ b/test/support/apps/phx1_7/lib/phx1_7/repo.ex @@ -1,5 +1,5 @@ -defmodule Phx16.Repo do +defmodule Phx17.Repo do use Ecto.Repo, - otp_app: :phx1_6, + otp_app: :phx1_7, adapter: Ecto.Adapters.Postgres end diff --git a/test/support/apps/phx1_7/lib/phx1_7_web.ex b/test/support/apps/phx1_7/lib/phx1_7_web.ex new file mode 100644 index 00000000..2e0cb9c9 --- /dev/null +++ b/test/support/apps/phx1_7/lib/phx1_7_web.ex @@ -0,0 +1,113 @@ +defmodule Phx17Web do + @moduledoc """ + The entrypoint for defining your web interface, such + as controllers, components, channels, and so on. + + This can be used in your application as: + + use Phx17Web, :controller + use Phx17Web, :html + + The definitions below will be executed for every controller, + component, etc, so keep them short and clean, focused + on imports, uses and aliases. + + Do NOT define functions inside the quoted expressions + below. Instead, define additional modules and import + those modules here. + """ + + def static_paths, do: ~w(assets fonts images favicon.ico robots.txt) + + def router do + quote do + use Phoenix.Router, helpers: false + + # Import common connection and controller functions to use in pipelines + import Plug.Conn + import Phoenix.Controller + import Phoenix.LiveView.Router + end + end + + def channel do + quote do + use Phoenix.Channel + end + end + + def controller do + quote do + use Phoenix.Controller, + formats: [:html, :json], + layouts: [html: Phx17Web.Layouts] + + import Plug.Conn + import Phx17Web.Gettext + + unquote(verified_routes()) + end + end + + def live_view do + quote do + use Phoenix.LiveView, + layout: {Phx17Web.Layouts, :app} + + unquote(html_helpers()) + end + end + + def live_component do + quote do + use Phoenix.LiveComponent + + unquote(html_helpers()) + end + end + + def html do + quote do + use Phoenix.Component + + # Import convenience functions from controllers + import Phoenix.Controller, + only: [get_csrf_token: 0, view_module: 1, view_template: 1] + + # Include general helpers for rendering HTML + unquote(html_helpers()) + end + end + + defp html_helpers do + quote do + # HTML escaping functionality + import Phoenix.HTML + # Core UI components and translation + import Phx17Web.CoreComponents + import Phx17Web.Gettext + + # Shortcut for generating JS commands + alias Phoenix.LiveView.JS + + # Routes generation with the ~p sigil + unquote(verified_routes()) + end + end + + def verified_routes do + quote do + use Phoenix.VerifiedRoutes, + endpoint: Phx17Web.Endpoint, + router: Phx17Web.Router, + statics: Phx17Web.static_paths() + end + end + + @doc """ + When used, dispatch to the appropriate controller/view/etc. + """ + defmacro __using__(which) when is_atom(which) do + apply(__MODULE__, which, []) + end +end diff --git a/test/support/apps/phx1_7/lib/phx1_7_web/components/core_components.ex b/test/support/apps/phx1_7/lib/phx1_7_web/components/core_components.ex new file mode 100644 index 00000000..c931cd93 --- /dev/null +++ b/test/support/apps/phx1_7/lib/phx1_7_web/components/core_components.ex @@ -0,0 +1,661 @@ +defmodule Phx17Web.CoreComponents do + @moduledoc """ + Provides core UI components. + + The components in this module use Tailwind CSS, a utility-first CSS framework. + See the [Tailwind CSS documentation](https://tailwindcss.com) to learn how to + customize the generated components in this module. + + Icons are provided by [heroicons](https://heroicons.com), using the + [heroicons_elixir](https://github.com/mveytsman/heroicons_elixir) project. + """ + use Phoenix.Component + + alias Phoenix.LiveView.JS + import Phx17Web.Gettext + + @doc """ + Renders a modal. + + ## Examples + + <.modal id="confirm-modal"> + Are you sure? + <:confirm>OK + <:cancel>Cancel + + + JS commands may be passed to the `:on_cancel` and `on_confirm` attributes + for the caller to react to each button press, for example: + + <.modal id="confirm" on_confirm={JS.push("delete")} on_cancel={JS.navigate(~p"/posts")}> + Are you sure you? + <:confirm>OK + <:cancel>Cancel + + """ + attr :id, :string, required: true + attr :show, :boolean, default: false + attr :on_cancel, JS, default: %JS{} + attr :on_confirm, JS, default: %JS{} + + slot :inner_block, required: true + slot :title + slot :subtitle + slot :confirm + slot :cancel + + def modal(assigns) do + ~H""" +