summaryrefslogtreecommitdiff
path: root/app/routes/band-new.tsx
blob: 0b7e17fe6057a97a264814527f76f4de1879fec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
import { useState } from "react";
import { Form, Link, redirect, useActionData, useLoaderData } from "react-router";
import type { ActionFunctionArgs } from "react-router";
import { createBand, getIpAddress, listArtists, type MemberInput } from "~/lib/db.server";
import { ARTIST_ROLES, LINK_TYPES } from "~/lib/constants";

export function loader() {
  return { artists: listArtists() };
}

export async function action({ request }: ActionFunctionArgs) {
  const fd = await request.formData();
  const name = (fd.get("name") as string).trim();
  const slug = (fd.get("slug") as string).trim();
  const area = (fd.get("area") as string).trim() || null;
  const description = (fd.get("description") as string).trim() || null;
  const status = (fd.get("status") as string) || "active";
  const message = (fd.get("message") as string).trim();
  const links: { label: string; url: string }[] = JSON.parse(
    (fd.get("links") as string) || "[]"
  );
  const members: MemberInput[] = JSON.parse((fd.get("members") as string) || "[]");

  const errors: Record<string, string> = {};
  if (!name) errors.name = "必須です";
  if (!slug) errors.slug = "必須です";
  if (!message) errors.message = "必須です";
  if (Object.keys(errors).length > 0) return { errors };

  const id = crypto.randomUUID();
  try {
    createBand({ id, slug, name, area, description, status, links, members, message, ip_address: getIpAddress(request) });
  } catch (e) {
    if (e instanceof Error && e.message.includes("UNIQUE constraint failed: bands.slug")) {
      return { errors: { slug: "このslugは既に使用されています" } };
    }
    throw e;
  }
  return redirect(`/bands/of/${id}`);
}

function toSlug(s: string) {
  return s.trim().toLowerCase().replace(/\s+/g, "-").replace(/[^\w぀-ヿ一-鿿＀-￯-]/g, "").replace(/^-+|-+$/g, "");
}

type MemberEntry = {
  key: string;
  artist_id: string;
  artist_name: string;
  roles: string[];
  since: string;
  until: string;
  note: string;
  pendingRole: { type: string; custom: string };
};

const DEFAULT_PENDING = { type: ARTIST_ROLES[0], custom: "" };

export default function BandNew() {
  const { artists } = useLoaderData<typeof loader>();
  const actionData = useActionData<typeof action>();
  const errors = actionData?.errors ?? {};

  const [name, setName] = useState("");
  const [slug, setSlug] = useState("");
  const [slugManual, setSlugManual] = useState(false);
  const [links, setLinks] = useState<{ label: string; url: string }[]>([]);
  const [entries, setEntries] = useState<MemberEntry[]>([]);

  const usedArtistIds = new Set(entries.map((e) => e.artist_id));
  const available = artists.filter((a) => !usedArtistIds.has(a.id));

  const artistIds = [...new Set(entries.map((e) => e.artist_id))];

  function addArtist(artistId: string) {
    const a = artists.find((x) => x.id === artistId);
    if (!a) return;
    setEntries((prev) => [
      ...prev,
      { key: crypto.randomUUID(), artist_id: a.id, artist_name: a.name, roles: [], since: "", until: "", note: "", pendingRole: { ...DEFAULT_PENDING } },
    ]);
  }

  function addPeriod(artistId: string) {
    const ref = entries.find((e) => e.artist_id === artistId);
    if (!ref) return;
    setEntries((prev) => [
      ...prev,
      { key: crypto.randomUUID(), artist_id: ref.artist_id, artist_name: ref.artist_name, roles: [], since: "", until: "", note: "", pendingRole: { ...DEFAULT_PENDING } },
    ]);
  }

  function removeArtist(artistId: string) {
    setEntries((prev) => prev.filter((e) => e.artist_id !== artistId));
  }

  function removeEntry(key: string) {
    setEntries((prev) => prev.filter((e) => e.key !== key));
  }

  function updateEntry<K extends keyof MemberEntry>(key: string, field: K, value: MemberEntry[K]) {
    setEntries((prev) => prev.map((e) => e.key === key ? { ...e, [field]: value } : e));
  }

  function addRole(key: string) {
    const entry = entries.find((e) => e.key === key);
    if (!entry) return;
    const role = entry.pendingRole.type === "other" ? entry.pendingRole.custom.trim() : entry.pendingRole.type;
    if (!role) return;
    setEntries((prev) => prev.map((e) => e.key === key ? { ...e, roles: [...e.roles, role] } : e));
  }

  function removeRole(key: string, idx: number) {
    setEntries((prev) => prev.map((e) => e.key === key ? { ...e, roles: e.roles.filter((_, i) => i !== idx) } : e));
  }

  const serialized: MemberInput[] = entries.map((e) => ({
    artist_id: e.artist_id,
    role: e.roles.join(", ") || null,
    since: e.since,
    until: e.until,
    note: e.note,
  }));

  return (
    <main>
      <div className="page-header">
        <Link to="/" className="back">←</Link>
        <h1>New Band</h1>
      </div>

      <Form method="post">
        <input type="hidden" name="links" value={JSON.stringify(links)} />
        <input type="hidden" name="members" value={JSON.stringify(serialized)} />

        <div>
          <label>バンド名 <span className="req">*</span></label>
          <input
            name="name"
            value={name}
            onChange={(e) => { setName(e.target.value); if (!slugManual) setSlug(toSlug(e.target.value)); }}
          />
          {errors.name && <p className="error">{errors.name}</p>}
        </div>

        <div>
          <label>Slug <span className="req">*</span></label>
          <input
            name="slug"
            value={slug}
            onChange={(e) => { setSlugManual(true); setSlug(e.target.value); }}
            className="mono"
          />
          {errors.slug && <p className="error">{errors.slug}</p>}
        </div>

        <div>
          <label>活動拠点</label>
          <input name="area" />
        </div>

        <div>
          <label>ステータス</label>
          <select name="status" defaultValue="active">
            <option value="active">活動中</option>
            <option value="hiatus">活動休止</option>
            <option value="disbanded">解散</option>
          </select>
        </div>

        <div>
          <label>説明</label>
          <textarea name="description" rows={3} />
        </div>

        <div>
          <label>リンク</label>
          <div className="links-form">
            {links.map((link, i) => (
              <div key={i} className="link-row">
                <select
                  value={link.label}
                  onChange={(e) => setLinks(links.map((l, idx) => idx === i ? { ...l, label: e.target.value } : l))}
                >
                  {LINK_TYPES.map((t) => <option key={t.value} value={t.value}>{t.label}</option>)}
                </select>
                <input
                  value={link.url}
                  onChange={(e) => setLinks(links.map((l, idx) => idx === i ? { ...l, url: e.target.value } : l))}
                  placeholder="https://..."
                />
                <button type="button" className="btn-icon" onClick={() => setLinks(links.filter((_, idx) => idx !== i))}>×</button>
              </div>
            ))}
          </div>
          <button type="button" className="btn-text" onClick={() => setLinks([...links, { label: LINK_TYPES[0].value, url: "" }])}>
            + リンクを追加
          </button>
        </div>

        <div>
          <label>メンバー</label>
          {artistIds.length > 0 && (
            <div className="members-form">
              {artistIds.map((artistId) => {
                const group = entries.filter((e) => e.artist_id === artistId);
                return (
                  <div key={artistId} className="member-group">
                    <div className="card-header">
                      <span className="card-name">{group[0].artist_name}</span>
                      <button type="button" className="btn-text" onClick={() => addPeriod(artistId)}>+ 期間追加</button>
                      <button type="button" className="btn-icon" onClick={() => removeArtist(artistId)}>削除</button>
                    </div>
                    {group.map((entry) => (
                      <div key={entry.key} className="member-card">
                        {group.length > 1 && (
                          <div style={{ textAlign: "right" }}>
                            <button type="button" className="btn-icon" onClick={() => removeEntry(entry.key)}>×</button>
                          </div>
                        )}
                        {entry.roles.length > 0 && (
                          <div className="badges">
                            {entry.roles.map((r, ri) => (
                              <span key={ri} className="badge">
                                {r}
                                <button type="button" onClick={() => removeRole(entry.key, ri)}>×</button>
                              </span>
                            ))}
                          </div>
                        )}
                        <div className="role-row">
                          <select
                            value={entry.pendingRole.type}
                            onChange={(e) => updateEntry(entry.key, "pendingRole", { ...entry.pendingRole, type: e.target.value })}
                          >
                            {ARTIST_ROLES.map((r) => <option key={r} value={r}>{r}</option>)}
                            <option value="other">その他...</option>
                          </select>
                          {entry.pendingRole.type === "other" && (
                            <input
                              className="custom-input"
                              value={entry.pendingRole.custom}
                              onChange={(e) => updateEntry(entry.key, "pendingRole", { ...entry.pendingRole, custom: e.target.value })}
                              placeholder="ロール名"
                            />
                          )}
                          <button type="button" className="btn-text" onClick={() => addRole(entry.key)}>+ 追加</button>
                        </div>
                        <div className="period-row">
                          <input
                            value={entry.since}
                            onChange={(e) => updateEntry(entry.key, "since", e.target.value)}
                            placeholder="加入 (例: 2020-04)"
                          />
                          <span className="period-sep">〜</span>
                          <input
                            value={entry.until}
                            onChange={(e) => updateEntry(entry.key, "until", e.target.value)}
                            placeholder="脱退 (空欄=在籍中)"
                          />
                          <input
                            className="period-note"
                            value={entry.note}
                            onChange={(e) => updateEntry(entry.key, "note", e.target.value)}
                            placeholder="ノート"
                          />
                        </div>
                      </div>
                    ))}
                  </div>
                );
              })}
            </div>
          )}
          {available.length > 0 ? (
            <select
              onChange={(e) => { if (e.target.value) { addArtist(e.target.value); e.target.value = ""; } }}
              defaultValue=""
            >
              <option value="">+ アーティストを追加...</option>
              {available.map((a) => <option key={a.id} value={a.id}>{a.name}</option>)}
            </select>
          ) : artists.length === 0 ? (
            <p className="muted">
              アーティストがいません。{" "}
              <Link to="/artists/new">先に作成</Link>
            </p>
          ) : null}
        </div>

        <div>
          <label>更新メッセージ <span className="req">*</span></label>
          <input name="message" placeholder="例: 初回登録" />
          {errors.message && <p className="error">{errors.message}</p>}
        </div>

        <div className="actions">
          <button type="submit">作成</button>
          <Link to="/" className="btn">キャンセル</Link>
        </div>
      </Form>
    </main>
  );
}