mirror of
https://github.com/wgh136/nysoure.git
synced 2025-12-18 16:21:14 +00:00
Role for character
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import { useState } from "react";
|
||||
import { CharacterParams } from "../network/models";
|
||||
import { CharacterParams, CharacterRole } from "../network/models";
|
||||
import { network } from "../network/network";
|
||||
import showToast from "./toast";
|
||||
import { useTranslation } from "../utils/i18n";
|
||||
import Button from "./button";
|
||||
|
||||
export default function CharactorEditor({charactor, setCharactor, onDelete}: {
|
||||
export default function CharacterEditer({charactor, setCharactor, onDelete}: {
|
||||
charactor: CharacterParams;
|
||||
setCharactor: (charactor: CharacterParams) => void;
|
||||
onDelete: () => void;
|
||||
@@ -82,6 +82,15 @@ export default function CharactorEditor({charactor, setCharactor, onDelete}: {
|
||||
onChange={(e) => setCharactor({ ...charactor, cv: e.target.value })}
|
||||
/>
|
||||
|
||||
<select
|
||||
className="select select-sm select-bordered"
|
||||
value={charactor.role}
|
||||
onChange={(e) => setCharactor({ ...charactor, role: e.target.value as CharacterRole })}
|
||||
>
|
||||
<option value="primary">{t("Primary Role")}</option>
|
||||
<option value="side">{t("Side Role")}</option>
|
||||
</select>
|
||||
|
||||
<div className="flex-1">
|
||||
<textarea
|
||||
className="textarea textarea-bordered w-full h-full resize-none text-xs"
|
||||
Reference in New Issue
Block a user