add make test and Remove vue-cli serve
This commit is contained in:
parent
e1e410d595
commit
ff7fd460f0
3
Makefile
3
Makefile
@ -11,9 +11,6 @@ stop:
|
||||
docker-compose down
|
||||
@bash docker/message.sh "stopped"
|
||||
test: stop
|
||||
@bash docker/message.sh "Building front"
|
||||
docker-compose -f docker-compose.yml -f docker-compose.test.yml run front yarn run build
|
||||
@bash docker/message.sh "Front built"
|
||||
@bash docker/message.sh "Running tests"
|
||||
docker-compose -f docker-compose.yml -f docker-compose.test.yml run api mix test
|
||||
@bash docker/message.sh "Tests runned"
|
||||
|
@ -17,7 +17,9 @@ config :mobilizon, MobilizonWeb.Endpoint,
|
||||
debug_errors: true,
|
||||
code_reloader: true,
|
||||
check_origin: false,
|
||||
watchers: []
|
||||
watchers: [
|
||||
yarn: ["run", "dev", cd: Path.expand("../js", __DIR__)]
|
||||
]
|
||||
|
||||
# ## SSL Support
|
||||
#
|
||||
|
@ -5,13 +5,12 @@ services:
|
||||
restart: "no"
|
||||
environment:
|
||||
POSTGRES_DB: mobilizon_test
|
||||
front:
|
||||
restart: "no"
|
||||
api:
|
||||
restart: "no"
|
||||
environment:
|
||||
MIX_ENV: "test"
|
||||
MOBILIZON_DATABASE_DBNAME: mobilizon_test
|
||||
MOBILIZON_INSTANCE_HOST: mobilizon.test
|
||||
command: "mix test"
|
||||
volumes:
|
||||
pgdata:
|
||||
|
@ -10,18 +10,6 @@ services:
|
||||
POSTGRES_DB: mobilizon_dev
|
||||
volumes:
|
||||
- pgdata:/var/lib/postgresql/data
|
||||
|
||||
|
||||
front:
|
||||
container_name: mobilizon_front
|
||||
restart: unless-stopped
|
||||
build: ./js
|
||||
volumes:
|
||||
- '.:/app'
|
||||
ports:
|
||||
- "8888:8080"
|
||||
command: yarn run dev
|
||||
|
||||
api:
|
||||
container_name: mobilizon_api
|
||||
restart: unless-stopped
|
||||
@ -32,13 +20,12 @@ services:
|
||||
- "4000:4001"
|
||||
depends_on:
|
||||
- postgres
|
||||
- front
|
||||
environment:
|
||||
MIX_ENV: "dev"
|
||||
MOBILIZON_INSTANCE_NAME: My Mobilizon Instance
|
||||
MOBILIZON_INSTANCE_HOST: mobilizon.me
|
||||
MOBILIZON_INSTANCE_EMAIL: noreply@mobilizon.me
|
||||
MOBILIZON_INSTANCE_REGISTRATIONS_OPEN: "false"
|
||||
MOBILIZON_INSTANCE_REGISTRATIONS_OPEN: "true"
|
||||
MOBILIZON_DATABASE_PASSWORD: postgres
|
||||
MOBILIZON_DATABASE_USERNAME: postgres
|
||||
MOBILIZON_DATABASE_DBNAME: mobilizon_dev
|
||||
|
@ -1,10 +0,0 @@
|
||||
FROM node:10
|
||||
|
||||
LABEL maintainer="tcit"
|
||||
|
||||
RUN yarn install
|
||||
RUN yarn upgrade node-sass
|
||||
|
||||
WORKDIR /app/js
|
||||
|
||||
EXPOSE 8080
|
@ -6,7 +6,7 @@
|
||||
"build": "vue-cli-service build",
|
||||
"lint": "vue-cli-service lint",
|
||||
"analyze-bundle": "yarn run build -- --report-json && webpack-bundle-analyzer ../priv/static/report.json",
|
||||
"dev": "vue-cli-service serve",
|
||||
"dev": "vue-cli-service build --watch",
|
||||
"test:e2e": "vue-cli-service test:e2e",
|
||||
"test:unit": "vue-cli-service test:unit",
|
||||
"prepare": "patch-package"
|
||||
|
@ -4,7 +4,7 @@ const path = require('path');
|
||||
module.exports = {
|
||||
lintOnSave: false,
|
||||
runtimeCompiler: true,
|
||||
outputDir: '../priv/static',
|
||||
outputDir: '../priv/static/js',
|
||||
configureWebpack: {
|
||||
plugins: [
|
||||
new Dotenv({ path: path.resolve(process.cwd(), '../.env') }),
|
||||
@ -18,6 +18,9 @@ module.exports = {
|
||||
},
|
||||
],
|
||||
},
|
||||
output: {
|
||||
filename: 'app.js'
|
||||
}
|
||||
},
|
||||
chainWebpack: config => {
|
||||
config
|
||||
|
@ -3,19 +3,15 @@ defmodule MobilizonWeb.PageController do
|
||||
Controller to load our webapp
|
||||
"""
|
||||
use MobilizonWeb, :controller
|
||||
alias Mobilizon.Service.Metadata
|
||||
alias Mobilizon.Actors
|
||||
alias Mobilizon.Actors.Actor
|
||||
alias Mobilizon.Events
|
||||
alias Mobilizon.Events.{Event, Comment}
|
||||
|
||||
plug(:put_layout, false)
|
||||
action_fallback(MobilizonWeb.FallbackController)
|
||||
|
||||
def index(conn, _params) do
|
||||
conn
|
||||
|> put_resp_content_type("text/html")
|
||||
|> send_file(200, "priv/static/index.html")
|
||||
render conn, "app.html"
|
||||
end
|
||||
|
||||
def actor(conn, %{"name" => name}) do
|
||||
@ -77,16 +73,6 @@ defmodule MobilizonWeb.PageController do
|
||||
|
||||
# Inject OpenGraph information
|
||||
defp render_with_meta(conn, object) do
|
||||
{:ok, index_content} = File.read(index_file_path())
|
||||
tags = Metadata.build_tags(object)
|
||||
response = String.replace(index_content, "<!--server-generated-meta-->", tags)
|
||||
|
||||
conn
|
||||
|> put_resp_content_type("text/html")
|
||||
|> send_resp(200, response)
|
||||
end
|
||||
|
||||
defp index_file_path() do
|
||||
Path.join(Application.app_dir(:mobilizon, "priv/static/"), "index.html")
|
||||
render conn, "app.html", object: object
|
||||
end
|
||||
end
|
||||
|
@ -21,7 +21,7 @@ defmodule MobilizonWeb.Endpoint do
|
||||
at: "/",
|
||||
from: :mobilizon,
|
||||
gzip: false,
|
||||
only: ~w(css fonts images js favicon.ico robots.txt index.html)
|
||||
only: ~w(css fonts images js favicon.ico robots.txt)
|
||||
)
|
||||
|
||||
# Code reloading can be explicitly enabled under the
|
||||
|
23
lib/mobilizon_web/templates/layout/app.html.eex
Normal file
23
lib/mobilizon_web/templates/layout/app.html.eex
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="has-navbar-fixed-top">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= static_path(@conn, "/js/favicon.ico") %>">
|
||||
<link rel="stylesheet" href="//cdn.materialdesignicons.com/3.5.95/css/materialdesignicons.min.css">
|
||||
<title>mobilizon</title>
|
||||
<%= if assigns[:object], do: Metadata.build_tags(@object) %>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but mobilizon doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script src="<%= static_path(@conn, "/js/app.js") %>"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
5
lib/mobilizon_web/views/layout_view.ex
Normal file
5
lib/mobilizon_web/views/layout_view.ex
Normal file
@ -0,0 +1,5 @@
|
||||
defmodule MobilizonWeb.LayoutView do
|
||||
use MobilizonWeb, :view
|
||||
alias Mobilizon.Service.Metadata
|
||||
|
||||
end
|
@ -1,17 +1,8 @@
|
||||
defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do
|
||||
alias Phoenix.HTML
|
||||
alias Phoenix.HTML.Tag
|
||||
alias Mobilizon.Actors.Actor
|
||||
require Logger
|
||||
|
||||
def build_tags(%Actor{} = actor) do
|
||||
actor
|
||||
|> do_build_tags()
|
||||
|> Enum.map(&HTML.safe_to_string/1)
|
||||
|> Enum.reduce("", fn tag, acc -> acc <> tag end)
|
||||
end
|
||||
|
||||
defp do_build_tags(%Actor{} = actor) do
|
||||
[
|
||||
Tag.tag(:meta, property: "og:title", content: Actor.display_name_and_username(actor)),
|
||||
Tag.tag(:meta, property: "og:url", content: actor.url),
|
||||
|
@ -4,13 +4,6 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Events.Comment do
|
||||
alias Mobilizon.Events.Comment
|
||||
|
||||
def build_tags(%Comment{} = comment) do
|
||||
comment
|
||||
|> do_build_tags()
|
||||
|> Enum.map(&HTML.safe_to_string/1)
|
||||
|> Enum.reduce("", fn tag, acc -> acc <> tag end)
|
||||
end
|
||||
|
||||
defp do_build_tags(%Comment{} = comment) do
|
||||
[
|
||||
Tag.tag(:meta, property: "og:title", content: comment.actor.preferred_username),
|
||||
Tag.tag(:meta, property: "og:url", content: comment.url),
|
||||
|
@ -5,15 +5,6 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Events.Event do
|
||||
alias MobilizonWeb.JsonLD.ObjectView
|
||||
|
||||
def build_tags(%Event{} = event) do
|
||||
event
|
||||
|> do_build_tags()
|
||||
|> Enum.map(&HTML.safe_to_string/1)
|
||||
|> Enum.reduce("", fn tag, acc -> acc <> tag end)
|
||||
|> Kernel.<>(build_json_ld_schema(event))
|
||||
end
|
||||
|
||||
# Build OpenGraph & Twitter Tags
|
||||
defp do_build_tags(%Event{} = event) do
|
||||
[
|
||||
Tag.tag(:meta, property: "og:title", content: event.title),
|
||||
Tag.tag(:meta, property: "og:url", content: event.url),
|
||||
@ -21,14 +12,15 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Events.Event do
|
||||
Tag.tag(:meta, property: "og:type", content: "website"),
|
||||
Tag.tag(:meta, property: "og:image", content: event.thumbnail),
|
||||
Tag.tag(:meta, property: "og:image", content: event.large_image),
|
||||
Tag.tag(:meta, property: "twitter:card", content: "summary_large_image")
|
||||
Tag.tag(:meta, property: "twitter:card", content: "summary_large_image"),
|
||||
~s{<script type="application/ld+json">#{json(event)}</script>} |> HTML.raw()
|
||||
]
|
||||
end
|
||||
|
||||
# Insert JSON-LD schema by hand because Tag.content_tag wants to escape it
|
||||
defp build_json_ld_schema(%Event{} = event) do
|
||||
"<script type=\"application\/ld+json\">" <>
|
||||
(ObjectView.render("event.json", %{event: event})
|
||||
|> Jason.encode!()) <> "</script>"
|
||||
defp json(%Event{} = event) do
|
||||
"event.json"
|
||||
|> ObjectView.render(%{event: event})
|
||||
|> Jason.encode!()
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user