Add inline admin create forms to home page components
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 28s

Lazy-load create forms (Post, Activity, Favorite, Rowing) directly
into their corresponding home components with an admin-only toggle
button, replacing the need to navigate to the admin page.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-13 12:13:13 +01:00
parent 66f32cdbd2
commit a911e6ca69
8 changed files with 78 additions and 10 deletions

View File

@@ -3,6 +3,8 @@ import Button from "@/components/input/Button.vue";
import { ref } from "vue";
import { gql } from "@/graphql";
const emit = defineEmits(["done", "cancel"]);
const title = ref("");
const content = ref("");
@@ -15,6 +17,7 @@ async function post() {
title.value = "";
content.value = "";
console.log(data.createPost);
emit("done");
} catch (err) {
console.error(err);
}
@@ -31,6 +34,6 @@ async function post() {
placeholder="Content"
></textarea>
<Button @click="post">Upload</Button>
<!-- make textarea take up most the space -->
<Button @click="emit('cancel')">Cancel</Button>
</div>
</template>