activist-org / activist

An open-source activism platform
https://activist.org
GNU Affero General Public License v3.0
212 stars 175 forks source link

Create ModalEditPageText #833

Closed andrewtavis closed 2 months ago

andrewtavis commented 2 months ago

Terms

Description

Something that's needed for the MVP release is the ability to edit page text content. This will be achieved via a modal view, with the designs for it being seen here.

Contribution

I'll work on this! 😊

andrewtavis commented 2 months ago

Basic code:

<template>
  <div />
</template>

<script setup lang="ts">
defineProps<{
  sectionsToEdit: string[];
  textsToEdit: string[];
}>();
</script>
andrewtavis commented 2 months ago

Closed via 181c0a0, with it still needing to be assigned on various pages, and we also need the data transfer to the backend to update the pages. Those will be done in the cleanup/connection sessions in the coming days :)