Working basic frontend implementation
This commit is contained in:
@@ -1,86 +1,214 @@
|
|||||||
import React, { useEffect } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { createRoot } from "react-dom/client";
|
import { createRoot } from "react-dom/client";
|
||||||
import { initLandingPage } from "./animation";
|
import {
|
||||||
|
readTweet,
|
||||||
|
createTweet,
|
||||||
|
destroyTweet,
|
||||||
|
buildCSRFHeaders,
|
||||||
|
} from "./ash_rpc";
|
||||||
|
|
||||||
|
type Tweet = {
|
||||||
|
id: string;
|
||||||
|
content: string;
|
||||||
|
userId: string;
|
||||||
|
state: "posted" | "drafted";
|
||||||
|
};
|
||||||
|
|
||||||
|
function TweetCompose({ onPosted }: { onPosted: (tweet: Tweet) => void }) {
|
||||||
|
const [content, setContent] = useState("");
|
||||||
|
const [submitting, setSubmitting] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
async function handleSubmit(e: React.FormEvent) {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!content.trim()) return;
|
||||||
|
setSubmitting(true);
|
||||||
|
setError(null);
|
||||||
|
const result = await createTweet({
|
||||||
|
input: { content: content.trim() },
|
||||||
|
fields: ["id", "content", "userId", "state"],
|
||||||
|
headers: buildCSRFHeaders(),
|
||||||
|
});
|
||||||
|
setSubmitting(false);
|
||||||
|
if (result.success) {
|
||||||
|
onPosted(result.data as Tweet);
|
||||||
|
setContent("");
|
||||||
|
} else {
|
||||||
|
setError(result.errors.map((e) => e.message).join(", "));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<form onSubmit={handleSubmit} className="card bg-base-200 p-4 mb-6">
|
||||||
|
<textarea
|
||||||
|
className="textarea textarea-bordered w-full mb-3 resize-none"
|
||||||
|
rows={3}
|
||||||
|
placeholder="What's happening?"
|
||||||
|
value={content}
|
||||||
|
maxLength={280}
|
||||||
|
onChange={(e) => setContent(e.target.value)}
|
||||||
|
/>
|
||||||
|
{error && <p className="text-error text-sm mb-2">{error}</p>}
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<span className="text-sm opacity-50">{content.length}/280</span>
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
className="btn btn-primary btn-sm"
|
||||||
|
disabled={submitting || !content.trim()}
|
||||||
|
>
|
||||||
|
{submitting ? "Posting..." : "Post"}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function TweetCard({
|
||||||
|
tweet,
|
||||||
|
currentUserEmail,
|
||||||
|
onDeleted,
|
||||||
|
}: {
|
||||||
|
tweet: Tweet;
|
||||||
|
currentUserEmail: string;
|
||||||
|
onDeleted: (id: string) => void;
|
||||||
|
}) {
|
||||||
|
const [deleting, setDeleting] = useState(false);
|
||||||
|
|
||||||
|
async function handleDelete() {
|
||||||
|
setDeleting(true);
|
||||||
|
const result = await destroyTweet({
|
||||||
|
identity: tweet.id,
|
||||||
|
headers: buildCSRFHeaders(),
|
||||||
|
});
|
||||||
|
if (result.success) {
|
||||||
|
onDeleted(tweet.id);
|
||||||
|
} else {
|
||||||
|
setDeleting(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="card bg-base-200 mb-3 p-4">
|
||||||
|
<p className="text-base-content whitespace-pre-wrap break-words">
|
||||||
|
{tweet.content}
|
||||||
|
</p>
|
||||||
|
<div className="flex items-center justify-between mt-3">
|
||||||
|
<span className="text-xs opacity-40 font-mono">
|
||||||
|
{tweet.userId.slice(0, 8)}…
|
||||||
|
</span>
|
||||||
|
{currentUserEmail && (
|
||||||
|
<button
|
||||||
|
className="btn btn-ghost btn-xs text-error"
|
||||||
|
onClick={handleDelete}
|
||||||
|
disabled={deleting}
|
||||||
|
>
|
||||||
|
{deleting ? "…" : "Delete"}
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function TweetFeed({
|
||||||
|
tweets,
|
||||||
|
currentUserEmail,
|
||||||
|
onDeleted,
|
||||||
|
}: {
|
||||||
|
tweets: Tweet[];
|
||||||
|
currentUserEmail: string;
|
||||||
|
onDeleted: (id: string) => void;
|
||||||
|
}) {
|
||||||
|
if (tweets.length === 0) {
|
||||||
|
return (
|
||||||
|
<p className="text-center opacity-40 py-12">
|
||||||
|
No tweets yet. Be the first!
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{tweets.map((tweet) => (
|
||||||
|
<TweetCard
|
||||||
|
key={tweet.id}
|
||||||
|
tweet={tweet}
|
||||||
|
currentUserEmail={currentUserEmail}
|
||||||
|
onDeleted={onDeleted}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
|
const appEl = document.getElementById("app")!;
|
||||||
|
const currentUserEmail = appEl.dataset.currentUserEmail ?? "";
|
||||||
|
|
||||||
|
const [tweets, setTweets] = useState<Tweet[]>([]);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const el = document.getElementById("animation-container");
|
readTweet({ fields: ["id", "content", "userId", "state"] }).then(
|
||||||
if (el) return initLandingPage(el);
|
(result) => {
|
||||||
|
if (result.success) {
|
||||||
|
const data = result.data;
|
||||||
|
const list: Tweet[] = Array.isArray(data)
|
||||||
|
? (data as Tweet[]).slice().reverse()
|
||||||
|
: (data as any).results
|
||||||
|
? ((data as any).results as Tweet[]).slice().reverse()
|
||||||
|
: [];
|
||||||
|
setTweets(list);
|
||||||
|
}
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
);
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
function handlePosted(tweet: Tweet) {
|
||||||
|
setTweets((prev) => [tweet, ...prev]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleDeleted(id: string) {
|
||||||
|
setTweets((prev) => prev.filter((t) => t.id !== id));
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-base-100 text-base-content">
|
<div className="min-h-screen bg-base-100 text-base-content">
|
||||||
<div className="max-w-5xl mx-auto px-6 py-12">
|
<div className="max-w-xl mx-auto px-4 py-8">
|
||||||
<div className="flex items-center gap-5 mb-8">
|
<div className="flex items-center justify-between mb-6">
|
||||||
<img
|
<h1 className="text-2xl font-bold">Mixer Feed</h1>
|
||||||
src="https://raw.githubusercontent.com/ash-project/ash_typescript/main/logos/ash-typescript.png"
|
{currentUserEmail ? (
|
||||||
alt="AshTypescript"
|
<div className="flex items-center gap-3">
|
||||||
className="w-16 h-16"
|
<span className="text-sm opacity-60">{currentUserEmail}</span>
|
||||||
/>
|
<a href="/auth/sign-out" className="btn btn-ghost btn-sm">
|
||||||
<div>
|
Sign out
|
||||||
<h1 className="text-4xl font-bold">AshTypescript</h1>
|
</a>
|
||||||
<p className="text-lg opacity-70">End-to-end type safety from Ash to TypeScript</p>
|
</div>
|
||||||
</div>
|
) : (
|
||||||
|
<a href="/register" className="btn btn-primary btn-sm">
|
||||||
|
Sign in
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section className="mb-10">
|
{currentUserEmail && <TweetCompose onPosted={handlePosted} />}
|
||||||
<div className="flex flex-wrap items-center gap-3 mb-5">
|
|
||||||
<h2 className="text-2xl font-bold">Main Features</h2>
|
|
||||||
<div className="flex-1"></div>
|
|
||||||
<a href="https://hexdocs.pm/ash_typescript" target="_blank" rel="noopener noreferrer" className="btn btn-primary btn-sm">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" className="w-4 h-4" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg>
|
|
||||||
Docs
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/ash-project/ash_typescript" target="_blank" rel="noopener noreferrer" className="btn btn-ghost btn-sm">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" className="w-4 h-4" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
|
|
||||||
GitHub
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-3">
|
|
||||||
<a href="https://hexdocs.pm/ash_typescript/first-rpc-action.html" target="_blank" rel="noopener noreferrer" className="card bg-base-200 hover:bg-base-300 transition-colors cursor-pointer">
|
|
||||||
<div className="card-body">
|
|
||||||
<h3 className="card-title text-base">Type-Safe RPC</h3>
|
|
||||||
<p className="text-sm opacity-70">Auto-generated typed functions for every Ash action.</p>
|
|
||||||
<div className="text-sm text-primary mt-1">View docs →</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://hexdocs.pm/ash_typescript/typed-controllers.html" target="_blank" rel="noopener noreferrer" className="card bg-base-200 hover:bg-base-300 transition-colors cursor-pointer">
|
{loading ? (
|
||||||
<div className="card-body">
|
<p className="text-center opacity-40 py-12">Loading…</p>
|
||||||
<h3 className="card-title text-base">Typed Controllers</h3>
|
) : (
|
||||||
<p className="text-sm opacity-70">Typed route helpers for Phoenix controllers.</p>
|
<TweetFeed
|
||||||
<div className="text-sm text-primary mt-1">View docs →</div>
|
tweets={tweets}
|
||||||
</div>
|
currentUserEmail={currentUserEmail}
|
||||||
</a>
|
onDeleted={handleDeleted}
|
||||||
|
/>
|
||||||
<a href="https://hexdocs.pm/ash_typescript/typed-channels.html" target="_blank" rel="noopener noreferrer" className="card bg-base-200 hover:bg-base-300 transition-colors cursor-pointer">
|
)}
|
||||||
<div className="card-body">
|
|
||||||
<h3 className="card-title text-base">Typed Channels</h3>
|
|
||||||
<p className="text-sm opacity-70">Typed event subscriptions for Phoenix channels.</p>
|
|
||||||
<div className="text-sm text-primary mt-1">View docs →</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://hexdocs.pm/ash_typescript/form-validation.html" target="_blank" rel="noopener noreferrer" className="card bg-base-200 hover:bg-base-300 transition-colors cursor-pointer">
|
|
||||||
<div className="card-body">
|
|
||||||
<h3 className="card-title text-base">Zod Validation</h3>
|
|
||||||
<p className="text-sm opacity-70">Generated Zod schemas for form validation.</p>
|
|
||||||
<div className="text-sm text-primary mt-1">View docs →</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div id="animation-container"></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
createRoot(document.getElementById("app")!).render(
|
createRoot(document.getElementById("app")!).render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<App />
|
<App />
|
||||||
</React.StrictMode>,
|
</React.StrictMode>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -303,6 +303,8 @@ defmodule Mixer.Accounts.User do
|
|||||||
has_many :valid_api_keys, Mixer.Accounts.ApiKey do
|
has_many :valid_api_keys, Mixer.Accounts.ApiKey do
|
||||||
filter expr(valid)
|
filter expr(valid)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
has_many :tweets, Mixer.Posts.Tweet
|
||||||
end
|
end
|
||||||
|
|
||||||
identities do
|
identities do
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ defmodule Mixer.Posts.Tweet do
|
|||||||
end
|
end
|
||||||
|
|
||||||
state_machine do
|
state_machine do
|
||||||
initial_states [:drafted]
|
initial_states [:drafted, :posted]
|
||||||
default_initial_state :drafted
|
default_initial_state :drafted
|
||||||
|
|
||||||
transitions do
|
transitions do
|
||||||
@@ -57,4 +57,18 @@ defmodule Mixer.Posts.Tweet do
|
|||||||
public? true
|
public? true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
policies do
|
||||||
|
policy action_type(:read) do
|
||||||
|
authorize_if always()
|
||||||
|
end
|
||||||
|
|
||||||
|
policy action_type(:create) do
|
||||||
|
authorize_if actor_present()
|
||||||
|
end
|
||||||
|
|
||||||
|
policy action_type([:destroy, :update]) do
|
||||||
|
authorize_if relates_to_actor_via(:user)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -5,7 +5,9 @@ defmodule MixerWeb.PageController do
|
|||||||
render(conn, :home)
|
render(conn, :home)
|
||||||
end
|
end
|
||||||
|
|
||||||
def index conn, _params do
|
def index(conn, _params) do
|
||||||
conn |> put_root_layout(html: {MixerWeb.Layouts, :spa_root}) |> render(:index)
|
conn
|
||||||
|
|> put_root_layout(html: {MixerWeb.Layouts, :spa_root})
|
||||||
|
|> render(:index, current_user: conn.assigns[:current_user])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1 +1,4 @@
|
|||||||
<div id="app"></div>
|
<div id="app"
|
||||||
|
data-current-user-id={if @current_user, do: @current_user.id, else: ""}
|
||||||
|
data-current-user-email={if @current_user, do: @current_user.email, else: ""}>
|
||||||
|
</div>
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ defmodule MixerWeb.Router do
|
|||||||
plug :protect_from_forgery
|
plug :protect_from_forgery
|
||||||
plug :put_secure_browser_headers
|
plug :put_secure_browser_headers
|
||||||
plug :load_from_session
|
plug :load_from_session
|
||||||
|
plug :set_actor, :user
|
||||||
end
|
end
|
||||||
|
|
||||||
pipeline :api do
|
pipeline :api do
|
||||||
|
|||||||
Reference in New Issue
Block a user