web: submit TargetAssetID

This commit is contained in:
Quaternions 2024-12-27 18:50:24 -08:00
parent 78db4eeba7
commit 94abe3137b

View File

@ -15,7 +15,7 @@ interface SubmissionPayload {
GameID: number; GameID: number;
AssetID: number; AssetID: number;
AssetVersion: number; AssetVersion: number;
SubmissionType: number; TargetAssetID: number;
} }
interface IdResponse { interface IdResponse {
ID: number; ID: number;
@ -37,7 +37,7 @@ export default function SubmissionInfoPage() {
GameID: 1073741824, // TODO: Change this!! GameID: 1073741824, // TODO: Change this!!
AssetID: Number((formData.get("asset-id") as string) ?? "0"), AssetID: Number((formData.get("asset-id") as string) ?? "0"),
AssetVersion: 0, AssetVersion: 0,
SubmissionType: isFixingMap ? 2 : 1, TargetAssetID: isFixingMap ? Number((formData.get("target-asset-id") as string) ?? "0") : 0,
}; };
console.log(payload) console.log(payload)
@ -84,7 +84,7 @@ export default function SubmissionInfoPage() {
}, },
}} onChange={(e) => setIsFixingMap(e.target.checked)} />} label="Fixing an Existing Map?" /> }} onChange={(e) => setIsFixingMap(e.target.checked)} />} label="Fixing an Existing Map?" />
</FormControl> </FormControl>
{/* <TargetAsset/> */} <TextField className="form-field" id="target-asset-id" name="target-asset-id" label="Target Asset ID (group model)" variant="outlined"/>
<span className="spacer form-spacer"></span> <span className="spacer form-spacer"></span>
<Button type="submit" variant="contained" startIcon={<SendIcon/>} sx={{ <Button type="submit" variant="contained" startIcon={<SendIcon/>} sx={{
width: "400px", width: "400px",